cs-codex-dist-tests/Tests/CodexContinuousTests/TestLoop.cs

80 lines
2.8 KiB
C#
Raw Normal View History

2023-09-21 08:33:09 +00:00
using Logging;
2023-06-25 09:06:47 +00:00
namespace ContinuousTests
2023-06-25 07:53:10 +00:00
{
2023-06-27 08:16:59 +00:00
public class TestLoop
2023-06-25 07:53:10 +00:00
{
2023-09-21 08:33:09 +00:00
private readonly EntryPointFactory entryPointFactory;
2023-06-28 14:19:37 +00:00
private readonly TaskFactory taskFactory;
2023-06-25 07:53:10 +00:00
private readonly Configuration config;
2023-09-21 08:33:09 +00:00
private readonly ILog overviewLog;
2023-06-25 07:53:10 +00:00
private readonly Type testType;
private readonly TimeSpan runsEvery;
private readonly StartupChecker startupChecker;
2023-06-28 14:19:37 +00:00
private readonly CancellationToken cancelToken;
private readonly EventWaitHandle runFinishedHandle = new EventWaitHandle(true, EventResetMode.ManualReset);
2023-06-25 07:53:10 +00:00
2023-09-21 08:33:09 +00:00
public TestLoop(EntryPointFactory entryPointFactory, TaskFactory taskFactory, Configuration config, ILog overviewLog, Type testType, TimeSpan runsEvery, StartupChecker startupChecker, CancellationToken cancelToken)
2023-06-25 07:53:10 +00:00
{
2023-09-21 08:33:09 +00:00
this.entryPointFactory = entryPointFactory;
2023-06-28 14:19:37 +00:00
this.taskFactory = taskFactory;
2023-06-25 07:53:10 +00:00
this.config = config;
2023-06-25 09:06:47 +00:00
this.overviewLog = overviewLog;
2023-06-25 07:53:10 +00:00
this.testType = testType;
this.runsEvery = runsEvery;
this.startupChecker = startupChecker;
2023-06-28 14:19:37 +00:00
this.cancelToken = cancelToken;
2023-06-27 08:16:59 +00:00
Name = testType.Name;
2023-06-25 07:53:10 +00:00
}
2023-06-27 08:16:59 +00:00
public string Name { get; }
2023-09-28 07:39:15 +00:00
public int NumberOfPasses { get; private set; }
public int NumberOfFailures { get; private set; }
2023-06-27 08:16:59 +00:00
2023-06-25 07:53:10 +00:00
public void Begin()
{
2023-06-28 14:19:37 +00:00
taskFactory.Run(() =>
2023-06-25 07:53:10 +00:00
{
2023-06-27 08:16:59 +00:00
try
{
2023-09-28 07:39:15 +00:00
NumberOfPasses = 0;
NumberOfFailures = 0;
2023-06-27 08:16:59 +00:00
while (true)
{
WaitHandle.WaitAny(new[] { runFinishedHandle, cancelToken.WaitHandle });
2023-06-28 14:19:37 +00:00
cancelToken.ThrowIfCancellationRequested();
2023-06-27 08:16:59 +00:00
StartTest();
2023-06-28 14:19:37 +00:00
cancelToken.WaitHandle.WaitOne(runsEvery);
2023-06-27 08:16:59 +00:00
}
}
2023-06-28 14:19:37 +00:00
catch (OperationCanceledException)
{
overviewLog.Log("Test-loop " + testType.Name + " is cancelled.");
}
catch (Exception ex)
2023-06-25 07:53:10 +00:00
{
2023-06-27 08:16:59 +00:00
overviewLog.Error("Test infra failure: TestLoop failed with " + ex);
Environment.Exit(-1);
2023-06-25 07:53:10 +00:00
}
});
}
private void StartTest()
{
var test = (ContinuousTest)Activator.CreateInstance(testType)!;
var handle = new TestHandle(test);
2023-09-21 08:33:09 +00:00
var run = new SingleTestRun(entryPointFactory, taskFactory, config, overviewLog, handle, startupChecker, cancelToken);
runFinishedHandle.Reset();
2023-09-28 07:39:15 +00:00
run.Run(runFinishedHandle, result =>
{
if (result) NumberOfPasses++;
else NumberOfFailures++;
});
2023-06-25 07:53:10 +00:00
}
}
}