Tracking contract state change moments in MarketplaceAccess
This commit is contained in:
parent
f7bdafbdc5
commit
6e9ea47b7d
|
@ -20,6 +20,12 @@ namespace Utils
|
||||||
task.Wait();
|
task.Wait();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static string FormatDuration(TimeSpan? d)
|
||||||
|
{
|
||||||
|
if (d == null) return "[NULL]";
|
||||||
|
return FormatDuration(d.Value);
|
||||||
|
}
|
||||||
|
|
||||||
public static string FormatDuration(TimeSpan d)
|
public static string FormatDuration(TimeSpan d)
|
||||||
{
|
{
|
||||||
var result = "";
|
var result = "";
|
||||||
|
|
|
@ -38,7 +38,9 @@ namespace CodexPlugin
|
||||||
|
|
||||||
Log($"Storage requested successfully. PurchaseId: '{response}'.");
|
Log($"Storage requested successfully. PurchaseId: '{response}'.");
|
||||||
|
|
||||||
return new StoragePurchaseContract(log, codexAccess, response, purchase);
|
var contract = new StoragePurchaseContract(log, codexAccess, response, purchase);
|
||||||
|
contract.WaitForStorageContractSubmitted();
|
||||||
|
return contract;
|
||||||
}
|
}
|
||||||
|
|
||||||
public string MakeStorageAvailable(StorageAvailability availability)
|
public string MakeStorageAvailable(StorageAvailability availability)
|
||||||
|
@ -54,7 +56,7 @@ namespace CodexPlugin
|
||||||
|
|
||||||
private void Log(string msg)
|
private void Log(string msg)
|
||||||
{
|
{
|
||||||
log.Log($"{codexAccess.Container.Name} {msg}");
|
log.Log($"{codexAccess.Container.Containers.Single().Name} {msg}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -84,7 +86,10 @@ namespace CodexPlugin
|
||||||
private readonly ILog log;
|
private readonly ILog log;
|
||||||
private readonly CodexAccess codexAccess;
|
private readonly CodexAccess codexAccess;
|
||||||
private readonly TimeSpan gracePeriod = TimeSpan.FromSeconds(30);
|
private readonly TimeSpan gracePeriod = TimeSpan.FromSeconds(30);
|
||||||
private DateTime? contractStartUtc;
|
private readonly DateTime contractPendingUtc = DateTime.UtcNow;
|
||||||
|
private DateTime? contractSubmittedUtc = DateTime.UtcNow;
|
||||||
|
private DateTime? contractStartedUtc;
|
||||||
|
private DateTime? contractFinishedUtc;
|
||||||
|
|
||||||
public StoragePurchaseContract(ILog log, CodexAccess codexAccess, string purchaseId, StoragePurchaseRequest purchase)
|
public StoragePurchaseContract(ILog log, CodexAccess codexAccess, string purchaseId, StoragePurchaseRequest purchase)
|
||||||
{
|
{
|
||||||
|
@ -97,23 +102,38 @@ namespace CodexPlugin
|
||||||
public string PurchaseId { get; }
|
public string PurchaseId { get; }
|
||||||
public StoragePurchaseRequest Purchase { get; }
|
public StoragePurchaseRequest Purchase { get; }
|
||||||
|
|
||||||
|
public TimeSpan? PendingToSubmitted => contractSubmittedUtc - contractPendingUtc;
|
||||||
|
public TimeSpan? SubmittedToStarted => contractStartedUtc - contractSubmittedUtc;
|
||||||
|
public TimeSpan? SubmittedToFinished => contractFinishedUtc - contractSubmittedUtc;
|
||||||
|
public TimeSpan? StartedToFinished => contractFinishedUtc - contractStartedUtc;
|
||||||
|
|
||||||
|
public void WaitForStorageContractSubmitted()
|
||||||
|
{
|
||||||
|
WaitForStorageContractState(gracePeriod, "submitted", sleep: 200);
|
||||||
|
contractSubmittedUtc = DateTime.UtcNow;
|
||||||
|
LogSubmittedDuration();
|
||||||
|
}
|
||||||
|
|
||||||
public void WaitForStorageContractStarted()
|
public void WaitForStorageContractStarted()
|
||||||
{
|
{
|
||||||
var timeout = Purchase.Expiry + gracePeriod;
|
var timeout = Purchase.Expiry + gracePeriod;
|
||||||
|
|
||||||
WaitForStorageContractState(timeout, "started");
|
WaitForStorageContractState(timeout, "started");
|
||||||
contractStartUtc = DateTime.UtcNow;
|
contractStartedUtc = DateTime.UtcNow;
|
||||||
|
LogStartedDuration();
|
||||||
}
|
}
|
||||||
|
|
||||||
public void WaitForStorageContractFinished()
|
public void WaitForStorageContractFinished()
|
||||||
{
|
{
|
||||||
if (!contractStartUtc.HasValue)
|
if (!contractStartedUtc.HasValue)
|
||||||
{
|
{
|
||||||
WaitForStorageContractStarted();
|
WaitForStorageContractStarted();
|
||||||
}
|
}
|
||||||
var currentContractTime = DateTime.UtcNow - contractStartUtc!.Value;
|
var currentContractTime = DateTime.UtcNow - contractStartedUtc!.Value;
|
||||||
var timeout = (Purchase.Duration - currentContractTime) + gracePeriod;
|
var timeout = (Purchase.Duration - currentContractTime) + gracePeriod;
|
||||||
WaitForStorageContractState(timeout, "finished");
|
WaitForStorageContractState(timeout, "finished");
|
||||||
|
contractFinishedUtc = DateTime.UtcNow;
|
||||||
|
LogFinishedDuration();
|
||||||
}
|
}
|
||||||
|
|
||||||
public StoragePurchase GetPurchaseStatus(string purchaseId)
|
public StoragePurchase GetPurchaseStatus(string purchaseId)
|
||||||
|
@ -121,12 +141,12 @@ namespace CodexPlugin
|
||||||
return codexAccess.GetPurchaseStatus(purchaseId);
|
return codexAccess.GetPurchaseStatus(purchaseId);
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WaitForStorageContractState(TimeSpan timeout, string desiredState)
|
private void WaitForStorageContractState(TimeSpan timeout, string desiredState, int sleep = 1000)
|
||||||
{
|
{
|
||||||
var lastState = "";
|
var lastState = "";
|
||||||
var waitStart = DateTime.UtcNow;
|
var waitStart = DateTime.UtcNow;
|
||||||
|
|
||||||
log.Log($"Waiting for {Time.FormatDuration(timeout)} for contract '{PurchaseId}' to reach state '{desiredState}'.");
|
Log($"Waiting for {Time.FormatDuration(timeout)} to reach state '{desiredState}'.");
|
||||||
while (lastState != desiredState)
|
while (lastState != desiredState)
|
||||||
{
|
{
|
||||||
var purchaseStatus = codexAccess.GetPurchaseStatus(PurchaseId);
|
var purchaseStatus = codexAccess.GetPurchaseStatus(PurchaseId);
|
||||||
|
@ -137,7 +157,7 @@ namespace CodexPlugin
|
||||||
log.Debug("Purchase status: " + statusJson);
|
log.Debug("Purchase status: " + statusJson);
|
||||||
}
|
}
|
||||||
|
|
||||||
Thread.Sleep(1000);
|
Thread.Sleep(sleep);
|
||||||
|
|
||||||
if (lastState == "errored")
|
if (lastState == "errored")
|
||||||
{
|
{
|
||||||
|
@ -149,7 +169,27 @@ namespace CodexPlugin
|
||||||
FrameworkAssert.Fail($"Contract did not reach '{desiredState}' within {Time.FormatDuration(timeout)} timeout. {statusJson}");
|
FrameworkAssert.Fail($"Contract did not reach '{desiredState}' within {Time.FormatDuration(timeout)} timeout. {statusJson}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
log.Log($"Contract '{desiredState}'.");
|
}
|
||||||
|
|
||||||
|
private void LogSubmittedDuration()
|
||||||
|
{
|
||||||
|
Log($"Pending to Submitted in {Time.FormatDuration(PendingToSubmitted)}");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LogStartedDuration()
|
||||||
|
{
|
||||||
|
Log($"Submitted to Started in {Time.FormatDuration(SubmittedToStarted)}");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void LogFinishedDuration()
|
||||||
|
{
|
||||||
|
Log($"Submitted to Finished in {Time.FormatDuration(SubmittedToFinished)}");
|
||||||
|
Log($"Started to Finished in {Time.FormatDuration(StartedToFinished)}");
|
||||||
|
}
|
||||||
|
|
||||||
|
private void Log(string msg)
|
||||||
|
{
|
||||||
|
log.Log($"[{PurchaseId}] {msg}");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -83,6 +83,10 @@ namespace CodexTests.BasicTests
|
||||||
|
|
||||||
AssertBalance(contracts, client, Is.LessThan(clientInitialBalance), "Buyer was not charged for storage.");
|
AssertBalance(contracts, client, Is.LessThan(clientInitialBalance), "Buyer was not charged for storage.");
|
||||||
Assert.That(contracts.GetRequestState(request), Is.EqualTo(RequestState.Finished));
|
Assert.That(contracts.GetRequestState(request), Is.EqualTo(RequestState.Finished));
|
||||||
|
|
||||||
|
Assert.That(purchaseContract.PendingToSubmitted, Is.LessThan(TimeSpan.FromSeconds(30)));
|
||||||
|
Assert.That(purchaseContract.SubmittedToStarted, Is.LessThan(purchase.Expiry).Within(TimeSpan.FromSeconds(30)));
|
||||||
|
Assert.That(purchaseContract.SubmittedToFinished, Is.LessThan(purchase.Duration).Within(TimeSpan.FromSeconds(30)));
|
||||||
}
|
}
|
||||||
|
|
||||||
private void WaitForAllSlotFilledEvents(ICodexContracts contracts, StoragePurchaseRequest purchase, IGethNode geth)
|
private void WaitForAllSlotFilledEvents(ICodexContracts contracts, StoragePurchaseRequest purchase, IGethNode geth)
|
||||||
|
|
Loading…
Reference in New Issue