cs-codex-dist-tests/BasicTests/DebugEndpointTests.cs

59 lines
1.7 KiB
C#
Raw Normal View History

using CodexDistTests.TestCore;
using NUnit.Framework;
namespace CodexDistTests.BasicTests
{
[TestFixture]
public class DebugEndpointTests : DistTest
{
[Test]
public void GetDebugInfo()
{
var node = SetupCodexNode().BringOnline();
var debugInfo = node.GetDebugInfo();
Assert.That(debugInfo.spr, Is.Not.Empty);
}
[Test]
public void OneClientTest()
{
var primary = SetupCodexNode()
.WithLogLevel(CodexLogLevel.Trace)
.WithStorageQuota(1024 * 1024 * 2)
.BringOnline();
var testFile = GenerateTestFile(1024 * 1024);
var contentId = primary.UploadFile(testFile);
var downloadedFile = primary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
//[Test]
//public void TwoClientTest()
//{
2023-03-19 10:18:56 +00:00
// var primary = SetupCodexNode()
// .WithLogLevel(CodexLogLevel.Trace)
// .WithStorageQuota(1024 * 1024 * 2)
// .BringOnline();
2023-03-19 10:18:56 +00:00
// var secondary = SetupCodexNode()
// .WithLogLevel(CodexLogLevel.Trace)
2023-03-19 10:18:56 +00:00
// .WithBootstrapNode(primary)
// .BringOnline();
// var testFile = GenerateTestFile(1024 * 1024);
2023-03-19 10:18:56 +00:00
// var contentId = primary.UploadFile(testFile);
2023-03-19 10:18:56 +00:00
// var downloadedFile = secondary.DownloadContent(contentId);
// testFile.AssertIsEqual(downloadedFile);
//}
}
}