cs-codex-dist-tests/Tests/DistTestCore/DistTest.cs

323 lines
10 KiB
C#
Raw Normal View History

2023-09-12 11:32:06 +00:00
using Core;
2023-09-20 08:51:47 +00:00
using DistTestCore.Logs;
using FileUtils;
2023-04-14 10:37:05 +00:00
using Logging;
using NUnit.Framework;
2024-03-27 14:01:32 +00:00
using NUnit.Framework.Interfaces;
using System.Reflection;
2023-09-08 08:21:40 +00:00
using Utils;
2023-09-20 08:51:47 +00:00
using Assert = NUnit.Framework.Assert;
2023-04-12 14:06:04 +00:00
namespace DistTestCore
{
2023-05-04 06:25:48 +00:00
[Parallelizable(ParallelScope.All)]
public abstract class DistTest
2023-04-12 14:06:04 +00:00
{
2023-09-12 09:37:20 +00:00
private const string TestNamespacePrefix = "ct-";
2023-04-14 12:53:39 +00:00
private readonly Configuration configuration = new Configuration();
private readonly Assembly[] testAssemblies;
private readonly FixtureLog fixtureLog;
2023-07-18 07:47:44 +00:00
private readonly StatusLog statusLog;
private readonly object lifecycleLock = new object();
private readonly EntryPoint globalEntryPoint;
private readonly Dictionary<string, TestLifecycle> lifecycles = new Dictionary<string, TestLifecycle>();
private readonly string deployId;
2023-09-12 08:31:55 +00:00
public DistTest()
{
var assemblies = AppDomain.CurrentDomain.GetAssemblies();
testAssemblies = assemblies.Where(a => a.FullName!.ToLowerInvariant().Contains("test")).ToArray();
deployId = NameUtils.MakeDeployId();
2023-07-18 07:47:44 +00:00
var logConfig = configuration.GetLogConfig();
var startTime = DateTime.UtcNow;
fixtureLog = new FixtureLog(logConfig, startTime, deployId);
statusLog = new StatusLog(logConfig, startTime, "dist-tests", deployId);
globalEntryPoint = new EntryPoint(fixtureLog, configuration.GetK8sConfiguration(new DefaultTimeSet(), TestNamespacePrefix), configuration.GetFileManagerFolder());
Initialize(fixtureLog);
}
2023-04-12 14:06:04 +00:00
[OneTimeSetUp]
public void GlobalSetup()
{
2023-09-12 08:31:55 +00:00
fixtureLog.Log($"Distributed Tests are starting...");
globalEntryPoint.Announce();
2023-07-17 07:26:54 +00:00
2023-04-12 14:06:04 +00:00
// Previous test run may have been interrupted.
// Begin by cleaning everything up.
try
{
2023-04-14 12:53:39 +00:00
Stopwatch.Measure(fixtureLog, "Global setup", () =>
{
globalEntryPoint.Tools.CreateWorkflow().DeleteNamespacesStartingWith(TestNamespacePrefix, wait: true);
2023-04-14 12:53:39 +00:00
});
2023-04-12 14:06:04 +00:00
}
catch (Exception ex)
{
GlobalTestFailure.HasFailed = true;
fixtureLog.Error($"Global setup cleanup failed with: {ex}");
2023-04-12 14:06:04 +00:00
throw;
}
2023-04-14 12:53:39 +00:00
fixtureLog.Log("Test framework revision: " + GitInfo.GetStatus());
2023-04-14 12:53:39 +00:00
fixtureLog.Log("Global setup cleanup successful");
2023-04-12 14:06:04 +00:00
}
2023-09-12 08:31:55 +00:00
[OneTimeTearDown]
public void GlobalTearDown()
{
2023-09-21 08:33:09 +00:00
globalEntryPoint.Decommission(
// There shouldn't be any of either, but clean everything up regardless.
deleteKubernetesResources: true,
deleteTrackedFiles: true,
waitTillDone: true
2023-09-21 08:33:09 +00:00
);
2023-09-12 08:31:55 +00:00
}
2023-04-12 14:06:04 +00:00
[SetUp]
public void SetUpDistTest()
{
if (GlobalTestFailure.HasFailed)
{
Assert.Inconclusive("Skip test: Previous test failed during clean up.");
}
else
{
CreateNewTestLifecycle();
}
}
[TearDown]
public void TearDownDistTest()
{
try
{
2023-04-14 12:53:39 +00:00
DisposeTestLifecycle();
2023-04-12 14:06:04 +00:00
}
catch (Exception ex)
{
2024-04-15 09:37:14 +00:00
fixtureLog.Error("Cleanup failed: " + ex);
2023-04-12 14:06:04 +00:00
GlobalTestFailure.HasFailed = true;
}
}
public CoreInterface Ci
{
get
{
return Get().CoreInterface;
}
}
2023-09-12 11:32:06 +00:00
public TrackedFile GenerateTestFile(ByteSize size, string label = "")
2023-04-12 14:06:04 +00:00
{
2023-09-13 08:03:11 +00:00
return Get().GenerateTestFile(size, label);
2023-04-12 14:06:04 +00:00
}
/// <summary>
/// Any test files generated in 'action' will be deleted after it returns.
/// This helps prevent large tests from filling up discs.
/// </summary>
public void ScopedTestFiles(Action action)
{
2023-09-13 12:24:43 +00:00
Get().GetFileManager().ScopedFiles(action);
}
2023-09-12 08:31:55 +00:00
public ILog GetTestLog()
{
return Get().Log;
}
public void Log(string msg)
2023-04-26 12:40:54 +00:00
{
TestContext.Progress.WriteLine(msg);
GetTestLog().Log(msg);
}
public void Debug(string msg)
{
TestContext.Progress.WriteLine(msg);
GetTestLog().Debug(msg);
}
2023-08-22 13:51:39 +00:00
public void Measure(string name, Action action)
{
Stopwatch.Measure(Get().Log, name, action);
}
2023-12-20 09:55:29 +00:00
protected TimeRange GetTestRunTimeRange()
{
return new TimeRange(Get().TestStart, DateTime.UtcNow);
}
protected virtual void Initialize(FixtureLog fixtureLog)
{
}
2023-12-06 09:50:02 +00:00
protected virtual void LifecycleStart(TestLifecycle lifecycle)
{
}
protected virtual void LifecycleStop(TestLifecycle lifecycle)
{
}
protected virtual void CollectStatusLogData(TestLifecycle lifecycle, Dictionary<string, string> data)
{
}
2023-09-13 12:24:43 +00:00
protected TestLifecycle Get()
{
lock (lifecycleLock)
{
return lifecycles[GetCurrentTestName()];
}
2023-04-26 12:40:54 +00:00
}
2023-04-12 14:06:04 +00:00
private void CreateNewTestLifecycle()
{
2023-05-03 12:18:37 +00:00
var testName = GetCurrentTestName();
2023-07-18 12:26:21 +00:00
fixtureLog.WriteLogTag();
2023-05-03 12:18:37 +00:00
Stopwatch.Measure(fixtureLog, $"Setup for {testName}", () =>
2023-04-14 12:53:39 +00:00
{
lock (lifecycleLock)
{
2023-09-12 09:37:20 +00:00
var testNamespace = TestNamespacePrefix + Guid.NewGuid().ToString();
var lifecycle = new TestLifecycle(
fixtureLog.CreateTestLog(),
configuration,
GetTimeSet(),
testNamespace,
deployId,
ShouldWaitForCleanup());
lifecycles.Add(testName, lifecycle);
2023-12-06 09:50:02 +00:00
LifecycleStart(lifecycle);
}
2023-04-14 12:53:39 +00:00
});
}
private void DisposeTestLifecycle()
{
var lifecycle = Get();
2023-07-21 07:20:28 +00:00
var testResult = GetTestResult();
var testDuration = lifecycle.GetTestDuration();
2023-12-06 09:50:02 +00:00
var data = lifecycle.GetPluginMetadata();
CollectStatusLogData(lifecycle, data);
2023-07-21 07:20:28 +00:00
fixtureLog.Log($"{GetCurrentTestName()} = {testResult} ({testDuration})");
2023-12-06 09:50:02 +00:00
statusLog.ConcludeTest(testResult, testDuration, data);
2023-04-14 12:53:39 +00:00
Stopwatch.Measure(fixtureLog, $"Teardown for {GetCurrentTestName()}", () =>
{
2023-09-12 08:31:55 +00:00
WriteEndTestLog(lifecycle.Log);
IncludeLogsOnTestFailure(lifecycle);
2023-12-06 09:50:02 +00:00
LifecycleStop(lifecycle);
2023-04-14 12:53:39 +00:00
lifecycle.DeleteAllResources();
lifecycle = null!;
});
}
2023-09-12 08:31:55 +00:00
private void WriteEndTestLog(TestLog log)
{
var result = TestContext.CurrentContext.Result;
Log($"*** Finished: {GetCurrentTestName()} = {result.Outcome.Status}");
if (!string.IsNullOrEmpty(result.Message))
{
Log(result.Message);
Log($"{result.StackTrace}");
}
2024-03-27 14:01:32 +00:00
if (result.Outcome.Status == TestStatus.Failed)
2023-09-12 08:31:55 +00:00
{
log.MarkAsFailed();
}
}
private ITimeSet GetTimeSet()
{
if (ShouldUseLongTimeouts()) return new LongTimeSet();
return new DefaultTimeSet();
}
private bool ShouldWaitForCleanup()
{
return CurrentTestMethodHasAttribute<WaitForCleanupAttribute>();
}
private bool ShouldUseLongTimeouts()
2024-04-22 09:17:47 +00:00
{
return CurrentTestMethodHasAttribute<UseLongTimeoutsAttribute>();
}
private bool HasDontDownloadAttribute()
{
return CurrentTestMethodHasAttribute<DontDownloadLogsAttribute>();
}
private bool CurrentTestMethodHasAttribute<T>() where T : PropertyAttribute
{
// Don't be fooled! TestContext.CurrentTest.Test allows you easy access to the attributes of the current test.
2024-04-22 09:17:47 +00:00
// But this doesn't work for tests making use of [TestCase] or [Combinatorial]. So instead, we use reflection here to figure out
// if the attribute is present.
var currentTest = TestContext.CurrentContext.Test;
var className = currentTest.ClassName;
var methodName = currentTest.MethodName;
var testClasses = testAssemblies.SelectMany(a => a.GetTypes()).Where(c => c.FullName == className).ToArray();
var testMethods = testClasses.SelectMany(c => c.GetMethods()).Where(m => m.Name == methodName).ToArray();
2024-04-22 09:17:47 +00:00
return testMethods.Any(m => m.GetCustomAttribute<T>() != null);
}
private void IncludeLogsOnTestFailure(TestLifecycle lifecycle)
{
2024-03-27 14:01:32 +00:00
var testStatus = TestContext.CurrentContext.Result.Outcome.Status;
if (testStatus == TestStatus.Failed)
{
fixtureLog.MarkAsFailed();
2024-03-27 14:01:32 +00:00
}
2024-03-27 14:01:32 +00:00
if (ShouldDownloadAllLogs(testStatus))
{
lifecycle.Log.Log("Downloading all container logs...");
lifecycle.DownloadAllLogs();
}
}
2024-03-27 14:01:32 +00:00
private bool ShouldDownloadAllLogs(TestStatus testStatus)
{
if (configuration.AlwaysDownloadContainerLogs) return true;
2024-04-22 09:17:47 +00:00
if (!IsDownloadingLogsEnabled()) return false;
2024-03-27 14:01:32 +00:00
if (testStatus == TestStatus.Failed)
{
2024-04-15 05:36:12 +00:00
return true;
2024-03-27 14:01:32 +00:00
}
return false;
}
2023-04-14 12:53:39 +00:00
private string GetCurrentTestName()
{
return $"[{TestContext.CurrentContext.Test.Name}]";
}
private string GetTestResult()
{
return TestContext.CurrentContext.Result.Outcome.Status.ToString();
}
private bool IsDownloadingLogsEnabled()
{
2024-04-22 09:17:47 +00:00
return !HasDontDownloadAttribute();
}
2023-04-12 14:06:04 +00:00
}
public static class GlobalTestFailure
{
public static bool HasFailed { get; set; } = false;
}
}