minor fix for bug 9520:
[mono.git] / mcs / class / corlib / Test / System.Runtime.CompilerServices / TaskAwaiterTest_T.cs
1 //
2 // TaskAwaiterTest_T.cs
3 //
4 // Authors:
5 //      Marek Safar  <marek.safar@gmail.com>
6 //
7 // Copyright (C) 2011 Xamarin, Inc (http://www.xamarin.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 //
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 //
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 #if NET_4_5
30
31 using System;
32 using System.Threading;
33 using System.Threading.Tasks;
34 using NUnit.Framework;
35 using System.Runtime.CompilerServices;
36
37 namespace MonoTests.System.Runtime.CompilerServices
38 {
39         [TestFixture]
40         public class TaskAwaiterTest_T
41         {
42                 class MyContext : SynchronizationContext
43                 {
44                         public int PostCounter;
45                         public ManualResetEvent mre = new ManualResetEvent (false);
46
47                         public override void OperationStarted ()
48                         {
49                                 base.OperationStarted ();
50                         }
51
52                         public override void OperationCompleted ()
53                         {
54                                 base.OperationCompleted ();
55                         }
56
57                         public override void Post (SendOrPostCallback d, object state)
58                         {
59                                 ++PostCounter;
60                                 mre.Set ();
61                                 base.Post (d, state);
62                         }
63
64                         public override void Send (SendOrPostCallback d, object state)
65                         {
66                                 base.Send (d, state);
67                         }
68                 }
69
70                 Task<int> task;
71
72                 [Test]
73                 public void GetResultFaulted ()
74                 {
75                         TaskAwaiter<int> awaiter;
76
77                         task = new Task<int> (() => { throw new ApplicationException (); });
78                         awaiter = task.GetAwaiter ();
79                         task.RunSynchronously (TaskScheduler.Current);
80
81
82                         Assert.IsTrue (awaiter.IsCompleted);
83
84                         try {
85                                 awaiter.GetResult ();
86                                 Assert.Fail ();
87                         } catch (ApplicationException) {
88                         }
89                 }
90
91                 [Test]
92                 public void GetResultNotCompleted ()
93                 {
94                         TaskAwaiter<int> awaiter;
95
96                         task = new Task<int> (() => 1);
97                         awaiter = task.GetAwaiter ();
98
99                         try {
100                                 awaiter.GetResult ();
101                                 Assert.Fail ();
102                         } catch (InvalidOperationException) {
103                         }
104                 }
105
106                 [Test]
107                 public void GetResultCanceled ()
108                 {
109                         TaskAwaiter<int> awaiter;
110
111                         var token = new CancellationToken (true);
112                         task = new Task<int> (() => 2, token);
113                         awaiter = task.GetAwaiter ();
114
115                         try {
116                                 awaiter.GetResult ();
117                                 Assert.Fail ();
118                         } catch (TaskCanceledException) {
119                         }
120                 }
121
122                 [Test]
123                 public void ContextTest ()
124                 {
125                         TaskAwaiter awaiter;
126
127                         var task = new Task (() => { throw new ApplicationException (); });
128                         awaiter = task.GetAwaiter ();
129                         task.RunSynchronously (TaskScheduler.Current);
130
131
132                         Assert.IsTrue (awaiter.IsCompleted);
133
134                         try {
135                                 awaiter.GetResult ();
136                                 Assert.Fail ();
137                         } catch (ApplicationException) {
138                         }
139
140                         var context = new MyContext ();
141
142                         var old = SynchronizationContext.Current;
143                         SynchronizationContext.SetSynchronizationContext (context);
144                         try {
145                                 var t = new Task (delegate { });
146                                 var a = t.GetAwaiter ();
147                                 a.OnCompleted (delegate { });
148                                 t.Start ();
149                                 Assert.IsTrue (t.Wait (5000), "#1");
150                         } finally {
151                                 SynchronizationContext.SetSynchronizationContext (old);
152                         }
153
154                         Assert.IsTrue (context.mre.WaitOne (5000), "#2");
155                         Assert.AreEqual (1, context.PostCounter, "#3");
156                 }
157         }
158 }
159
160 #endif