2
0
mirror of synced 2025-01-30 02:06:12 +00:00

163 lines
6.1 KiB
C#
Raw Normal View History

2024-11-21 15:10:53 +01:00
using CodexContractsPlugin;
2024-11-21 15:30:56 +01:00
using CodexPlugin;
2024-11-22 08:57:50 +01:00
using GethPlugin;
2024-11-21 15:10:53 +01:00
using NUnit.Framework;
2024-11-21 15:30:56 +01:00
using Utils;
2024-11-21 10:03:09 +01:00
namespace CodexReleaseTests.MarketTests
{
2024-11-21 15:10:53 +01:00
[TestFixture]
2024-11-21 15:30:56 +01:00
public class ContractSuccessfulTest : MarketplaceAutoBootstrapDistTest
2024-11-21 10:03:09 +01:00
{
2024-11-21 15:30:56 +01:00
private const int NumberOfHosts = 4;
private const int FilesizeMb = 10;
2024-11-22 08:57:50 +01:00
private const int PricePerSlotPerSecondTSTWei = 10;
2024-11-21 15:30:56 +01:00
2024-11-21 15:10:53 +01:00
[Test]
public void ContractSuccessful()
{
2024-11-21 15:30:56 +01:00
var hosts = StartHosts();
var client = StartCodex(s => s.WithName("client"));
2024-11-22 08:57:50 +01:00
var contract = CreateStorageRequest(client);
contract.WaitForStorageContractSubmitted();
AssertContractIsOnChain(contract);
contract.WaitForStorageContractStarted();
var slotFills = AssertContractSlotsAreFilledByHosts(contract, hosts);
contract.WaitForStorageContractFinished();
AssertClientHasPaidForContract(client, contract);
AssertHostsWerePaidForContract(contract, hosts, slotFills);
AssertHostsCollateralsAreUnchanged(hosts);
}
private void AssertContractIsOnChain(IStoragePurchaseContract contract)
{
AssertOnChainEvents(events =>
{
var onChainRequests = events.GetStorageRequests();
if (onChainRequests.Any(r => r.Id == contract.PurchaseId)) return;
throw new Exception($"OnChain request {contract.PurchaseId} not found...");
}, nameof(AssertContractIsOnChain));
}
private SlotFill[] AssertContractSlotsAreFilledByHosts(IStoragePurchaseContract contract, ICodexNodeGroup hosts)
{
var activeHosts = new Dictionary<int, SlotFill>();
Time.Retry(() =>
{
var fills = GetOnChainSlotFills(hosts, contract.PurchaseId);
foreach (var fill in fills)
{
var index = (int)fill.SlotFilledEvent.SlotIndex;
if (!activeHosts.ContainsKey(index))
{
activeHosts.Add(index, fill);
}
}
if (activeHosts.Count != contract.Purchase.MinRequiredNumberOfNodes) throw new Exception("Not all slots were filled...");
}, nameof(AssertContractSlotsAreFilledByHosts));
return activeHosts.Values.ToArray();
}
private void AssertClientHasPaidForContract(ICodexNode client, IStoragePurchaseContract contract)
{
var balance = GetContracts().GetTestTokenBalance(client);
var expectedBalance = StartingBalanceTST.Tst() - GetContractTotalCost();
Assert.That(balance, Is.EqualTo(expectedBalance));
}
private TestToken GetContractTotalCost()
{
return GetContractCostPerSlot() * NumberOfHosts;
}
private TestToken GetContractCostPerSlot()
{
var duration = GetContractDuration();
return PricePerSlotPerSecondTSTWei.TstWei() * ((int)duration.TotalSeconds);
}
private void AssertHostsWerePaidForContract(IStoragePurchaseContract contract, ICodexNodeGroup hosts, SlotFill[] fills)
{
var expectedBalances = new Dictionary<EthAddress, TestToken>();
foreach (var host in hosts) expectedBalances.Add(host.EthAddress, StartingBalanceTST.Tst());
foreach (var fill in fills)
{
expectedBalances[fill.Host.EthAddress] += GetContractCostPerSlot();
}
foreach (var pair in expectedBalances)
{
var balance = GetContracts().GetTestTokenBalance(pair.Key);
Assert.That(balance, Is.EqualTo(pair.Value));
}
}
private void AssertHostsCollateralsAreUnchanged(ICodexNodeGroup hosts)
{
// There is no separate collateral location yet.
// All host balances should be equal to or greater than the starting balance.
foreach (var host in hosts)
{
Assert.That(GetContracts().GetTestTokenBalance(host), Is.GreaterThanOrEqualTo(StartingBalanceTST.Tst()));
}
}
private void AssertOnChainEvents(Action<ICodexContractsEvents> onEvents, string description)
{
Time.Retry(() =>
{
var events = GetContracts().GetEvents(GetTestRunTimeRange());
onEvents(events);
}, description);
}
private IStoragePurchaseContract CreateStorageRequest(ICodexNode client)
{
var cid = client.UploadFile(GenerateTestFile(FilesizeMb.MB()));
var config = GetContracts().Deployment.Config;
return client.Marketplace.RequestStorage(new StoragePurchaseRequest(cid)
{
Duration = GetContractDuration(),
Expiry = TimeSpan.FromSeconds(((double)config.Proofs.Period) * 1.0),
MinRequiredNumberOfNodes = NumberOfHosts,
NodeFailureTolerance = NumberOfHosts / 2,
PricePerSlotPerSecond = PricePerSlotPerSecondTSTWei.TstWei(),
ProofProbability = 20,
RequiredCollateral = 1.Tst()
});
}
private TimeSpan GetContractDuration()
{
var config = GetContracts().Deployment.Config;
return TimeSpan.FromSeconds(((double)config.Proofs.Period) * 2.0);
2024-11-21 15:30:56 +01:00
}
private ICodexNodeGroup StartHosts()
{
var hosts = StartCodex(NumberOfHosts, s => s.WithName("host"));
2024-11-21 15:10:53 +01:00
2024-11-21 15:30:56 +01:00
var config = GetContracts().Deployment.Config;
foreach (var host in hosts)
{
host.Marketplace.MakeStorageAvailable(new CodexPlugin.StorageAvailability(
totalSpace: (5 * FilesizeMb).MB(),
maxDuration: TimeSpan.FromSeconds(((double)config.Proofs.Period) * 5.0),
minPriceForTotalSpace: 1.TstWei(),
maxCollateral: 999999.Tst())
);
}
return hosts;
2024-11-21 15:10:53 +01:00
}
2024-11-21 10:03:09 +01:00
}
}