Exemplo n.º 1
0
 internal TestPassedWithDisplayName(
     _TestPassed testPassed,
     string testDisplayName)
 {
     AssemblyUniqueID       = testPassed.AssemblyUniqueID;
     ExecutionTime          = testPassed.ExecutionTime;
     Output                 = testPassed.Output;
     TestCaseUniqueID       = testPassed.TestCaseUniqueID;
     TestClassUniqueID      = testPassed.TestClassUniqueID;
     TestCollectionUniqueID = testPassed.TestCollectionUniqueID;
     TestDisplayName        = testDisplayName;
     TestMethodUniqueID     = testPassed.TestMethodUniqueID;
     TestUniqueID           = testPassed.TestUniqueID;
 }
Exemplo n.º 2
0
    /// <summary>
    /// Runs the test.
    /// </summary>
    /// <param name="ctxt">The context that describes the current test</param>
    /// <returns>Returns summary information about the test that was run.</returns>
    protected async ValueTask <RunSummary> RunAsync(TContext ctxt)
    {
        await ctxt.InitializeAsync();

        try
        {
            SetTestContext(ctxt, TestEngineStatus.Initializing);

            var runSummary = new RunSummary {
                Total = 1
            };
            var output = string.Empty;

            var testAssemblyUniqueID   = ctxt.Test.TestCase.TestCollection.TestAssembly.UniqueID;
            var testCollectionUniqueID = ctxt.Test.TestCase.TestCollection.UniqueID;
            var testClassUniqueID      = ctxt.Test.TestCase.TestClass?.UniqueID;
            var testMethodUniqueID     = ctxt.Test.TestCase.TestMethod?.UniqueID;
            var testCaseUniqueID       = ctxt.Test.TestCase.UniqueID;
            var testUniqueID           = ctxt.Test.UniqueID;

            var testStarting = new _TestStarting
            {
                AssemblyUniqueID       = testAssemblyUniqueID,
                TestCaseUniqueID       = testCaseUniqueID,
                TestClassUniqueID      = testClassUniqueID,
                TestCollectionUniqueID = testCollectionUniqueID,
                TestDisplayName        = ctxt.Test.DisplayName,
                TestMethodUniqueID     = testMethodUniqueID,
                TestUniqueID           = testUniqueID
            };

            if (!ctxt.MessageBus.QueueMessage(testStarting))
            {
                ctxt.CancellationTokenSource.Cancel();
            }
            else
            {
                AfterTestStarting(ctxt);

                _TestResultMessage testResult;

                if (!string.IsNullOrEmpty(ctxt.SkipReason))
                {
                    runSummary.Skipped++;

                    testResult = new _TestSkipped
                    {
                        AssemblyUniqueID       = testAssemblyUniqueID,
                        ExecutionTime          = 0m,
                        Output                 = "",
                        Reason                 = ctxt.SkipReason,
                        TestCaseUniqueID       = testCaseUniqueID,
                        TestClassUniqueID      = testClassUniqueID,
                        TestCollectionUniqueID = testCollectionUniqueID,
                        TestMethodUniqueID     = testMethodUniqueID,
                        TestUniqueID           = testUniqueID
                    };
                }
                else
                {
                    if (!ctxt.Aggregator.HasExceptions)
                    {
                        var tuple = await ctxt.Aggregator.RunAsync(() => InvokeTestAsync(ctxt), (0m, string.Empty));

                        if (tuple.HasValue)
                        {
                            runSummary.Time = tuple.Value.ExecutionTime;
                            output          = tuple.Value.Output;
                        }
                    }

                    var exception = ctxt.Aggregator.ToException();

                    if (exception == null)
                    {
                        testResult = new _TestPassed
                        {
                            AssemblyUniqueID       = testAssemblyUniqueID,
                            ExecutionTime          = runSummary.Time,
                            Output                 = output,
                            TestCaseUniqueID       = testCaseUniqueID,
                            TestClassUniqueID      = testClassUniqueID,
                            TestCollectionUniqueID = testCollectionUniqueID,
                            TestMethodUniqueID     = testMethodUniqueID,
                            TestUniqueID           = testUniqueID
                        };
                    }
                    // We don't want a strongly typed contract here; any exception can be a dynamically
                    // skipped exception so long as its message starts with the special token.
                    else if (exception.Message.StartsWith(DynamicSkipToken.Value))
                    {
                        testResult = new _TestSkipped
                        {
                            AssemblyUniqueID       = testAssemblyUniqueID,
                            ExecutionTime          = runSummary.Time,
                            Output                 = output,
                            Reason                 = exception.Message.Substring(DynamicSkipToken.Value.Length),
                            TestCaseUniqueID       = testCaseUniqueID,
                            TestClassUniqueID      = testClassUniqueID,
                            TestCollectionUniqueID = testCollectionUniqueID,
                            TestMethodUniqueID     = testMethodUniqueID,
                            TestUniqueID           = testUniqueID
                        };
                        runSummary.Skipped++;
                    }
                    else
                    {
                        testResult = _TestFailed.FromException(
                            exception,
                            testAssemblyUniqueID,
                            testCollectionUniqueID,
                            testClassUniqueID,
                            testMethodUniqueID,
                            testCaseUniqueID,
                            testUniqueID,
                            runSummary.Time,
                            output
                            );
                        runSummary.Failed++;
                    }
                }

                SetTestContext(ctxt, TestEngineStatus.CleaningUp, TestState.FromTestResult(testResult));

                if (!ctxt.CancellationTokenSource.IsCancellationRequested)
                {
                    if (!ctxt.MessageBus.QueueMessage(testResult))
                    {
                        ctxt.CancellationTokenSource.Cancel();
                    }
                }

                ctxt.Aggregator.Clear();
                BeforeTestFinished(ctxt);

                if (ctxt.Aggregator.HasExceptions)
                {
                    var testCleanupFailure = _TestCleanupFailure.FromException(
                        ctxt.Aggregator.ToException() !,
                        testAssemblyUniqueID,
                        testCollectionUniqueID,
                        testClassUniqueID,
                        testMethodUniqueID,
                        testCaseUniqueID,
                        testUniqueID
                        );

                    if (!ctxt.MessageBus.QueueMessage(testCleanupFailure))
                    {
                        ctxt.CancellationTokenSource.Cancel();
                    }
                }

                var testFinished = new _TestFinished
                {
                    AssemblyUniqueID       = testAssemblyUniqueID,
                    ExecutionTime          = runSummary.Time,
                    Output                 = output,
                    TestCaseUniqueID       = testCaseUniqueID,
                    TestClassUniqueID      = testClassUniqueID,
                    TestCollectionUniqueID = testCollectionUniqueID,
                    TestMethodUniqueID     = testMethodUniqueID,
                    TestUniqueID           = testUniqueID
                };

                if (!ctxt.MessageBus.QueueMessage(testFinished))
                {
                    ctxt.CancellationTokenSource.Cancel();
                }
            }

            return(runSummary);
        }
        finally
        {
            await ctxt.DisposeAsync();
        }
    }