cs-codex-dist-tests/DistTestCore/GethStarter.cs

91 lines
3.8 KiB
C#
Raw Normal View History

2023-04-14 07:54:07 +00:00
using DistTestCore.Marketplace;
using KubernetesWorkflow;
namespace DistTestCore
{
2023-04-18 11:22:41 +00:00
public class GethStarter // basestarter
2023-04-14 07:54:07 +00:00
{
private readonly MarketplaceNetworkCache marketplaceNetworkCache;
2023-04-14 08:51:35 +00:00
private readonly GethCompanionNodeStarter companionNodeStarter;
2023-04-14 10:37:05 +00:00
private readonly TestLifecycle lifecycle;
2023-04-14 07:54:07 +00:00
public GethStarter(TestLifecycle lifecycle, WorkflowCreator workflowCreator)
{
marketplaceNetworkCache = new MarketplaceNetworkCache(
new GethBootstrapNodeStarter(lifecycle, workflowCreator),
new CodexContractsStarter(lifecycle, workflowCreator));
2023-04-14 08:51:35 +00:00
companionNodeStarter = new GethCompanionNodeStarter(lifecycle, workflowCreator);
2023-04-14 10:37:05 +00:00
this.lifecycle = lifecycle;
2023-04-14 07:54:07 +00:00
}
2023-04-14 08:51:35 +00:00
public GethStartResult BringOnlineMarketplaceFor(CodexSetup codexSetup)
2023-04-14 07:54:07 +00:00
{
2023-04-14 08:51:35 +00:00
if (codexSetup.MarketplaceConfig == null) return CreateMarketplaceUnavailableResult();
var marketplaceNetwork = marketplaceNetworkCache.Get();
var companionNodes = StartCompanionNodes(codexSetup, marketplaceNetwork);
2023-04-14 08:51:35 +00:00
TransferInitialBalance(marketplaceNetwork, codexSetup.MarketplaceConfig, companionNodes);
2023-04-14 10:37:05 +00:00
return CreateGethStartResult(marketplaceNetwork, companionNodes);
2023-04-14 10:37:05 +00:00
}
2023-04-14 08:51:35 +00:00
private void TransferInitialBalance(MarketplaceNetwork marketplaceNetwork, MarketplaceInitialConfig marketplaceConfig, GethCompanionNodeInfo[] companionNodes)
2023-04-14 10:37:05 +00:00
{
var interaction = marketplaceNetwork.StartInteraction(lifecycle.Log);
2023-04-14 10:37:05 +00:00
foreach (var node in companionNodes)
{
interaction.TransferTo(node.Account, marketplaceConfig.InitialEth.Wei);
2023-04-18 11:22:41 +00:00
var tokenAddress = interaction.GetTokenAddress(marketplaceNetwork.Marketplace.Address);
interaction.MintTestTokens(node.Account, marketplaceConfig.InitialTestTokens.Amount, tokenAddress);
2023-04-14 10:37:05 +00:00
}
2023-04-14 07:54:07 +00:00
}
private GethStartResult CreateGethStartResult(MarketplaceNetwork marketplaceNetwork, GethCompanionNodeInfo[] companionNodes)
2023-04-14 07:54:07 +00:00
{
return new GethStartResult(CreateMarketplaceAccessFactory(marketplaceNetwork), marketplaceNetwork, companionNodes);
2023-04-14 07:54:07 +00:00
}
2023-04-14 08:51:35 +00:00
private GethStartResult CreateMarketplaceUnavailableResult()
{
return new GethStartResult(new MarketplaceUnavailableAccessFactory(), null!, Array.Empty<GethCompanionNodeInfo>());
}
private IMarketplaceAccessFactory CreateMarketplaceAccessFactory(MarketplaceNetwork marketplaceNetwork)
2023-04-14 07:54:07 +00:00
{
return new GethMarketplaceAccessFactory(lifecycle.Log, marketplaceNetwork);
2023-04-14 07:54:07 +00:00
}
private GethCompanionNodeInfo[] StartCompanionNodes(CodexSetup codexSetup, MarketplaceNetwork marketplaceNetwork)
2023-04-14 10:37:05 +00:00
{
return companionNodeStarter.StartCompanionNodesFor(codexSetup, marketplaceNetwork.Bootstrap);
2023-04-14 10:37:05 +00:00
}
}
public class MarketplaceNetworkCache
2023-04-14 10:37:05 +00:00
{
private readonly GethBootstrapNodeStarter bootstrapNodeStarter;
private readonly CodexContractsStarter codexContractsStarter;
private MarketplaceNetwork? network;
2023-04-14 10:37:05 +00:00
public MarketplaceNetworkCache(GethBootstrapNodeStarter bootstrapNodeStarter, CodexContractsStarter codexContractsStarter)
2023-04-14 08:51:35 +00:00
{
2023-04-14 10:37:05 +00:00
this.bootstrapNodeStarter = bootstrapNodeStarter;
this.codexContractsStarter = codexContractsStarter;
2023-04-14 08:51:35 +00:00
}
public MarketplaceNetwork Get()
2023-04-14 07:54:07 +00:00
{
if (network == null)
2023-04-14 10:37:05 +00:00
{
var bootstrapInfo = bootstrapNodeStarter.StartGethBootstrapNode();
var marketplaceInfo = codexContractsStarter.Start(bootstrapInfo.RunningContainers.Containers[0]);
network = new MarketplaceNetwork(bootstrapInfo, marketplaceInfo );
2023-04-14 10:37:05 +00:00
}
return network;
2023-04-14 07:54:07 +00:00
}
}
}