2023-09-20 11:33:58 +00:00
|
|
|
|
using Logging;
|
2023-06-21 09:01:48 +00:00
|
|
|
|
using Utils;
|
2023-06-26 09:10:56 +00:00
|
|
|
|
using NUnit.Framework.Internal;
|
2023-06-27 08:16:59 +00:00
|
|
|
|
using System.Reflection;
|
2023-09-20 11:33:58 +00:00
|
|
|
|
using CodexPlugin;
|
|
|
|
|
using DistTestCore.Logs;
|
|
|
|
|
using Core;
|
2023-11-12 09:07:23 +00:00
|
|
|
|
using KubernetesWorkflow.Types;
|
2023-06-21 09:01:48 +00:00
|
|
|
|
|
|
|
|
|
namespace ContinuousTests
|
|
|
|
|
{
|
|
|
|
|
public class SingleTestRun
|
|
|
|
|
{
|
2023-06-25 07:53:10 +00:00
|
|
|
|
private readonly List<Exception> exceptions = new List<Exception>();
|
2023-09-20 11:33:58 +00:00
|
|
|
|
private readonly EntryPoint entryPoint;
|
2023-06-28 14:19:37 +00:00
|
|
|
|
private readonly TaskFactory taskFactory;
|
2023-06-21 09:01:48 +00:00
|
|
|
|
private readonly Configuration config;
|
2023-09-21 08:33:09 +00:00
|
|
|
|
private readonly ILog overviewLog;
|
2023-11-09 10:35:45 +00:00
|
|
|
|
private readonly StatusLog statusLog;
|
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-09-20 11:33:58 +00:00
|
|
|
|
private readonly ICodexNode[] nodes;
|
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-08-30 07:23:13 +00:00
|
|
|
|
private static int failureCount = 0;
|
2023-06-21 09:01:48 +00:00
|
|
|
|
|
2023-11-09 10:35:45 +00:00
|
|
|
|
public SingleTestRun(EntryPointFactory entryPointFactory, TaskFactory taskFactory, Configuration config, ILog overviewLog, StatusLog statusLog, TestHandle handle, StartupChecker startupChecker, CancellationToken cancelToken)
|
2023-06-21 09:01:48 +00:00
|
|
|
|
{
|
2023-06-28 14:19:37 +00:00
|
|
|
|
this.taskFactory = taskFactory;
|
2023-06-21 09:01:48 +00:00
|
|
|
|
this.config = config;
|
2023-06-25 09:06:47 +00:00
|
|
|
|
this.overviewLog = overviewLog;
|
2023-11-09 10:35:45 +00:00
|
|
|
|
this.statusLog = statusLog;
|
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;
|
2023-11-08 08:24:39 +00:00
|
|
|
|
fixtureLog = new FixtureLog(new LogConfig(config.LogPath), DateTime.UtcNow, testName);
|
2023-09-21 08:33:09 +00:00
|
|
|
|
entryPoint = entryPointFactory.CreateEntryPoint(config.KubeConfigFile, config.DataPath, config.CodexDeployment.Metadata.KubeNamespace, fixtureLog);
|
2023-08-30 08:57:20 +00:00
|
|
|
|
ApplyLogReplacements(fixtureLog, startupChecker);
|
2023-06-21 09:01:48 +00:00
|
|
|
|
|
2023-08-31 07:50:34 +00:00
|
|
|
|
nodes = CreateRandomNodes();
|
2023-06-21 09:01:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-28 07:39:15 +00:00
|
|
|
|
public void Run(EventWaitHandle runFinishedHandle, Action<bool> resultHandler)
|
2023-06-21 09:01:48 +00:00
|
|
|
|
{
|
2023-06-28 14:19:37 +00:00
|
|
|
|
taskFactory.Run(() =>
|
2023-06-25 07:53:10 +00:00
|
|
|
|
{
|
|
|
|
|
try
|
|
|
|
|
{
|
2023-09-28 07:39:15 +00:00
|
|
|
|
RunTest(resultHandler);
|
2023-09-21 08:33:09 +00:00
|
|
|
|
|
|
|
|
|
entryPoint.Decommission(
|
|
|
|
|
deleteKubernetesResources: false, // This would delete the continuous test net.
|
|
|
|
|
deleteTrackedFiles: true
|
|
|
|
|
);
|
2023-06-29 11:39:05 +00:00
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-28 07:39:15 +00:00
|
|
|
|
private void RunTest(Action<bool> resultHandler)
|
2023-06-27 08:16:59 +00:00
|
|
|
|
{
|
2023-10-02 12:42:36 +00:00
|
|
|
|
var testStart = DateTime.UtcNow;
|
2023-11-09 10:35:45 +00:00
|
|
|
|
TimeSpan duration = TimeSpan.Zero;
|
|
|
|
|
|
2023-06-27 08:16:59 +00:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
RunTestMoments();
|
2023-11-09 10:35:45 +00:00
|
|
|
|
duration = DateTime.UtcNow - testStart;
|
2023-06-27 08:16:59 +00:00
|
|
|
|
|
2023-10-02 12:42:36 +00:00
|
|
|
|
OverviewLog($" > Test passed. ({Time.FormatDuration(duration)})");
|
2023-11-09 10:35:45 +00:00
|
|
|
|
UpdateStatusLogPassed(testStart, duration);
|
2023-10-02 12:42:36 +00:00
|
|
|
|
|
2023-10-01 07:57:32 +00:00
|
|
|
|
if (!config.KeepPassedTestLogs)
|
|
|
|
|
{
|
|
|
|
|
fixtureLog.Delete();
|
|
|
|
|
}
|
2023-09-28 07:39:15 +00:00
|
|
|
|
resultHandler(true);
|
2023-06-27 08:16:59 +00:00
|
|
|
|
}
|
|
|
|
|
catch (Exception ex)
|
|
|
|
|
{
|
|
|
|
|
fixtureLog.Error("Test run failed with exception: " + ex);
|
|
|
|
|
fixtureLog.MarkAsFailed();
|
2023-11-09 10:35:45 +00:00
|
|
|
|
UpdateStatusLogFailed(testStart, duration, ex.ToString());
|
2023-06-30 07:09:59 +00:00
|
|
|
|
|
2023-10-02 12:42:36 +00:00
|
|
|
|
DownloadContainerLogs(testStart);
|
|
|
|
|
|
2023-08-30 07:23:13 +00:00
|
|
|
|
failureCount++;
|
2023-09-28 07:39:15 +00:00
|
|
|
|
resultHandler(false);
|
2023-08-30 07:23:13 +00:00
|
|
|
|
if (config.StopOnFailure > 0)
|
2023-06-30 07:09:59 +00:00
|
|
|
|
{
|
2023-08-30 07:23:13 +00:00
|
|
|
|
OverviewLog($"Failures: {failureCount} / {config.StopOnFailure}");
|
|
|
|
|
if (failureCount >= config.StopOnFailure)
|
|
|
|
|
{
|
2023-10-01 07:57:32 +00:00
|
|
|
|
OverviewLog($"Configured to stop after {config.StopOnFailure} failures.");
|
2023-08-30 07:23:13 +00:00
|
|
|
|
Cancellation.Cts.Cancel();
|
|
|
|
|
}
|
2023-06-30 07:09:59 +00:00
|
|
|
|
}
|
2023-06-27 08:16:59 +00:00
|
|
|
|
}
|
2023-10-02 12:42:36 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void DownloadContainerLogs(DateTime testStart)
|
|
|
|
|
{
|
|
|
|
|
// The test failed just now. We can't expect the logs to be available in elastic-search immediately:
|
|
|
|
|
Thread.Sleep(TimeSpan.FromMinutes(1));
|
|
|
|
|
|
2023-10-04 07:36:59 +00:00
|
|
|
|
var effectiveStart = testStart.Subtract(TimeSpan.FromSeconds(30));
|
2023-10-08 17:11:31 +00:00
|
|
|
|
if (config.FullContainerLogs)
|
|
|
|
|
{
|
2023-10-16 11:10:45 +00:00
|
|
|
|
effectiveStart = config.CodexDeployment.Metadata.StartUtc.Subtract(TimeSpan.FromSeconds(30));
|
2023-10-08 17:11:31 +00:00
|
|
|
|
}
|
2023-10-04 07:36:59 +00:00
|
|
|
|
var effectiveEnd = DateTime.UtcNow;
|
2023-10-02 12:42:36 +00:00
|
|
|
|
var elasticSearchLogDownloader = new ElasticSearchLogDownloader(entryPoint.Tools, fixtureLog);
|
|
|
|
|
|
|
|
|
|
foreach (var node in nodes)
|
2023-10-01 08:52:05 +00:00
|
|
|
|
{
|
2023-11-07 13:33:45 +00:00
|
|
|
|
var container = node.Container;
|
|
|
|
|
var deploymentName = container.RunningContainers.StartResult.Deployment.Name;
|
|
|
|
|
var namespaceName = container.RunningContainers.StartResult.Cluster.Configuration.KubernetesNamespace;
|
|
|
|
|
var openingLine = $"{namespaceName} - {deploymentName} = {node.Container.Name} = {node.GetDebugInfo().id}";
|
2023-10-08 06:31:48 +00:00
|
|
|
|
elasticSearchLogDownloader.Download(fixtureLog.CreateSubfile(), node.Container, effectiveStart, effectiveEnd, openingLine);
|
2023-10-01 08:52:05 +00:00
|
|
|
|
}
|
2023-06-27 08:16:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 08:57:20 +00:00
|
|
|
|
private void ApplyLogReplacements(FixtureLog fixtureLog, StartupChecker startupChecker)
|
|
|
|
|
{
|
|
|
|
|
foreach (var replacement in startupChecker.LogReplacements) fixtureLog.AddStringReplace(replacement.From, replacement.To);
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-27 08:16:59 +00:00
|
|
|
|
private void RunTestMoments()
|
2023-06-25 07:53:10 +00:00
|
|
|
|
{
|
|
|
|
|
var earliestMoment = handle.GetEarliestMoment();
|
|
|
|
|
|
|
|
|
|
var t = earliestMoment;
|
2023-10-01 07:57:32 +00:00
|
|
|
|
while (!cancelToken.IsCancellationRequested)
|
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
|
|
|
|
}
|
|
|
|
|
return;
|
2023-06-25 07:53:10 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
2023-10-01 08:52:05 +00:00
|
|
|
|
fixtureLog.Log("Test run has been cancelled.");
|
2023-06-25 07:53:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-27 08:16:59 +00:00
|
|
|
|
private void ThrowFailTest()
|
|
|
|
|
{
|
2023-08-30 08:13:48 +00:00
|
|
|
|
var exs = UnpackExceptions(exceptions);
|
|
|
|
|
var exceptionsMessage = GetCombinedExceptionsMessage(exs);
|
|
|
|
|
Log(exceptionsMessage);
|
2023-09-01 06:45:23 +00:00
|
|
|
|
OverviewLog($" > Test failed: " + exceptionsMessage);
|
2023-08-30 08:13:48 +00:00
|
|
|
|
throw new Exception(exceptionsMessage);
|
2023-06-27 08:16:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-09 10:35:45 +00:00
|
|
|
|
private void UpdateStatusLogFailed(DateTime testStart, TimeSpan duration, string error)
|
|
|
|
|
{
|
|
|
|
|
statusLog.ConcludeTest("Failed", duration, CreateStatusLogData(testStart, error));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void UpdateStatusLogPassed(DateTime testStart, TimeSpan duration)
|
|
|
|
|
{
|
|
|
|
|
statusLog.ConcludeTest("Passed", duration, CreateStatusLogData(testStart, "OK"));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Dictionary<string, string> CreateStatusLogData(DateTime testStart, string message)
|
|
|
|
|
{
|
2023-11-13 10:56:02 +00:00
|
|
|
|
var result = entryPoint.GetPluginMetadata();
|
|
|
|
|
result.Add("teststart", testStart.ToString("o"));
|
|
|
|
|
result.Add("testname", testName);
|
|
|
|
|
result.Add("message", message);
|
|
|
|
|
return result;
|
2023-11-09 10:35:45 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-30 08:13:48 +00:00
|
|
|
|
private string GetCombinedExceptionsMessage(Exception[] exceptions)
|
|
|
|
|
{
|
|
|
|
|
return string.Join(Environment.NewLine, exceptions.Select(ex => ex.ToString()));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Exception[] UnpackExceptions(List<Exception> exceptions)
|
|
|
|
|
{
|
|
|
|
|
return exceptions.Select(UnpackException).ToArray();
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-27 08:16:59 +00:00
|
|
|
|
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)
|
|
|
|
|
{
|
2023-06-26 09:10:56 +00:00
|
|
|
|
using (var context = new TestExecutionContext.IsolatedContext())
|
2023-06-25 07:53:10 +00:00
|
|
|
|
{
|
2023-06-26 09:10:56 +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-09-20 11:33:58 +00:00
|
|
|
|
handle.Test.Initialize(nodes, fixtureLog, entryPoint.Tools.GetFileManager(), 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-21 09:01:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-25 07:53:10 +00:00
|
|
|
|
private void Log(string msg)
|
2023-06-21 09:01:48 +00:00
|
|
|
|
{
|
2023-06-25 07:53:10 +00:00
|
|
|
|
fixtureLog.Log(msg);
|
2023-06-21 09:01:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-06-25 09:06:47 +00:00
|
|
|
|
private void OverviewLog(string msg)
|
|
|
|
|
{
|
|
|
|
|
Log(msg);
|
2023-08-31 07:50:34 +00:00
|
|
|
|
var containerNames = GetContainerNames();
|
2023-06-30 06:39:18 +00:00
|
|
|
|
overviewLog.Log($"{containerNames} {testName}: {msg}");
|
2023-06-25 09:06:47 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-08-31 07:50:34 +00:00
|
|
|
|
private string GetContainerNames()
|
2023-06-21 09:01:48 +00:00
|
|
|
|
{
|
2023-08-31 07:50:34 +00:00
|
|
|
|
if (handle.Test.RequiredNumberOfNodes == -1) return "(All Nodes)";
|
|
|
|
|
return $"({string.Join(",", nodes.Select(n => n.Container.Name))})";
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-20 11:33:58 +00:00
|
|
|
|
private ICodexNode[] CreateRandomNodes()
|
2023-08-31 07:50:34 +00:00
|
|
|
|
{
|
|
|
|
|
var containers = SelectRandomContainers();
|
2023-06-25 07:53:10 +00:00
|
|
|
|
fixtureLog.Log("Selected nodes: " + string.Join(",", containers.Select(c => c.Name)));
|
2023-09-20 11:33:58 +00:00
|
|
|
|
return entryPoint.CreateInterface().WrapCodexContainers(containers).ToArray();
|
2023-06-21 09:01:48 +00:00
|
|
|
|
}
|
|
|
|
|
|
2023-11-06 13:33:47 +00:00
|
|
|
|
private RunningContainers[] SelectRandomContainers()
|
2023-06-21 09:01:48 +00:00
|
|
|
|
{
|
2023-08-31 07:50:34 +00:00
|
|
|
|
var number = handle.Test.RequiredNumberOfNodes;
|
2023-11-06 13:33:47 +00:00
|
|
|
|
var containers = config.CodexDeployment.CodexInstances.Select(i => i.Containers).ToList();
|
2023-10-25 07:14:35 +00:00
|
|
|
|
if (number == -1) return containers.ToArray();
|
2023-08-29 14:08:40 +00:00
|
|
|
|
|
2023-11-06 13:33:47 +00:00
|
|
|
|
var result = new RunningContainers[number];
|
2023-06-21 09:01:48 +00:00
|
|
|
|
for (var i = 0; i < number; i++)
|
|
|
|
|
{
|
2023-06-23 08:14:16 +00:00
|
|
|
|
result[i] = containers.PickOneRandom();
|
2023-06-21 09:01:48 +00:00
|
|
|
|
}
|
|
|
|
|
return result;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|