mirror of
https://github.com/logos-storage/logos-storage-nim-cs-dist-tests.git
synced 2026-05-07 18:09:36 +00:00
* ci(docker): build dist-tests images * Update to .net 10, kubernetes client 18.0.13 Kubernetes client 18.0.13 is compatible with Kubernetes 1.34.x. The Kubernetes version is selected automatically by kubeadm in docker desktop (v1.34.1). See https://github.com/kubernetes-client/csharp#version-compatibility for a compatibility table. * Updates to support Kubernetes upgrade * bump openapi.yaml to match openapi.yaml in the logos-storage-nim docker image * bump doc to .net 10 * bump docker to .net 10 * Build image with latest tag always Always build an image with a latest tag (as well as a sha commit hash) when there's a push to master * docker image tag as "latest" only when pushing to master * Update docker image to install doctl * Remove doctl install kubeconfig is now created and uses a plain bearer token instead of using doctl as a credential mgr * Rename and remove all instances of Codex * Further remove CodexNetDeployer as it is no longer needed --------- Co-authored-by: Adam Uhlíř <adam@uhlir.dev>
165 lines
6.7 KiB
C#
165 lines
6.7 KiB
C#
using DistTestCore;
|
|
using DistTestCore.Logs;
|
|
using Logging;
|
|
using Newtonsoft.Json;
|
|
using Utils;
|
|
using TaskFactory = Utils.TaskFactory;
|
|
|
|
namespace ContinuousTests
|
|
{
|
|
public class ContinuousTestRunner
|
|
{
|
|
private readonly EntryPointFactory entryPointFactory = new EntryPointFactory();
|
|
private readonly ConfigLoader configLoader = new ConfigLoader();
|
|
private readonly TestFactory testFactory = new TestFactory();
|
|
private readonly Configuration config;
|
|
private readonly CancellationToken cancelToken;
|
|
|
|
public ContinuousTestRunner(string[] args, CancellationToken cancelToken)
|
|
{
|
|
config = configLoader.Load(args);
|
|
this.cancelToken = cancelToken;
|
|
}
|
|
|
|
public void Run()
|
|
{
|
|
var logConfig = new LogConfig(config.LogPath);
|
|
var startTime = DateTime.UtcNow;
|
|
|
|
var overviewLog = new LogSplitter(
|
|
FixtureLog.Create(logConfig, startTime, config.LogosStorageDeployment.Id, "Overview"),
|
|
new ConsoleLog()
|
|
);
|
|
var statusLog = new StatusLog(logConfig, startTime, "continuous-tests", config.LogosStorageDeployment.Id,
|
|
"ContinuousTestRun");
|
|
|
|
overviewLog.Log("Initializing...");
|
|
|
|
var entryPoint = entryPointFactory.CreateEntryPoint(config.KubeConfigFile, config.DataPath, config.LogosStorageDeployment.Metadata.KubeNamespace, overviewLog);
|
|
entryPoint.Announce();
|
|
|
|
overviewLog.Log("Initialized. Performing startup checks...");
|
|
|
|
var startupChecker = new StartupChecker(entryPoint, config, cancelToken);
|
|
startupChecker.Check();
|
|
|
|
var taskFactory = new TaskFactory();
|
|
overviewLog.Log("Startup checks passed. Configuration:");
|
|
overviewLog.Log(JsonConvert.SerializeObject(config, Formatting.Indented));
|
|
overviewLog.Log("Test framework revision: " + GitInfo.GetStatus());
|
|
overviewLog.Log("Continuous tests starting...");
|
|
overviewLog.Log("");
|
|
var allTests = testFactory.CreateTests();
|
|
|
|
ClearAllCustomNamespaces(allTests, overviewLog);
|
|
|
|
var filteredTests = FilterTests(allTests, overviewLog);
|
|
if (!filteredTests.Any())
|
|
{
|
|
overviewLog.Log("No tests selected.");
|
|
Cancellation.Cts.Cancel();
|
|
}
|
|
else
|
|
{
|
|
var testLoops = filteredTests.Select(t => new TestLoop(entryPointFactory, taskFactory, config, overviewLog, statusLog, t.GetType(), t.RunTestEvery, startupChecker, cancelToken)).ToArray();
|
|
|
|
foreach (var testLoop in testLoops)
|
|
{
|
|
if (cancelToken.IsCancellationRequested) break;
|
|
|
|
overviewLog.Log("Launching test-loop for " + testLoop.Name);
|
|
testLoop.Begin();
|
|
Thread.Sleep(TimeSpan.FromSeconds(5));
|
|
}
|
|
|
|
overviewLog.Log("Finished launching test-loops.");
|
|
WaitUntilFinished(overviewLog, statusLog, startTime, testLoops);
|
|
overviewLog.Log("Stopping all test-loops...");
|
|
}
|
|
taskFactory.WaitAll();
|
|
overviewLog.Log("All tasks cancelled.");
|
|
|
|
PerformCleanup(overviewLog);
|
|
}
|
|
|
|
private ContinuousTest[] FilterTests(ContinuousTest[] allTests, ILog log)
|
|
{
|
|
log.Log($"Available tests: {string.Join(", ", allTests.Select(r => r.Name))}");
|
|
|
|
var result = allTests.ToArray();
|
|
var filters = config.Filter.Split(",", StringSplitOptions.RemoveEmptyEntries);
|
|
if (filters.Any())
|
|
{
|
|
log.Log($"Applying filters: {string.Join(", ", filters)}");
|
|
result = allTests.Where(t => filters.Any(f => t.Name.Contains(f))).ToArray();
|
|
}
|
|
|
|
log.Log($"Selected for running: {string.Join(", ", result.Select(r => r.Name))}");
|
|
return result;
|
|
}
|
|
|
|
private void WaitUntilFinished(LogSplitter overviewLog, StatusLog statusLog, DateTime startTime, TestLoop[] testLoops)
|
|
{
|
|
var testDuration = (DateTime.UtcNow - startTime).TotalSeconds.ToString();
|
|
var testData = FormatTestRuns(testLoops);
|
|
overviewLog.Log("Total duration: " + testDuration);
|
|
|
|
if (!string.IsNullOrEmpty(config.TargetDurationSeconds))
|
|
{
|
|
var targetDuration = Time.ParseTimespan(config.TargetDurationSeconds);
|
|
var wasCancelled = cancelToken.WaitHandle.WaitOne(targetDuration);
|
|
if (!wasCancelled)
|
|
{
|
|
Cancellation.Cts.Cancel();
|
|
overviewLog.Log($"Congratulations! The targer duration has been reached! ({Time.FormatDuration(targetDuration)})");
|
|
statusLog.ConcludeTest("Passed", testDuration, testData);
|
|
Environment.ExitCode = 0;
|
|
return;
|
|
}
|
|
}
|
|
else
|
|
{
|
|
cancelToken.WaitHandle.WaitOne();
|
|
}
|
|
statusLog.ConcludeTest("Failed", testDuration, testData);
|
|
Environment.ExitCode = 1;
|
|
}
|
|
|
|
private Dictionary<string, string> FormatTestRuns(TestLoop[] testLoops)
|
|
{
|
|
var result = new Dictionary<string, string>();
|
|
foreach (var testLoop in testLoops)
|
|
{
|
|
result.Add("testname", testLoop.Name);
|
|
result.Add($"summary", $"passes: {testLoop.NumberOfPasses} - failures: {testLoop.NumberOfFailures}");
|
|
}
|
|
return result;
|
|
}
|
|
|
|
private void ClearAllCustomNamespaces(ContinuousTest[] allTests, ILog log)
|
|
{
|
|
foreach (var test in allTests) ClearAllCustomNamespaces(test, log);
|
|
}
|
|
|
|
private void ClearAllCustomNamespaces(ContinuousTest test, ILog log)
|
|
{
|
|
if (string.IsNullOrEmpty(test.CustomK8sNamespace)) return;
|
|
|
|
log.Log($"Clearing namespace '{test.CustomK8sNamespace}'...");
|
|
|
|
var entryPoint = entryPointFactory.CreateEntryPoint(config.KubeConfigFile, config.DataPath, test.CustomK8sNamespace, log);
|
|
entryPoint.Tools.CreateWorkflow().DeleteNamespacesStartingWith(test.CustomK8sNamespace, wait: true);
|
|
}
|
|
|
|
private void PerformCleanup(ILog log)
|
|
{
|
|
if (!config.Cleanup) return;
|
|
log.Log("Cleaning up test namespace...");
|
|
|
|
var entryPoint = entryPointFactory.CreateEntryPoint(config.KubeConfigFile, config.DataPath, config.LogosStorageDeployment.Metadata.KubeNamespace, log);
|
|
entryPoint.Decommission(deleteKubernetesResources: true, deleteTrackedFiles: true, waitTillDone: true);
|
|
log.Log("Cleanup finished.");
|
|
}
|
|
}
|
|
}
|