cs-codex-dist-tests/LongTests/BasicTests/LargeFileTests.cs

27 lines
715 B
C#
Raw Normal View History

2023-03-21 12:20:21 +00:00
using CodexDistTestCore;
using NUnit.Framework;
namespace LongTests.BasicTests
{
[TestFixture]
2023-03-23 11:35:03 +00:00
public class LargeFileTests : DistTest
2023-03-21 12:20:21 +00:00
{
[Test, UseLongTimeouts]
public void OneClientLargeFileTest()
{
2023-03-21 14:17:48 +00:00
var primary = SetupCodexNodes(1)
2023-03-21 12:20:21 +00:00
.WithLogLevel(CodexLogLevel.Warn)
2023-03-23 11:35:03 +00:00
.WithStorageQuota(20.GB())
2023-03-21 14:17:48 +00:00
.BringOnline()[0];
2023-03-21 12:20:21 +00:00
2023-03-23 11:35:03 +00:00
var testFile = GenerateTestFile(10.GB());
2023-03-21 12:20:21 +00:00
var contentId = primary.UploadFile(testFile);
var downloadedFile = primary.DownloadContent(contentId);
testFile.AssertIsEqual(downloadedFile);
}
}
}