cs-codex-dist-tests/ContinuousTests/SingleTestRun.cs

199 lines
6.4 KiB
C#
Raw Normal View History

using DistTestCore.Codex;
using DistTestCore;
using Logging;
using Utils;
2023-06-23 08:14:16 +00:00
using KubernetesWorkflow;
using NUnit.Framework.Internal;
2023-06-27 08:16:59 +00:00
using System.Reflection;
namespace ContinuousTests
{
public class SingleTestRun
{
2023-06-29 14:07:49 +00:00
private readonly CodexAccessFactory codexNodeFactory = new CodexAccessFactory();
2023-06-25 07:53:10 +00:00
private readonly List<Exception> exceptions = new List<Exception>();
2023-06-28 14:19:37 +00:00
private readonly TaskFactory taskFactory;
private readonly Configuration config;
2023-06-25 09:06:47 +00:00
private readonly BaseLog overviewLog;
2023-06-25 07:53:10 +00:00
private readonly TestHandle handle;
2023-06-28 14:19:37 +00:00
private readonly CancellationToken cancelToken;
2023-06-29 14:07:49 +00:00
private readonly CodexAccess[] nodes;
private readonly FileManager fileManager;
2023-06-25 07:53:10 +00:00
private readonly FixtureLog fixtureLog;
2023-06-25 09:24:32 +00:00
private readonly string testName;
2023-06-25 08:50:01 +00:00
private readonly string dataFolder;
2023-06-28 14:19:37 +00:00
public SingleTestRun(TaskFactory taskFactory, Configuration config, BaseLog overviewLog, TestHandle handle, CancellationToken cancelToken)
{
2023-06-28 14:19:37 +00:00
this.taskFactory = taskFactory;
this.config = config;
2023-06-25 09:06:47 +00:00
this.overviewLog = overviewLog;
2023-06-25 07:53:10 +00:00
this.handle = handle;
2023-06-28 14:19:37 +00:00
this.cancelToken = cancelToken;
2023-06-25 09:24:32 +00:00
testName = handle.Test.GetType().Name;
fixtureLog = new FixtureLog(new LogConfig(config.LogPath, true), testName);
2023-06-25 07:53:10 +00:00
nodes = CreateRandomNodes(handle.Test.RequiredNumberOfNodes);
2023-06-25 08:50:01 +00:00
dataFolder = config.DataPath + "-" + Guid.NewGuid();
2023-06-25 07:53:10 +00:00
fileManager = new FileManager(fixtureLog, CreateFileManagerConfiguration());
}
public void Run(EventWaitHandle runFinishedHandle)
{
2023-06-28 14:19:37 +00:00
taskFactory.Run(() =>
2023-06-25 07:53:10 +00:00
{
try
{
RunTest();
2023-06-27 08:16:59 +00:00
fileManager.DeleteAllTestFiles();
Directory.Delete(dataFolder, true);
runFinishedHandle.Set();
2023-06-25 07:53:10 +00:00
}
catch (Exception ex)
{
2023-06-27 08:16:59 +00:00
overviewLog.Error("Test infra failure: SingleTestRun failed with " + ex);
Environment.Exit(-1);
2023-06-25 07:53:10 +00:00
}
});
}
private void RunTest()
2023-06-27 08:16:59 +00:00
{
try
{
RunTestMoments();
if (!config.KeepPassedTestLogs) fixtureLog.Delete();
}
catch (Exception ex)
{
fixtureLog.Error("Test run failed with exception: " + ex);
fixtureLog.MarkAsFailed();
}
}
private void RunTestMoments()
2023-06-25 07:53:10 +00:00
{
var earliestMoment = handle.GetEarliestMoment();
var t = earliestMoment;
2023-06-25 08:50:01 +00:00
while (true)
2023-06-25 07:53:10 +00:00
{
2023-06-28 14:19:37 +00:00
cancelToken.ThrowIfCancellationRequested();
2023-06-25 07:53:10 +00:00
RunMoment(t);
if (handle.Test.TestFailMode == TestFailMode.StopAfterFirstFailure && exceptions.Any())
{
Log("Exception detected. TestFailMode = StopAfterFirstFailure. Stopping...");
2023-06-27 08:16:59 +00:00
ThrowFailTest();
2023-06-25 07:53:10 +00:00
}
var nextMoment = handle.GetNextMoment(t);
if (nextMoment != null)
{
2023-06-28 14:19:37 +00:00
var delta = TimeSpan.FromSeconds(nextMoment.Value - t);
Log($" > Next TestMoment in {Time.FormatDuration(delta)} seconds...");
cancelToken.WaitHandle.WaitOne(delta);
t = nextMoment.Value;
2023-06-25 07:53:10 +00:00
}
else
{
2023-06-25 08:50:01 +00:00
if (exceptions.Any())
{
2023-06-27 08:16:59 +00:00
ThrowFailTest();
2023-06-25 08:50:01 +00:00
}
2023-06-25 09:06:47 +00:00
OverviewLog(" > Test passed.");
2023-06-25 08:50:01 +00:00
return;
2023-06-25 07:53:10 +00:00
}
}
}
2023-06-27 08:16:59 +00:00
private void ThrowFailTest()
{
var ex = UnpackException(exceptions.First());
Log(ex.ToString());
OverviewLog(" > Test failed: " + ex.Message);
throw ex;
}
private Exception UnpackException(Exception exception)
{
if (exception is AggregateException a)
{
return UnpackException(a.InnerExceptions.First());
}
if (exception is TargetInvocationException t)
{
return UnpackException(t.InnerException!);
}
return exception;
}
2023-06-25 07:53:10 +00:00
private void RunMoment(int t)
{
using (var context = new TestExecutionContext.IsolatedContext())
2023-06-25 07:53:10 +00:00
{
try
{
handle.InvokeMoment(t, InitializeTest);
}
catch (Exception ex)
{
exceptions.Add(ex);
}
2023-06-25 07:53:10 +00:00
}
DecommissionTest();
}
private void InitializeTest(string name)
{
Log($" > Running TestMoment '{name}'");
2023-06-28 14:19:37 +00:00
handle.Test.Initialize(nodes, fixtureLog, fileManager, config, cancelToken);
2023-06-25 07:53:10 +00:00
}
private void DecommissionTest()
{
2023-06-28 14:19:37 +00:00
handle.Test.Initialize(null!, null!, null!, null!, cancelToken);
}
2023-06-25 07:53:10 +00:00
private void Log(string msg)
{
2023-06-25 07:53:10 +00:00
fixtureLog.Log(msg);
}
2023-06-25 09:06:47 +00:00
private void OverviewLog(string msg)
{
Log(msg);
var containerNames = $"({string.Join(",", nodes.Select(n => n.Container.Name))})";
overviewLog.Log( testName + ": " + msg);
2023-06-25 09:06:47 +00:00
}
2023-06-29 14:07:49 +00:00
private CodexAccess[] CreateRandomNodes(int number)
{
2023-06-23 08:14:16 +00:00
var containers = SelectRandomContainers(number);
2023-06-25 07:53:10 +00:00
fixtureLog.Log("Selected nodes: " + string.Join(",", containers.Select(c => c.Name)));
return codexNodeFactory.Create(containers, fixtureLog, handle.Test.TimeSet);
}
2023-06-23 08:14:16 +00:00
private RunningContainer[] SelectRandomContainers(int number)
{
2023-06-23 08:14:16 +00:00
var containers = config.CodexDeployment.CodexContainers.ToList();
var result = new RunningContainer[number];
for (var i = 0; i < number; i++)
{
2023-06-23 08:14:16 +00:00
result[i] = containers.PickOneRandom();
}
return result;
}
2023-06-25 07:53:10 +00:00
private DistTestCore.Configuration CreateFileManagerConfiguration()
{
2023-06-25 08:50:01 +00:00
return new DistTestCore.Configuration(null, string.Empty, false, dataFolder,
2023-06-25 07:53:10 +00:00
CodexLogLevel.Error, TestRunnerLocation.ExternalToCluster);
}
}
}