mirror of
https://github.com/codex-storage/cs-codex-dist-tests.git
synced 2025-02-21 00:08:32 +00:00
successful downloading of bot log
This commit is contained in:
parent
22cf82b99b
commit
d6f7e225be
@ -7,7 +7,7 @@ namespace CodexDiscordBotPlugin
|
|||||||
public class DiscordBotContainerRecipe : ContainerRecipeFactory
|
public class DiscordBotContainerRecipe : ContainerRecipeFactory
|
||||||
{
|
{
|
||||||
public override string AppName => "discordbot-bibliotech";
|
public override string AppName => "discordbot-bibliotech";
|
||||||
public override string Image => "codexstorage/codex-discordbot:sha-8c64352";
|
public override string Image => "codexstorage/codex-discordbot:sha-22cf82b";
|
||||||
|
|
||||||
public static string RewardsPort = "bot_rewards_port";
|
public static string RewardsPort = "bot_rewards_port";
|
||||||
|
|
||||||
@ -33,6 +33,8 @@ namespace CodexDiscordBotPlugin
|
|||||||
AddEnvVar("CODEXCONTRACTS_TOKENADDRESS", gethInfo.TokenAddress);
|
AddEnvVar("CODEXCONTRACTS_TOKENADDRESS", gethInfo.TokenAddress);
|
||||||
AddEnvVar("CODEXCONTRACTS_ABI", gethInfo.Abi);
|
AddEnvVar("CODEXCONTRACTS_ABI", gethInfo.Abi);
|
||||||
|
|
||||||
|
AddEnvVar("NODISCORD", "1");
|
||||||
|
|
||||||
AddInternalPortAndVar("REWARDAPIPORT", RewardsPort);
|
AddInternalPortAndVar("REWARDAPIPORT", RewardsPort);
|
||||||
|
|
||||||
if (!string.IsNullOrEmpty(config.DataPath))
|
if (!string.IsNullOrEmpty(config.DataPath))
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
using CodexDiscordBotPlugin;
|
using CodexDiscordBotPlugin;
|
||||||
using CodexPlugin;
|
using CodexPlugin;
|
||||||
using GethPlugin;
|
using GethPlugin;
|
||||||
|
using KubernetesWorkflow.Types;
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
using Utils;
|
using Utils;
|
||||||
|
|
||||||
@ -10,86 +11,42 @@ namespace CodexTests.UtilityTests
|
|||||||
[TestFixture]
|
[TestFixture]
|
||||||
public class DiscordBotTests : AutoBootstrapDistTest
|
public class DiscordBotTests : AutoBootstrapDistTest
|
||||||
{
|
{
|
||||||
|
private readonly TestToken hostInitialBalance = 3000.TestTokens();
|
||||||
|
private readonly TestToken clientInitialBalance = 1000000000.TestTokens();
|
||||||
|
private readonly ByteSize fileSize = 11.MB();
|
||||||
|
|
||||||
[Test]
|
[Test]
|
||||||
[Ignore("Used for debugging bots")]
|
|
||||||
public void BotRewardTest()
|
public void BotRewardTest()
|
||||||
{
|
{
|
||||||
var myAccount = EthAccount.GenerateNew();
|
var clientAccount = EthAccount.GenerateNew();
|
||||||
|
|
||||||
var sellerInitialBalance = 234.TestTokens();
|
|
||||||
var buyerInitialBalance = 100000.TestTokens();
|
|
||||||
var fileSize = 11.MB();
|
|
||||||
|
|
||||||
var geth = Ci.StartGethNode(s => s.IsMiner().WithName("disttest-geth"));
|
var geth = Ci.StartGethNode(s => s.IsMiner().WithName("disttest-geth"));
|
||||||
var contracts = Ci.StartCodexContracts(geth);
|
var contracts = Ci.StartCodexContracts(geth);
|
||||||
|
var gethInfo = CreateGethInfo(geth, contracts);
|
||||||
|
|
||||||
// start bot and rewarder
|
var botContainer = StartDiscordBot(gethInfo);
|
||||||
var gethInfo = new DiscordBotGethInfo(
|
|
||||||
host: geth.Container.GetInternalAddress(GethContainerRecipe.HttpPortTag).Host,
|
|
||||||
port: geth.Container.GetInternalAddress(GethContainerRecipe.HttpPortTag).Port,
|
|
||||||
privKey: geth.StartResult.Account.PrivateKey,
|
|
||||||
marketplaceAddress: contracts.Deployment.MarketplaceAddress,
|
|
||||||
tokenAddress: contracts.Deployment.TokenAddress,
|
|
||||||
abi: contracts.Deployment.Abi
|
|
||||||
);
|
|
||||||
var bot = Ci.DeployCodexDiscordBot(new DiscordBotStartupConfig(
|
|
||||||
name: "bot",
|
|
||||||
token: "aaa",
|
|
||||||
serverName: "ThatBen's server",
|
|
||||||
adminRoleName: "bottest-admins",
|
|
||||||
adminChannelName: "admin-channel",
|
|
||||||
rewardChannelName: "rewards-channel",
|
|
||||||
kubeNamespace: "notneeded",
|
|
||||||
gethInfo: gethInfo
|
|
||||||
));
|
|
||||||
var botContainer = bot.Containers.Single();
|
|
||||||
Ci.DeployRewarderBot(new RewarderBotStartupConfig(
|
|
||||||
//discordBotHost: "http://" + botContainer.GetAddress(GetTestLog(), DiscordBotContainerRecipe.RewardsPort).Host,
|
|
||||||
//discordBotPort: botContainer.GetAddress(GetTestLog(), DiscordBotContainerRecipe.RewardsPort).Port,
|
|
||||||
discordBotHost: botContainer.GetInternalAddress(DiscordBotContainerRecipe.RewardsPort).Host,
|
|
||||||
discordBotPort: botContainer.GetInternalAddress(DiscordBotContainerRecipe.RewardsPort).Port,
|
|
||||||
intervalMinutes: "1",
|
|
||||||
historyStartUtc: GetTestRunTimeRange().From - TimeSpan.FromMinutes(3),
|
|
||||||
gethInfo: gethInfo,
|
|
||||||
dataPath: null
|
|
||||||
));
|
|
||||||
|
|
||||||
var numberOfHosts = 3;
|
var hostAccount = EthAccount.GenerateNew();
|
||||||
|
StartHosts(hostAccount, geth, contracts);
|
||||||
|
|
||||||
for (var i = 0; i < numberOfHosts; i++)
|
StartRewarderBot(gethInfo, botContainer);
|
||||||
{
|
|
||||||
var seller = StartCodex(s => s
|
|
||||||
.WithName("Seller")
|
|
||||||
.WithLogLevel(CodexLogLevel.Trace, new CodexLogCustomTopics(CodexLogLevel.Error, CodexLogLevel.Error, CodexLogLevel.Warn)
|
|
||||||
{
|
|
||||||
ContractClock = CodexLogLevel.Trace,
|
|
||||||
})
|
|
||||||
.WithStorageQuota(11.GB())
|
|
||||||
.EnableMarketplace(geth, contracts, m => m
|
|
||||||
.WithAccount(myAccount)
|
|
||||||
.WithInitial(10.Eth(), sellerInitialBalance)
|
|
||||||
.AsStorageNode()
|
|
||||||
.AsValidator()));
|
|
||||||
|
|
||||||
var availability = new StorageAvailability(
|
var client = StartClient(geth, contracts, clientAccount);
|
||||||
totalSpace: 10.GB(),
|
|
||||||
maxDuration: TimeSpan.FromMinutes(30),
|
|
||||||
minPriceForTotalSpace: 1.TestTokens(),
|
|
||||||
maxCollateral: 20.TestTokens()
|
|
||||||
);
|
|
||||||
seller.Marketplace.MakeStorageAvailable(availability);
|
|
||||||
}
|
|
||||||
|
|
||||||
|
var purchaseContract = ClientPurchasesStorage(client);
|
||||||
|
|
||||||
|
//purchaseContract.WaitForStorageContractStarted();
|
||||||
|
//purchaseContract.WaitForStorageContractFinished();
|
||||||
|
Thread.Sleep(TimeSpan.FromMinutes(5));
|
||||||
|
|
||||||
|
var botLog = Ci.ExecuteContainerCommand(botContainer, "cat", "/app/datapath/logs/discordbot.log");
|
||||||
|
var aaaa = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
private StoragePurchaseContract ClientPurchasesStorage(ICodexNode client)
|
||||||
|
{
|
||||||
var testFile = GenerateTestFile(fileSize);
|
var testFile = GenerateTestFile(fileSize);
|
||||||
|
var contentId = client.UploadFile(testFile);
|
||||||
var buyer = StartCodex(s => s
|
|
||||||
.WithName("Buyer")
|
|
||||||
.EnableMarketplace(geth, contracts, m => m
|
|
||||||
.WithAccount(myAccount)
|
|
||||||
.WithInitial(10.Eth(), buyerInitialBalance)));
|
|
||||||
|
|
||||||
var contentId = buyer.UploadFile(testFile);
|
|
||||||
|
|
||||||
var purchase = new StoragePurchaseRequest(contentId)
|
var purchase = new StoragePurchaseRequest(contentId)
|
||||||
{
|
{
|
||||||
PricePerSlotPerSecond = 2.TestTokens(),
|
PricePerSlotPerSecond = 2.TestTokens(),
|
||||||
@ -101,11 +58,84 @@ namespace CodexTests.UtilityTests
|
|||||||
Expiry = TimeSpan.FromMinutes(5)
|
Expiry = TimeSpan.FromMinutes(5)
|
||||||
};
|
};
|
||||||
|
|
||||||
var purchaseContract = buyer.Marketplace.RequestStorage(purchase);
|
return client.Marketplace.RequestStorage(purchase);
|
||||||
|
}
|
||||||
|
|
||||||
purchaseContract.WaitForStorageContractStarted();
|
private ICodexNode StartClient(IGethNode geth, ICodexContracts contracts, EthAccount clientAccount)
|
||||||
|
{
|
||||||
|
return StartCodex(s => s
|
||||||
|
.WithName("Client")
|
||||||
|
.EnableMarketplace(geth, contracts, m => m
|
||||||
|
.WithAccount(clientAccount)
|
||||||
|
.WithInitial(10.Eth(), clientInitialBalance)));
|
||||||
|
}
|
||||||
|
|
||||||
purchaseContract.WaitForStorageContractFinished();
|
private void StartRewarderBot(DiscordBotGethInfo gethInfo, RunningContainer botContainer)
|
||||||
|
{
|
||||||
|
Ci.DeployRewarderBot(new RewarderBotStartupConfig(
|
||||||
|
discordBotHost: botContainer.GetInternalAddress(DiscordBotContainerRecipe.RewardsPort).Host,
|
||||||
|
discordBotPort: botContainer.GetInternalAddress(DiscordBotContainerRecipe.RewardsPort).Port,
|
||||||
|
intervalMinutes: "10",
|
||||||
|
historyStartUtc: DateTime.UtcNow,
|
||||||
|
gethInfo: gethInfo,
|
||||||
|
dataPath: null
|
||||||
|
));
|
||||||
|
}
|
||||||
|
|
||||||
|
private DiscordBotGethInfo CreateGethInfo(IGethNode geth, ICodexContracts contracts)
|
||||||
|
{
|
||||||
|
return new DiscordBotGethInfo(
|
||||||
|
host: geth.Container.GetInternalAddress(GethContainerRecipe.HttpPortTag).Host,
|
||||||
|
port: geth.Container.GetInternalAddress(GethContainerRecipe.HttpPortTag).Port,
|
||||||
|
privKey: geth.StartResult.Account.PrivateKey,
|
||||||
|
marketplaceAddress: contracts.Deployment.MarketplaceAddress,
|
||||||
|
tokenAddress: contracts.Deployment.TokenAddress,
|
||||||
|
abi: contracts.Deployment.Abi
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
private RunningContainer StartDiscordBot(DiscordBotGethInfo gethInfo)
|
||||||
|
{
|
||||||
|
var bot = Ci.DeployCodexDiscordBot(new DiscordBotStartupConfig(
|
||||||
|
name: "bot",
|
||||||
|
token: "aaa",
|
||||||
|
serverName: "ThatBen's server",
|
||||||
|
adminRoleName: "bottest-admins",
|
||||||
|
adminChannelName: "admin-channel",
|
||||||
|
rewardChannelName: "rewards-channel",
|
||||||
|
kubeNamespace: "notneeded",
|
||||||
|
gethInfo: gethInfo
|
||||||
|
));
|
||||||
|
return bot.Containers.Single();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void StartHosts(EthAccount hostAccount, IGethNode geth, ICodexContracts contracts)
|
||||||
|
{
|
||||||
|
var numberOfHosts = 5;
|
||||||
|
var hosts = StartCodex(numberOfHosts, s => s
|
||||||
|
.WithName("Host")
|
||||||
|
.WithLogLevel(CodexLogLevel.Trace, new CodexLogCustomTopics(CodexLogLevel.Error, CodexLogLevel.Error, CodexLogLevel.Warn)
|
||||||
|
{
|
||||||
|
ContractClock = CodexLogLevel.Trace,
|
||||||
|
})
|
||||||
|
.WithStorageQuota(11.GB())
|
||||||
|
.EnableMarketplace(geth, contracts, m => m
|
||||||
|
.WithAccount(hostAccount)
|
||||||
|
.WithInitial(10.Eth(), hostInitialBalance)
|
||||||
|
.AsStorageNode()
|
||||||
|
.AsValidator()));
|
||||||
|
|
||||||
|
var availability = new StorageAvailability(
|
||||||
|
totalSpace: 10.GB(),
|
||||||
|
maxDuration: TimeSpan.FromMinutes(30),
|
||||||
|
minPriceForTotalSpace: 1.TestTokens(),
|
||||||
|
maxCollateral: 20.TestTokens()
|
||||||
|
);
|
||||||
|
|
||||||
|
foreach (var host in hosts)
|
||||||
|
{
|
||||||
|
host.Marketplace.MakeStorageAvailable(availability);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user