Files
sbox-public/engine/Sandbox.Test.Unit/TestContextExtensions.cs
Lorenz Junglas 91f8fcf183 Speed up / parallelize tests (#3587)
- Added Sandbox.Test.Unit project (contains independent tests that can run in parallel) 
- Modify some slow/stress tests (e.g. instead of doing a million iterations settle for 10k).

Tests run almost twice as fast now.
2025-12-10 14:23:00 +01:00

64 lines
1.9 KiB
C#

using System;
using System.Collections.Generic;
using System.IO;
using OxyPlot;
namespace Sandbox.Test;
#nullable enable
public static class TestContextExtensions
{
/// <summary>
/// Add an .svg image of the given plots as a test result attachment, created in <see cref="TestContext.TestResultsDirectory"/>.
/// </summary>
/// <param name="context"></param>
/// <param name="name">File name for the plot file.</param>
/// <param name="plotModels">Plots to arrange into a grid in the image.</param>
/// <param name="width">Width of each plot.</param>
/// <param name="height">Height of each plot.</param>
/// <param name="maxCols">Maximum plots per row in the image.</param>
public static void AddResultPlot( this TestContext context, string name, IReadOnlyList<IPlotModel> plotModels, int width = 600, int height = 300, int? maxCols = null )
{
if ( string.IsNullOrEmpty( context.TestResultsDirectory ) || plotModels.Count == 0 )
{
return;
}
var fileName = Path.Combine( context.TestResultsDirectory, name );
if ( !Directory.Exists( Path.GetDirectoryName( fileName ) ) )
{
Directory.CreateDirectory( Path.GetDirectoryName( fileName )! );
}
var cols = maxCols ?? plotModels.Count;
var rows = (plotModels.Count + cols - 1) / cols;
using ( var stream = File.Create( fileName ) )
{
var background = plotModels[0].Background;
var textMeasurer = new PdfRenderContext( width * cols, height * rows, background );
using ( var rc = new SvgRenderContext( stream, width * cols, height * rows, true, textMeasurer, background ) )
{
for ( var i = 0; i < plotModels.Count; ++i )
{
var plotModel = plotModels[i];
var row = i / cols;
var col = i % cols;
plotModel.Update( true );
plotModel.Render( rc, new OxyRect( width * col, height * row, width, height ) );
}
rc.Complete();
rc.Flush();
}
}
context.AddResultFile( fileName );
}
}