86 lines
2.7 KiB
C#
86 lines
2.7 KiB
C#
using Logging;
|
|
using NUnit.Framework;
|
|
using NUnit.Framework.Constraints;
|
|
|
|
namespace DistTestCore.Marketplace
|
|
{
|
|
public interface IMarketplaceAccess
|
|
{
|
|
void MakeStorageAvailable(ByteSize size, int minPricePerBytePerSecond, float maxCollateral);
|
|
void RequestStorage(ContentId contentId, int pricePerBytePerSecond, float requiredCollateral, float minRequiredNumberOfNodes);
|
|
void AssertThatBalance(IResolveConstraint constraint, string message = "");
|
|
decimal GetBalance();
|
|
}
|
|
|
|
public class MarketplaceAccess : IMarketplaceAccess
|
|
{
|
|
private readonly TestLog log;
|
|
private readonly CodexNodeGroup group;
|
|
|
|
public MarketplaceAccess(TestLog log, CodexNodeGroup group)
|
|
{
|
|
this.log = log;
|
|
this.group = group;
|
|
}
|
|
|
|
public void Initialize()
|
|
{
|
|
EnsureAccount();
|
|
|
|
marketplaceController.AddToBalance(container.Account, group.Origin.MarketplaceConfig!.InitialBalance);
|
|
|
|
log.Log($"Initialized Geth companion node with account '{container.Account}' and initial balance {group.Origin.MarketplaceConfig!.InitialBalance}");
|
|
}
|
|
|
|
public void RequestStorage(ContentId contentId, int pricePerBytePerSecond, float requiredCollateral, float minRequiredNumberOfNodes)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void MakeStorageAvailable(ByteSize size, int minPricePerBytePerSecond, float maxCollateral)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void AssertThatBalance(IResolveConstraint constraint, string message = "")
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public decimal GetBalance()
|
|
{
|
|
return marketplaceController.GetBalance(container.Account);
|
|
}
|
|
}
|
|
|
|
public class MarketplaceUnavailable : IMarketplaceAccess
|
|
{
|
|
public void RequestStorage(ContentId contentId, int pricePerBytePerSecond, float requiredCollateral, float minRequiredNumberOfNodes)
|
|
{
|
|
Unavailable();
|
|
}
|
|
|
|
public void MakeStorageAvailable(ByteSize size, int minPricePerBytePerSecond, float maxCollateral)
|
|
{
|
|
Unavailable();
|
|
}
|
|
|
|
public void AssertThatBalance(IResolveConstraint constraint, string message = "")
|
|
{
|
|
Unavailable();
|
|
}
|
|
|
|
public decimal GetBalance()
|
|
{
|
|
Unavailable();
|
|
return 0;
|
|
}
|
|
|
|
private void Unavailable()
|
|
{
|
|
Assert.Fail("Incorrect test setup: Marketplace was not enabled for this group of Codex nodes. Add 'EnableMarketplace(...)' after 'SetupCodexNodes()' to enable it.");
|
|
throw new InvalidOperationException();
|
|
}
|
|
}
|
|
}
|