Moves some of the fully-connected download tests to the long-tests
This commit is contained in:
parent
3257e42a02
commit
ac33d3c7be
|
@ -0,0 +1,22 @@
|
||||||
|
using DistTestCore.Helpers;
|
||||||
|
using DistTestCore;
|
||||||
|
using NUnit.Framework;
|
||||||
|
|
||||||
|
namespace TestsLong.DownloadConnectivityTests
|
||||||
|
{
|
||||||
|
[TestFixture]
|
||||||
|
public class LongFullyConnectedDownloadTests : AutoBootstrapDistTest
|
||||||
|
{
|
||||||
|
[Test]
|
||||||
|
[UseLongTimeouts]
|
||||||
|
[Combinatorial]
|
||||||
|
public void FullyConnectedDownloadTest(
|
||||||
|
[Values(10, 15, 20)] int numberOfNodes,
|
||||||
|
[Values(10, 100)] int sizeMBs)
|
||||||
|
{
|
||||||
|
for (var i = 0; i < numberOfNodes; i++) SetupCodexNode();
|
||||||
|
|
||||||
|
PeerDownloadTestHelpers.AssertFullDownloadInterconnectivity(GetAllOnlineCodexNodes(), sizeMBs.MB());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
|
@ -9,8 +9,8 @@ namespace Tests.DownloadConnectivityTests
|
||||||
[Test]
|
[Test]
|
||||||
[Combinatorial]
|
[Combinatorial]
|
||||||
public void FullyConnectedDownloadTest(
|
public void FullyConnectedDownloadTest(
|
||||||
[Values(3, 10, 20)] int numberOfNodes,
|
[Values(1, 3, 5)] int numberOfNodes,
|
||||||
[Values(1, 10, 100)] int sizeMBs)
|
[Values(1, 10)] int sizeMBs)
|
||||||
{
|
{
|
||||||
for (var i = 0; i < numberOfNodes; i++) SetupCodexNode();
|
for (var i = 0; i < numberOfNodes; i++) SetupCodexNode();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue