135 lines
4.0 KiB
C#
135 lines
4.0 KiB
C#
|
using System;
|
||
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using NUnit.Framework;
|
||
|
using NUnit.Framework.Interfaces;
|
||
|
using NUnit.Framework.Internal;
|
||
|
using NUnit.Framework.Internal.Commands;
|
||
|
using NUnit.Framework.Internal.Execution;
|
||
|
using UnityEngine.TestRunner.NUnitExtensions;
|
||
|
using Unity.Profiling;
|
||
|
using UnityEngine.TestRunner.NUnitExtensions.Runner;
|
||
|
using UnityEngine.TestTools.TestRunner;
|
||
|
|
||
|
namespace UnityEngine.TestTools
|
||
|
{
|
||
|
internal class EnumerableTestMethodCommand : TestCommand, IEnumerableTestMethodCommand
|
||
|
{
|
||
|
private readonly TestMethod testMethod;
|
||
|
|
||
|
public EnumerableTestMethodCommand(TestMethod testMethod)
|
||
|
: base(testMethod)
|
||
|
{
|
||
|
this.testMethod = testMethod;
|
||
|
}
|
||
|
|
||
|
public IEnumerable ExecuteEnumerable(ITestExecutionContext context)
|
||
|
{
|
||
|
yield return null;
|
||
|
|
||
|
IEnumerator currentExecutingTestEnumerator;
|
||
|
try
|
||
|
{
|
||
|
currentExecutingTestEnumerator = new TestEnumeratorWrapper(testMethod).GetEnumerator(context);
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
context.CurrentResult.RecordException(ex);
|
||
|
yield break;
|
||
|
}
|
||
|
|
||
|
if (currentExecutingTestEnumerator != null)
|
||
|
{
|
||
|
var testEnumeraterYieldInstruction = new TestEnumerator(context, currentExecutingTestEnumerator);
|
||
|
|
||
|
yield return testEnumeraterYieldInstruction;
|
||
|
|
||
|
var enumerator = testEnumeraterYieldInstruction.Execute();
|
||
|
|
||
|
var executingEnumerator = ExecuteEnumerableAndRecordExceptions(enumerator, new EnumeratorContext(context));
|
||
|
while (AdvanceEnumerator(executingEnumerator))
|
||
|
{
|
||
|
yield return executingEnumerator.Current;
|
||
|
}
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
if (context.CurrentResult.ResultState != ResultState.Ignored)
|
||
|
{
|
||
|
context.CurrentResult.SetResult(ResultState.Success);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private bool AdvanceEnumerator(IEnumerator enumerator)
|
||
|
{
|
||
|
using (new ProfilerMarker(testMethod.MethodName).Auto())
|
||
|
return enumerator.MoveNext();
|
||
|
}
|
||
|
|
||
|
private IEnumerator ExecuteEnumerableAndRecordExceptions(IEnumerator enumerator, EnumeratorContext context)
|
||
|
{
|
||
|
while (true)
|
||
|
{
|
||
|
if (context.ExceptionWasRecorded)
|
||
|
{
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
try
|
||
|
{
|
||
|
if (!enumerator.MoveNext())
|
||
|
{
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
catch (Exception ex)
|
||
|
{
|
||
|
context.RecordExceptionWithHint(ex);
|
||
|
break;
|
||
|
}
|
||
|
|
||
|
if (enumerator.Current is IEnumerator nestedEnumerator)
|
||
|
{
|
||
|
yield return ExecuteEnumerableAndRecordExceptions(nestedEnumerator, context);
|
||
|
}
|
||
|
else
|
||
|
{
|
||
|
yield return enumerator.Current;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
private class EnumeratorContext
|
||
|
{
|
||
|
private readonly ITestExecutionContext m_Context;
|
||
|
|
||
|
public EnumeratorContext(ITestExecutionContext context)
|
||
|
{
|
||
|
m_Context = context;
|
||
|
}
|
||
|
|
||
|
public bool ExceptionWasRecorded
|
||
|
{
|
||
|
get;
|
||
|
private set;
|
||
|
}
|
||
|
|
||
|
public void RecordExceptionWithHint(Exception ex)
|
||
|
{
|
||
|
if (ExceptionWasRecorded)
|
||
|
{
|
||
|
return;
|
||
|
}
|
||
|
m_Context.CurrentResult.RecordException(ex);
|
||
|
ExceptionWasRecorded = true;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
public override TestResult Execute(ITestExecutionContext context)
|
||
|
{
|
||
|
throw new NotImplementedException("Use ExecuteEnumerable");
|
||
|
}
|
||
|
}
|
||
|
}
|