Skip to content

Commit c09b324

Browse files
committed
Replace app termination with test complete event as referenced by issues nunit#114 and nunit#116.
1 parent e56ae34 commit c09b324

File tree

8 files changed

+61
-42
lines changed

8 files changed

+61
-42
lines changed

src/nunit.xamarin/Helpers/ResultSummary.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ namespace NUnit.Runner.Helpers
3535
/// <summary>
3636
/// Helper class used to summarize the result of a test run.
3737
/// </summary>
38-
internal class ResultSummary
38+
public class ResultSummary
3939
{
4040
#region Private Fields
4141

@@ -160,7 +160,7 @@ public TimeSpan Duration
160160
/// Constructs a <see cref="ResultSummary"/> helper to summarize the <see cref="TestRunResult"/>.
161161
/// </summary>
162162
/// <param name="results">The test run results to summarize</param>
163-
public ResultSummary(TestRunResult results)
163+
internal ResultSummary(TestRunResult results)
164164
{
165165
_results = results;
166166
Initialize();

src/nunit.xamarin/Properties/Annotations.cs

-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
using System;
22

3-
#pragma warning disable 1591
43
// ReSharper disable UnusedMember.Global
54
// ReSharper disable UnusedParameter.Local
65
// ReSharper disable MemberCanBePrivate.Global

src/nunit.xamarin/Services/TestOptions.cs

+37-5
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,8 @@
2323

2424
using System;
2525
using System.IO;
26+
using System.Threading.Tasks;
27+
using NUnit.Runner.Helpers;
2628

2729
namespace NUnit.Runner.Services
2830
{
@@ -47,11 +49,6 @@ public class TestOptions
4749
/// </summary>
4850
public bool AutoRun { get; set; }
4951

50-
/// <summary>
51-
/// Gets or sets if the application will terminate automatically after running the tests.
52-
/// </summary>
53-
public bool TerminateAfterExecution { get; set; }
54-
5552
/// <summary>
5653
/// Gets information about the tcp listener host and port.
5754
/// </summary>
@@ -70,6 +67,21 @@ public class TestOptions
7067

7168
#endregion
7269

70+
#region Events
71+
72+
/// <summary>
73+
/// Delegate executed when the test run has completed.
74+
/// </summary>
75+
/// <param name="testResults">The results of the test run.</param>
76+
public delegate void TestRunCompleted(ResultSummary testResults);
77+
78+
/// <summary>
79+
/// Event fired when the test run has completed.
80+
/// </summary>
81+
public event TestRunCompleted OnTestRunCompleted;
82+
83+
#endregion
84+
7385
#region Constructors
7486

7587
/// <summary>
@@ -82,5 +94,25 @@ public TestOptions()
8294
}
8395

8496
#endregion
97+
98+
#region Internal Methods
99+
100+
/// <summary>
101+
/// Invokes <see cref="OnTestRunCompleted"/> when the test run has completed.
102+
/// </summary>
103+
/// <param name="testResults">The results of the test run.</param>
104+
internal async Task InvokeOnTestRunCompleted(ResultSummary testResults)
105+
{
106+
if (OnTestRunCompleted != null)
107+
{
108+
await Task.Run(() => OnTestRunCompleted?.Invoke(testResults));
109+
}
110+
else
111+
{
112+
await Task.CompletedTask;
113+
}
114+
}
115+
116+
#endregion
85117
}
86118
}

src/nunit.xamarin/ViewModel/SummaryViewModel.cs

+6-24
Original file line numberDiff line numberDiff line change
@@ -156,11 +156,11 @@ public SummaryViewModel()
156156
// Set the commands to display the results
157157
ViewAllResultsCommand = new Command(
158158
async o => await Navigation.PushAsync(
159-
new ResultsView(new ResultsViewModel(_results.GetTestResults(), true))),
159+
new ResultsView(new ResultsViewModel(Results.GetTestResults(), true))),
160160
o => !HasResults);
161161
ViewFailedResultsCommand = new Command(
162162
async o => await Navigation.PushAsync(
163-
new ResultsView(new ResultsViewModel(_results.GetTestResults(), false))),
163+
new ResultsView(new ResultsViewModel(Results.GetTestResults(), false))),
164164
o => !HasResults);
165165

166166
// ReSharper restore AsyncVoidLambda
@@ -219,36 +219,18 @@ private async Task ExecuteTestsAsync()
219219
_resultProcessor = TestResultProcessor.BuildChainOfResponsibility(Options);
220220
await _resultProcessor.Process(summary).ConfigureAwait(false);
221221

222-
// Report results
222+
// Report results on main thread as setting these properties will invoke binding updates
223223
Device.BeginInvokeOnMainThread(
224-
() =>
224+
// ReSharper disable once AsyncVoidLambda
225+
async () =>
225226
{
226227
Results = summary;
227228
Running = false;
228229

229-
if (Options.TerminateAfterExecution)
230-
{
231-
TerminateWithSuccess();
232-
}
230+
await Options.InvokeOnTestRunCompleted(summary);
233231
});
234232
}
235233

236-
/// <summary>
237-
/// Terminates the test runner.
238-
/// </summary>
239-
/// <remarks>This method is platform specific and not always guaranteed to work.</remarks>
240-
private static void TerminateWithSuccess()
241-
{
242-
#if __IOS__
243-
var selector = new ObjCRuntime.Selector("terminateWithSuccess");
244-
UIKit.UIApplication.SharedApplication.PerformSelector(selector, UIKit.UIApplication.SharedApplication, 0);
245-
#elif __DROID__
246-
System.Environment.Exit(0);
247-
#elif WINDOWS_UWP
248-
Windows.UI.Xaml.Application.Current.Exit();
249-
#endif
250-
}
251-
252234
#endregion
253235
}
254236
}

tests/nunit.runner.tests.Droid/MainActivity.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -56,9 +56,6 @@ protected override void OnCreate(Bundle savedInstanceState)
5656
// otherwise you must run them manually.
5757
AutoRun = true,
5858

59-
// If True, the application will terminate automatically after running the tests.
60-
//TerminateAfterExecution = true,
61-
6259
// Information about the tcp listener host and port.
6360
// For now, send result as XML to the listening server.
6461
//TcpWriterParameters = new TcpWriterInfo("192.168.0.108", 13000),
@@ -71,6 +68,9 @@ protected override void OnCreate(Bundle savedInstanceState)
7168
Environment.DirectoryDownloads ?? string.Empty, "Nunit", "Results.xml")
7269
};
7370

71+
// Sets the command to execute after running the tests such as custom handling of the results or exiting the application.
72+
//nunit.Options.OnTestRunCompleted += (testResults) => System.Environment.Exit(0);
73+
7474
LoadApplication(nunit);
7575
}
7676
}

tests/nunit.runner.tests.iOS/AppDelegate.cs

+8-3
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,6 @@ public override bool FinishedLaunching(UIApplication app, NSDictionary options)
6464
// otherwise you must run them manually.
6565
AutoRun = true,
6666

67-
// If True, the application will terminate automatically after running the tests.
68-
//TerminateAfterExecution = true,
69-
7067
// Information about the tcp listener host and port.
7168
// For now, send result as XML to the listening server.
7269
//TcpWriterParameters = new TcpWriterInfo("192.168.0.108", 13000),
@@ -81,6 +78,14 @@ public override bool FinishedLaunching(UIApplication app, NSDictionary options)
8178
NSSearchPathDomain.User)[0].Path, "Results.xml")
8279
};
8380

81+
// Sets the command to execute after running the tests such as custom handling of the results or exiting the application.
82+
//nunit.Options.OnTestRunCompleted += (testResults) =>
83+
//{
84+
// ObjCRuntime.Selector selector = new ObjCRuntime.Selector("terminateWithSuccess");
85+
// UIKit.UIApplication.SharedApplication.PerformSelector(selector, UIKit.UIApplication.SharedApplication,
86+
// 0);
87+
//};
88+
8489
LoadApplication(nunit);
8590

8691
return base.FinishedLaunching(app, options);

tests/nunit.runner.tests.uwp/MainPage.xaml.cs

+4-3
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,6 @@ public MainPage()
5252
// otherwise you must run them manually.
5353
AutoRun = true,
5454

55-
// If True, the application will terminate automatically after running the tests.
56-
//TerminateAfterExecution = true,
57-
5855
// Information about the tcp listener host and port.
5956
// For now, send result as XML to the listening server.
6057
// NOTE: Your UWP App must have Private Networks capability enabled
@@ -67,6 +64,10 @@ public MainPage()
6764
// ResultFilePath = System.IO.Path.Combine(Windows.Storage.ApplicationData.Current.TemporaryFolder.Path, "Nunit", "Results.xml")
6865
};
6966

67+
// Sets the command to execute after running the tests such as custom handling of the results or exiting the application.
68+
//nunit.Options.OnTestRunCompleted += (testResults) => Windows.UI.Xaml.Application.Current.Exit();
69+
70+
7071
LoadApplication(nunit);
7172
}
7273
}

tests/nunit.runner.tests.uwp/Properties/Default.rd.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
<TypeInstantiation Name="App1.AppClass" Arguments="System.Int32" Activate="Required Public" />
1313
1414
Using the Namespace directive to apply reflection policy to all the types in a particular namespace
15-
<Namespace Name="DataClasses.ViewModels" Seralize="All" />
15+
<Namespace Name="DataClasses.ViewModels" Serialize="All" />
1616
-->
1717

1818
<Directives xmlns="http://schemas.microsoft.com/netfx/2013/01/metadata">

0 commit comments

Comments
 (0)