TestSurface 1.3.0

dotnet add package TestSurface --version 1.3.0
NuGet\Install-Package TestSurface -Version 1.3.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TestSurface" Version="1.3.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TestSurface --version 1.3.0
#r "nuget: TestSurface, 1.3.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TestSurface as a Cake Addin
#addin nuget:?package=TestSurface&version=1.3.0

// Install TestSurface as a Cake Tool
#tool nuget:?package=TestSurface&version=1.3.0

alternate text is missing from this package README image

Test Surface

Build status

v1.2 changelog

Description

The lib defines a test contract, provides a command line arguments parser, a simple printing utility, a recursive object comparer and a test launcher.

public interface ITestSurface
{
    string Info { get; }   // The test description
    string Tags { get; }   // A comma-separated list of tags 
    string FailureMessage { get; }
    bool? Passed { get; }  
    bool IsComplete { get; }   // Useful for multi-method tests
    bool IndependentLaunchOnly { get; }  // If true, the test can't be started with +all
    Task Start(ArgMap args);
}

The launcher can be started in two modes:

  • with specific ITestSurface implementations: +ITestSurfaceImplName -options o1 o2 +ITestSurfaceImplName2
  • with the +all switch to discover and activate all compatible types. Tests having IndependentLaunchOnly = true will be ignored when +all is present.

Note: All implementations must have a default constructor.

Arguments

Each test is provided with its own subset of the original arguments or with a map with "+all" key. The map keys are the switches with the prefix (e.g. +all, -option) and the values are the arguments following the switch. Values with no leading switch are added in a list with a "*" key. For example with launcher.Start("+TS","nolead", "-leadOption", "value") the test will receive a map with two keys leadOption [value] and * [nolead] .

In code pass each argument as a separate string e.g. launcher.Start("+TS1", "-option", "option with spaces", "o2", "+TS2");

SurfaceLauncher options

  • including -info will take the Info property and trace it instead of executing the Start method.
    Launching with +all -info will trace all test descriptions.
  • with +/-notrace all Print.AsInfo() or Print.Trace() calls will be ignored. The +notrace is global for all tests.
  • +noprint disables all Print methods, including the test launcher status info. It's equivalent to Print.IgnoreAll = true
  • +break stops the launcher on the first failure
  • -skip followed by target names will ignore them if +all is present: +all -skip T1 T2
  • -wtags followed by a list of tags launches all tests having at least one matching tag
  • -wotags starts the tests which don't have any tag in common with the args
  • -wxtags starts the tests having all of the provided tags

Only one of the tag switches can be applied, and it must be as a sub-switch of +all: +all -wtags tag1 tag2

To list the tests with their descriptions: +all -wtags tag1 tag2 -info

  • +cmd with a sub-option executes a command

For example +cmd -tagstats prints the tags and the number of tests they are declared in

Assert

The Assert.SameValues(object , object b, BindingFlags bf) compares two objects by-value in depth using reflection. This is useful for template comparison, i.e. setting up an object tree as a passing condition and comparing it with a runner instance at the end of the test. If no BindingFlags are provided only the public members are observed.

Note that collections and enumerations are compared recursively for each item.

The types are reflected once and kept in a static cache, which can be cleared with Assert.ClearTypeCache().

public Task Start(IDictionary<string, List<string>> args)
{
    var model = new
    {
        thisMustBeTrue = false,
        thisSquenceIsSuperImportant = new double[] { 1.012, 0.001, 3.912 },
        innerObj = new { text = "whatever" }
    };

    var comp = new
    {
        thisMustBeTrue = false,
        thisSquenceIsSuperImportant = new double[] { 1.0212, 0.001, 3.912 },
        innerObj = new { text = "whatever" }
    };

    // Test...

    Passed = Assert.SameValues(model, comp);

    return Task.CompletedTask;
}

Print

Use Print to trace info during the test instead of the Console directly for it can be suppressed with -notrace or -noprint. Additionally, all Print methods are synchronized for usage in multi-threaded code if Print.SerializeTraces = true, which is the default value. When no printing is needed Print.IgnoreAll = false will disable it.

Note:
Print will drop traces if awaits more than LockAwaitMS and will throw a TimeoutException if Print.ThrowOnLockTimeout is enabled (false by default). If that behavior is not acceptable one should set Print.SerializeTraces = false and apply external synchronization or use the Console directly.

Records

The SurfaceLauncher keeps records of the activated test types, their input arguments and unhandled exceptions. One could inspect a specific test from the SurfaceRunRecord instance:

var r = new SurfaceLauncher();

r.Start(args1);
r.Start(args2);

var rr = r.RunHistory[runIndex];     // The RunRecord has the run stats
var sr = rr.Tests[testType];         // A SurfaceRunRecord
var test = (TheTestType)sr.Instance; // The activated test

// sr.ArgsMap is a reference to the input map
// sr.Exception is either unhandled or re-thrown by the test.Start

var ts = run.GetTotalStats(); // Aggregates all stats   

Usage

Add a reference to the TestRunner.dll and implement the ITestSurface interface:

public class XYZSurface : ITestSurface
{
    public string Info => "Test description...";
    public string Tags => "tag1, tag2";
    public string FailureMessage { get; private set; }
    public bool? Passed { get; private set; }
    public bool IndependentLaunchOnly => false;
    public bool IsComplete { get; private set; }
	
    public async Task Start(Dictionary<string, List<string>> args)
    {
        try
        {
            // Add +all support  
            if (args.ContainsKey("+all"))
                args.Add("-param", new List<string>() { "10", "1000" });

            // The common path, i.e. either +all or +XYZSurface
            var P = args["-param"];

            // Check for default values  
            if (args.ContainsKey("*")){}

            // Assert...
			
            if (!Passed.HasValue) Passed = true;
            IsComplete = true;
        }
        catch(KnownException x)
        {
            Passed = false;
            FailureMessage = x.Message;
        }
        catch(Exception ex)
        {
            // Not handling or re-throwing an exception will preserve it
            // in the SurfaceRunRecord.Exception property.
        }
    }
}

Start new SurfaceLauncher instance:

using System;
using TestSurface;

namespace Tests
{
    class Program
    {
        static int Main(string[] args)
        {
            var l = new SurfaceLauncher();
           
            // (1) Relay the terminal
            // The args should contain +all or +ITestSurfaceTypeName
            l.Start(args);

            // (2) Or launch specific tests from code
            // Pass each argument as a separate string to preserve spaces 
            l.Start("+TS1", "-option", "with space", "o2", "+TS2");
            l.Start("+TS1", "-option", "o3", "o4");
            
            // Check the Results
            var rs = r.GetTotalStats();
			
            // Inspect specific instance
            var ts = (TS1)r.RunHistory[1].Tests[typeof(TS1)].Instance;
			
            // Get the total failures count
            return rs.Failed > 0 ? -rs.Failed : 0;
        }
    }
}
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.1 is compatible. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
  • .NETStandard 2.1

    • No dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.3.0 533 7/13/2020
1.2.0 572 6/28/2019
1.1.4 491 6/17/2019
1.1.3 533 3/21/2019
1.1.2 513 3/21/2019
1.1.1 524 3/5/2019
1.1.0 519 2/25/2019
1.0.6 534 2/21/2019
1.0.5 592 2/20/2019
1.0.4 586 2/19/2019
1.0.3 605 2/14/2019
1.0.2 598 1/25/2019
1.0.1 574 1/25/2019
1.0.0 657 1/1/2019

Upgraded to .NET standard 2.1