144 lines
4.9 KiB
C#
144 lines
4.9 KiB
C#
using Core;
|
|
using DistTestCore.Logs;
|
|
using FileUtils;
|
|
using KubernetesWorkflow;
|
|
using KubernetesWorkflow.Recipe;
|
|
using KubernetesWorkflow.Types;
|
|
using Utils;
|
|
|
|
namespace DistTestCore
|
|
{
|
|
public class TestLifecycle : IK8sHooks
|
|
{
|
|
private const string TestsType = "dist-tests";
|
|
private readonly EntryPoint entryPoint;
|
|
private readonly Dictionary<string, string> metadata;
|
|
private readonly List<RunningPod> runningContainers = new();
|
|
private readonly string deployId;
|
|
private readonly List<IDownloadedLog> stoppedContainerLogs = new List<IDownloadedLog>();
|
|
|
|
public TestLifecycle(TestLog log, Configuration configuration, ITimeSet timeSet, string testNamespace, string deployId, bool waitForCleanup)
|
|
{
|
|
Log = log;
|
|
Configuration = configuration;
|
|
TimeSet = timeSet;
|
|
TestNamespace = testNamespace;
|
|
TestStart = DateTime.UtcNow;
|
|
|
|
entryPoint = new EntryPoint(log, configuration.GetK8sConfiguration(timeSet, this, testNamespace), configuration.GetFileManagerFolder(), timeSet);
|
|
metadata = entryPoint.GetPluginMetadata();
|
|
CoreInterface = entryPoint.CreateInterface();
|
|
this.deployId = deployId;
|
|
WaitForCleanup = waitForCleanup;
|
|
log.WriteLogTag();
|
|
}
|
|
|
|
public DateTime TestStart { get; }
|
|
public TestLog Log { get; }
|
|
public Configuration Configuration { get; }
|
|
public ITimeSet TimeSet { get; }
|
|
public string TestNamespace { get; }
|
|
public bool WaitForCleanup { get; }
|
|
public CoreInterface CoreInterface { get; }
|
|
|
|
public void DeleteAllResources()
|
|
{
|
|
entryPoint.Decommission(
|
|
deleteKubernetesResources: true,
|
|
deleteTrackedFiles: true,
|
|
waitTillDone: WaitForCleanup
|
|
);
|
|
}
|
|
|
|
public TrackedFile GenerateTestFile(ByteSize size, string label = "")
|
|
{
|
|
return entryPoint.Tools.GetFileManager().GenerateFile(size, label);
|
|
}
|
|
|
|
public TrackedFile GenerateTestFile(Action<IGenerateOption> options, string label = "")
|
|
{
|
|
return entryPoint.Tools.GetFileManager().GenerateFile(options, label);
|
|
}
|
|
|
|
public IFileManager GetFileManager()
|
|
{
|
|
return entryPoint.Tools.GetFileManager();
|
|
}
|
|
|
|
public Dictionary<string, string> GetPluginMetadata()
|
|
{
|
|
return entryPoint.GetPluginMetadata();
|
|
}
|
|
|
|
public TimeSpan GetTestDuration()
|
|
{
|
|
return DateTime.UtcNow - TestStart;
|
|
}
|
|
|
|
public void OnContainersStarted(RunningPod rc)
|
|
{
|
|
runningContainers.Add(rc);
|
|
}
|
|
|
|
public void OnContainersStopped(RunningPod rc)
|
|
{
|
|
runningContainers.Remove(rc);
|
|
|
|
stoppedContainerLogs.AddRange(rc.Containers.Select(c =>
|
|
{
|
|
if (c.StopLog == null) throw new Exception("Expected StopLog for stopped container " + c.Name);
|
|
return c.StopLog;
|
|
}));
|
|
}
|
|
|
|
public void OnContainerRecipeCreated(ContainerRecipe recipe)
|
|
{
|
|
recipe.PodLabels.Add("tests-type", TestsType);
|
|
recipe.PodLabels.Add("deployid", deployId);
|
|
recipe.PodLabels.Add("testid", NameUtils.GetTestId());
|
|
recipe.PodLabels.Add("category", NameUtils.GetCategoryName());
|
|
recipe.PodLabels.Add("fixturename", NameUtils.GetRawFixtureName());
|
|
recipe.PodLabels.Add("testname", NameUtils.GetTestMethodName());
|
|
recipe.PodLabels.Add("testframeworkrevision", GitInfo.GetStatus());
|
|
|
|
foreach (var pair in metadata)
|
|
{
|
|
recipe.PodLabels.Add(pair.Key, pair.Value);
|
|
}
|
|
}
|
|
|
|
public IDownloadedLog[] DownloadAllLogs()
|
|
{
|
|
try
|
|
{
|
|
var result = new List<IDownloadedLog>();
|
|
result.AddRange(stoppedContainerLogs);
|
|
foreach (var rc in runningContainers)
|
|
{
|
|
if (rc.IsStopped)
|
|
{
|
|
foreach (var c in rc.Containers)
|
|
{
|
|
if (c.StopLog == null) throw new Exception("No stop-log was downloaded for container.");
|
|
result.Add(c.StopLog);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
foreach (var c in rc.Containers)
|
|
{
|
|
result.Add(CoreInterface.DownloadLog(c));
|
|
}
|
|
}
|
|
}
|
|
return result.ToArray();
|
|
}
|
|
catch (Exception ex)
|
|
{
|
|
Log.Error("Exception during log download: " + ex);
|
|
return Array.Empty<IDownloadedLog>();
|
|
}
|
|
}
|
|
}
|
|
}
|