| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395 |
- //
- // TaskTest.cs
- //
- // Copyright (c) 2008 Jérémie "Garuma" Laval
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to deal
- // in the Software without restriction, including without limitation the rights
- // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
- // copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
- // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
- // THE SOFTWARE.
- //
- //
- #if NET_4_0
- using System;
- using System.Threading;
- using System.Threading.Tasks;
- using NUnit.Framework;
- namespace MonoTests.System.Threading.Tasks
- {
- [TestFixture]
- public class TaskTests
- {
- Task[] tasks;
- const int max = 6;
-
- [SetUp]
- public void Setup()
- {
- tasks = new Task[max];
- }
-
- void InitWithDelegate(Action action)
- {
- for (int i = 0; i < max; i++) {
- tasks[i] = Task.Factory.StartNew(action);
- }
- }
-
- [Test]
- public void WaitAnyTest()
- {
- ParallelTestHelper.Repeat (delegate {
- int flag = 0;
- int finished = 0;
-
- InitWithDelegate(delegate {
- int times = Interlocked.Exchange (ref flag, 1);
- if (times == 1) {
- SpinWait sw = new SpinWait ();
- while (finished == 0) sw.SpinOnce ();
- } else {
- Interlocked.Increment (ref finished);
- }
- });
-
- int index = Task.WaitAny(tasks, 1000);
-
- Assert.AreNotEqual (-1, index, "#3");
- Assert.AreEqual (1, flag, "#1");
- Assert.AreEqual (1, finished, "#2");
- });
- }
- [Test]
- public void WaitAny_Empty ()
- {
- Assert.AreEqual (-1, Task.WaitAny (new Task[0]));
- }
- [Test]
- public void WaitAny_Zero ()
- {
- Assert.AreEqual (-1, Task.WaitAny (new[] { new Task (delegate { })}, 0), "#1");
- Assert.AreEqual (-1, Task.WaitAny (new[] { new Task (delegate { }) }, 20), "#1");
- }
- [Test]
- public void WaitAny_Cancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { }),
- new Task (delegate { }, cancelation.Token)
- };
- cancelation.Cancel ();
- Assert.AreEqual (1, Task.WaitAny (tasks, 1000), "#1");
- Assert.IsTrue (tasks[1].IsCompleted, "#2");
- Assert.IsTrue (tasks[1].IsCanceled, "#3");
- }
- [Test]
- public void WaitAny_CancelledWithoutExecution ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { }),
- new Task (delegate { })
- };
- int res = 0;
- var mre = new ManualResetEventSlim (false);
- ThreadPool.QueueUserWorkItem (delegate {
- res = Task.WaitAny (tasks, 20);
- mre.Set ();
- });
- cancelation.Cancel ();
- Assert.IsTrue (mre.Wait (1000), "#1");
- Assert.AreEqual (-1, res);
- }
- [Test]
- public void WaitAny_OneException ()
- {
- var mre = new ManualResetEventSlim (false);
- var tasks = new Task[] {
- Task.Factory.StartNew (delegate { mre.Wait (1000); }),
- Task.Factory.StartNew (delegate { throw new ApplicationException (); })
- };
- Assert.AreEqual (1, Task.WaitAny (tasks, 1000), "#1");
- Assert.IsFalse (tasks[0].IsCompleted, "#2");
- Assert.IsTrue (tasks[1].IsFaulted, "#3");
- mre.Set ();
- }
- [Test]
- public void WaitAny_SingleCanceled ()
- {
- var src = new CancellationTokenSource ();
- var t = Task.Factory.StartNew (() => { Thread.Sleep (200); src.Cancel (); src.Token.ThrowIfCancellationRequested (); }, src.Token);
- Assert.AreEqual (0, Task.WaitAny (new [] { t }));
- }
- public void WaitAny_ManyExceptions ()
- {
- CountdownEvent cde = new CountdownEvent (3);
- var tasks = new [] {
- Task.Factory.StartNew (delegate { try { throw new ApplicationException (); } finally { cde.Signal (); } }),
- Task.Factory.StartNew (delegate { try { throw new ApplicationException (); } finally { cde.Signal (); } }),
- Task.Factory.StartNew (delegate { try { throw new ApplicationException (); } finally { cde.Signal (); } })
- };
- Assert.IsTrue (cde.Wait (1000), "#1");
- try {
- Assert.IsTrue (Task.WaitAll (tasks, 1000), "#2");
- } catch (AggregateException e) {
- Assert.AreEqual (3, e.InnerExceptions.Count, "#3");
- }
- }
- [Test]
- public void WaitAny_ManyCanceled ()
- {
- var cancellation = new CancellationToken (true);
- var tasks = new[] {
- Task.Factory.StartNew (delegate { }, cancellation),
- Task.Factory.StartNew (delegate { }, cancellation),
- Task.Factory.StartNew (delegate { }, cancellation)
- };
- try {
- Assert.IsTrue (Task.WaitAll (tasks, 1000), "#1");
- } catch (AggregateException e) {
- Assert.AreEqual (3, e.InnerExceptions.Count, "#2");
- }
- }
-
- [Test]
- public void WaitAllTest()
- {
- ParallelTestHelper.Repeat (delegate {
- int achieved = 0;
- InitWithDelegate(delegate { Interlocked.Increment(ref achieved); });
- Task.WaitAll(tasks);
- Assert.AreEqual(max, achieved, "#1");
- });
- }
- [Test]
- public void WaitAll_ManyTasks ()
- {
- for (int r = 0; r < 2000; ++r) {
- var tasks = new Task[60];
- for (int i = 0; i < tasks.Length; i++) {
- tasks[i] = Task.Factory.StartNew (delegate { Thread.Sleep (0); });
- }
- Assert.IsTrue (Task.WaitAll (tasks, 2000));
- }
- }
- [Test]
- public void WaitAll_Zero ()
- {
- Assert.IsFalse (Task.WaitAll (new Task[1] { new Task (delegate { }) }, 0), "#0");
- Assert.IsFalse (Task.WaitAll (new Task[1] { new Task (delegate { }) }, 10), "#1");
- }
- [Test]
- public void WaitAll_WithExceptions ()
- {
- InitWithDelegate (delegate { throw new ApplicationException (); });
- try {
- Task.WaitAll (tasks);
- Assert.Fail ("#1");
- } catch (AggregateException e) {
- Assert.AreEqual (6, e.InnerExceptions.Count, "#2");
- }
- Assert.IsNotNull (tasks[0].Exception, "#3");
- }
- [Test]
- public void WaitAll_TimeoutWithExceptionsAfter ()
- {
- CountdownEvent cde = new CountdownEvent (2);
- var mre = new ManualResetEvent (false);
- var tasks = new[] {
- Task.Factory.StartNew (delegate { mre.WaitOne (); }),
- Task.Factory.StartNew (delegate { try { throw new ApplicationException (); } finally { cde.Signal (); } }),
- Task.Factory.StartNew (delegate { try { throw new ApplicationException (); } finally { cde.Signal (); } })
- };
- Assert.IsTrue (cde.Wait (100), "#1");
- Assert.IsFalse (Task.WaitAll (tasks, 100), "#2");
- mre.Set ();
- try {
- Assert.IsTrue (Task.WaitAll (tasks, 1000), "#3");
- Assert.Fail ("#4");
- } catch (AggregateException e) {
- Assert.AreEqual (2, e.InnerExceptions.Count, "#5");
- }
- }
- [Test]
- public void WaitAll_TimeoutWithExceptionsBefore ()
- {
- CountdownEvent cde = new CountdownEvent (2);
- var mre = new ManualResetEvent (false);
- var tasks = new[] {
- Task.Factory.StartNew (delegate { try { throw new ApplicationException (); } finally { cde.Signal (); } }),
- Task.Factory.StartNew (delegate { try { throw new ApplicationException (); } finally { cde.Signal (); } }),
- Task.Factory.StartNew (delegate { mre.WaitOne (); })
- };
- Assert.IsTrue (cde.Wait (100), "#1");
- Assert.IsFalse (Task.WaitAll (tasks, 100), "#2");
- mre.Set ();
- try {
- Assert.IsTrue (Task.WaitAll (tasks, 1000), "#3");
- Assert.Fail ("#4");
- } catch (AggregateException e) {
- Assert.AreEqual (2, e.InnerExceptions.Count, "#5");
- }
- }
- [Test]
- public void WaitAll_Cancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { cancelation.Cancel (); }),
- new Task (delegate { }, cancelation.Token)
- };
- tasks[0].Start ();
- try {
- Task.WaitAll (tasks);
- Assert.Fail ("#1");
- } catch (AggregateException e) {
- var inner = (TaskCanceledException) e.InnerException;
- Assert.AreEqual (tasks[1], inner.Task, "#2");
- }
- Assert.IsTrue (tasks[0].IsCompleted, "#3");
- Assert.IsTrue (tasks[1].IsCanceled, "#4");
- }
- [Test]
- public void WaitAllExceptionThenCancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { cancelation.Cancel (); throw new ApplicationException (); }),
- new Task (delegate { }, cancelation.Token)
- };
- tasks[0].Start ();
- try {
- Task.WaitAll (tasks);
- Assert.Fail ("#1");
- } catch (AggregateException e) {
- Assert.IsInstanceOfType (typeof (ApplicationException), e.InnerException, "#2");
- var inner = (TaskCanceledException) e.InnerExceptions[1];
- Assert.AreEqual (tasks[1], inner.Task, "#3");
- }
- Assert.IsTrue (tasks[0].IsCompleted, "#4");
- Assert.IsTrue (tasks[1].IsCanceled, "#5");
- }
- [Test]
- public void WaitAll_StartedUnderWait ()
- {
- var task1 = new Task (delegate { });
- ThreadPool.QueueUserWorkItem (delegate {
- // Sleep little to let task to start and hit internal wait
- Thread.Sleep (20);
- task1.Start ();
- });
- Assert.IsTrue (Task.WaitAll (new [] { task1 }, 1000), "#1");
- }
- [Test]
- public void CancelBeforeStart ()
- {
- var src = new CancellationTokenSource ();
- Task t = new Task (delegate { }, src.Token);
- src.Cancel ();
- Assert.AreEqual (TaskStatus.Canceled, t.Status, "#1");
- try {
- t.Start ();
- Assert.Fail ("#2");
- } catch (InvalidOperationException) {
- }
- }
- [Test]
- public void Wait_CancelledTask ()
- {
- var src = new CancellationTokenSource ();
- Task t = new Task (delegate { }, src.Token);
- src.Cancel ();
- try {
- t.Wait (1000);
- Assert.Fail ("#1");
- } catch (AggregateException e) {
- var details = (TaskCanceledException) e.InnerException;
- Assert.AreEqual (t, details.Task, "#1e");
- }
- try {
- t.Wait ();
- Assert.Fail ("#2");
- } catch (AggregateException e) {
- var details = (TaskCanceledException) e.InnerException;
- Assert.AreEqual (t, details.Task, "#2e");
- Assert.IsNull (details.Task.Exception, "#2e2");
- }
- }
- [Test, ExpectedException (typeof (InvalidOperationException))]
- public void CreationWhileInitiallyCanceled ()
- {
- var token = new CancellationToken (true);
- var task = new Task (() => { }, token);
- Assert.AreEqual (TaskStatus.Canceled, task.Status);
- task.Start ();
- }
- [Test]
- public void ContinueWithInvalidArguments ()
- {
- var task = new Task (() => { });
- try {
- task.ContinueWith (null);
- Assert.Fail ("#1");
- } catch (ArgumentException) {
- }
- try {
- task.ContinueWith (delegate { }, null);
- Assert.Fail ("#2");
- } catch (ArgumentException) {
- }
- try {
- task.ContinueWith (delegate { }, TaskContinuationOptions.OnlyOnCanceled | TaskContinuationOptions.NotOnCanceled);
- Assert.Fail ("#3");
- } catch (ArgumentException) {
- }
- try {
- task.ContinueWith (delegate { }, TaskContinuationOptions.OnlyOnRanToCompletion | TaskContinuationOptions.NotOnRanToCompletion);
- Assert.Fail ("#4");
- } catch (ArgumentException) {
- }
- }
- [Test]
- public void ContinueWithOnAnyTestCase()
- {
- ParallelTestHelper.Repeat (delegate {
- bool result = false;
-
- Task t = Task.Factory.StartNew(delegate { });
- Task cont = t.ContinueWith(delegate { result = true; }, TaskContinuationOptions.None);
- Assert.IsTrue (t.Wait (2000), "First wait, (status, {0})", t.Status);
- Assert.IsTrue (cont.Wait(2000), "Cont wait, (result, {0}) (parent status, {2}) (status, {1})", result, cont.Status, t.Status);
- Assert.IsNull(cont.Exception, "#1");
- Assert.IsNotNull(cont, "#2");
- Assert.IsTrue(result, "#3");
- });
- }
-
- [Test]
- public void ContinueWithOnCompletedSuccessfullyTestCase()
- {
- ParallelTestHelper.Repeat (delegate {
- bool result = false;
-
- Task t = Task.Factory.StartNew(delegate { });
- Task cont = t.ContinueWith(delegate { result = true; }, TaskContinuationOptions.OnlyOnRanToCompletion);
- Assert.IsTrue (t.Wait(1000), "#4");
- Assert.IsTrue (cont.Wait(1000), "#5");
-
- Assert.IsNull(cont.Exception, "#1");
- Assert.IsNotNull(cont, "#2");
- Assert.IsTrue(result, "#3");
- });
- }
-
- [Test]
- public void ContinueWithOnAbortedTestCase()
- {
- bool result = false;
- bool taskResult = false;
- CancellationTokenSource src = new CancellationTokenSource ();
- Task t = new Task (delegate { taskResult = true; }, src.Token);
- Task cont = t.ContinueWith (delegate { result = true; },
- TaskContinuationOptions.OnlyOnCanceled | TaskContinuationOptions.ExecuteSynchronously);
- src.Cancel ();
- Assert.AreEqual (TaskStatus.Canceled, t.Status, "#1a");
- Assert.IsTrue (cont.IsCompleted, "#1b");
- Assert.IsTrue (result, "#1c");
- try {
- t.Start ();
- Assert.Fail ("#2");
- } catch (InvalidOperationException) {
- }
- Assert.IsTrue (cont.Wait (1000), "#3");
- Assert.IsFalse (taskResult, "#4");
- Assert.IsNull (cont.Exception, "#5");
- Assert.AreEqual (TaskStatus.RanToCompletion, cont.Status, "#6");
- }
-
- [Test]
- public void ContinueWithOnFailedTestCase()
- {
- ParallelTestHelper.Repeat (delegate {
- bool result = false;
-
- Task t = Task.Factory.StartNew(delegate { throw new Exception("foo"); });
- Task cont = t.ContinueWith(delegate { result = true; }, TaskContinuationOptions.OnlyOnFaulted);
-
- Assert.IsTrue (cont.Wait(1000), "#0");
- Assert.IsNotNull (t.Exception, "#1");
- Assert.IsNotNull (cont, "#2");
- Assert.IsTrue (result, "#3");
- });
- }
- [Test]
- public void ContinueWithWithStart ()
- {
- Task t = new Task<int> (() => 1);
- t = t.ContinueWith (l => { });
- try {
- t.Start ();
- Assert.Fail ();
- } catch (InvalidOperationException) {
- }
- }
- [Test]
- public void ContinueWithChildren ()
- {
- ParallelTestHelper.Repeat (delegate {
- bool result = false;
- var t = Task.Factory.StartNew (() => Task.Factory.StartNew (() => {}, TaskCreationOptions.AttachedToParent));
- var mre = new ManualResetEvent (false);
- t.ContinueWith (l => {
- result = true;
- mre.Set ();
- });
- Assert.IsTrue (mre.WaitOne (1000), "#1");
- Assert.IsTrue (result, "#2");
- }, 2);
- }
- [Test]
- public void MultipleTasks()
- {
- ParallelTestHelper.Repeat (delegate {
- bool r1 = false, r2 = false, r3 = false;
-
- Task t1 = Task.Factory.StartNew(delegate {
- r1 = true;
- });
- Task t2 = Task.Factory.StartNew(delegate {
- r2 = true;
- });
- Task t3 = Task.Factory.StartNew(delegate {
- r3 = true;
- });
-
- t1.Wait(2000);
- t2.Wait(2000);
- t3.Wait(2000);
-
- Assert.IsTrue(r1, "#1");
- Assert.IsTrue(r2, "#2");
- Assert.IsTrue(r3, "#3");
- }, 100);
- }
-
- [Test]
- public void WaitChildTestCase()
- {
- ParallelTestHelper.Repeat (delegate {
- bool r1 = false, r2 = false, r3 = false;
- var mre = new ManualResetEvent (false);
-
- Task t = Task.Factory.StartNew(delegate {
- Task.Factory.StartNew(delegate {
- r1 = true;
- mre.Set ();
- }, TaskCreationOptions.AttachedToParent);
- Task.Factory.StartNew(delegate {
- Assert.IsTrue (mre.WaitOne (1000), "#0");
-
- r2 = true;
- }, TaskCreationOptions.AttachedToParent);
- Task.Factory.StartNew(delegate {
- Assert.IsTrue (mre.WaitOne (1000), "#0");
-
- r3 = true;
- }, TaskCreationOptions.AttachedToParent);
- });
-
- Assert.IsTrue (t.Wait(2000), "#0");
- Assert.IsTrue(r2, "#1");
- Assert.IsTrue(r3, "#2");
- Assert.IsTrue(r1, "#3");
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#4");
- }, 10);
- }
- [Test]
- public void WaitChildWithContinuationAttachedTest ()
- {
- bool result = false;
- var task = new Task(() =>
- {
- Task.Factory.StartNew(() => {
- Thread.Sleep (200);
- }, TaskCreationOptions.AttachedToParent).ContinueWith(t => {
- Thread.Sleep (200);
- result = true;
- }, TaskContinuationOptions.AttachedToParent);
- });
- task.Start();
- task.Wait();
- Assert.IsTrue (result);
- }
- [Test]
- public void WaitChildWithContinuationNotAttachedTest ()
- {
- var task = new Task(() =>
- {
- Task.Factory.StartNew(() => {
- Thread.Sleep (200);
- }, TaskCreationOptions.AttachedToParent).ContinueWith(t => {
- Thread.Sleep (3000);
- });
- });
- task.Start();
- Assert.IsTrue (task.Wait(400));
- }
- [Test]
- public void WaitChildWithNesting ()
- {
- var result = false;
- var t = Task.Factory.StartNew (() => {
- Task.Factory.StartNew (() => {
- Task.Factory.StartNew (() => {
- Thread.Sleep (500);
- result = true;
- }, TaskCreationOptions.AttachedToParent);
- }, TaskCreationOptions.AttachedToParent);
- });
- t.Wait ();
- Assert.IsTrue (result);
- }
- [Test]
- public void DoubleWaitTest ()
- {
- ParallelTestHelper.Repeat (delegate {
- Console.WriteLine ("run");
- var evt = new ManualResetEventSlim ();
- var t = Task.Factory.StartNew (() => evt.Wait (2000));
- var cntd = new CountdownEvent (2);
- bool r1 = false, r2 = false;
- ThreadPool.QueueUserWorkItem (delegate { cntd.Signal (); r1 = t.Wait (1000); Console.WriteLine ("out 1 {0}", r1); cntd.Signal (); });
- ThreadPool.QueueUserWorkItem (delegate { cntd.Signal (); r2 = t.Wait (1000); Console.WriteLine ("out 2 {0}", r2); cntd.Signal (); });
- cntd.Wait (2000);
- cntd.Reset ();
- evt.Set ();
- cntd.Wait (2000);
- Assert.IsTrue (r1);
- Assert.IsTrue (r2);
- }, 5);
- }
- [Test]
- public void DoubleTimeoutedWaitTest ()
- {
- var evt = new ManualResetEventSlim ();
- var t = new Task (delegate { });
- var cntd = new CountdownEvent (2);
- bool r1 = false, r2 = false;
- ThreadPool.QueueUserWorkItem (delegate { r1 = !t.Wait (100); cntd.Signal (); });
- ThreadPool.QueueUserWorkItem (delegate { r2 = !t.Wait (100); cntd.Signal (); });
- cntd.Wait (2000);
- Assert.IsTrue (r1);
- Assert.IsTrue (r2);
- }
- [Test]
- public void ExecuteSynchronouslyTest ()
- {
- var val = 0;
- Task t = new Task (() => { Thread.Sleep (100); val = 1; });
- t.RunSynchronously ();
- Assert.AreEqual (1, val);
- }
- [Test]
- public void RunSynchronouslyArgumentChecks ()
- {
- Task t = new Task (() => { });
- try {
- t.RunSynchronously (null);
- Assert.Fail ("#1");
- } catch (ArgumentNullException) {
- }
- }
- [Test]
- public void RunSynchronouslyWithAttachedChildren ()
- {
- var result = false;
- var t = new Task (() => {
- Task.Factory.StartNew (() => { Thread.Sleep (500); result = true; }, TaskCreationOptions.AttachedToParent);
- });
- t.RunSynchronously ();
- Assert.IsTrue (result);
- }
- [Test]
- public void UnobservedExceptionOnFinalizerThreadTest ()
- {
- bool wasCalled = false;
- TaskScheduler.UnobservedTaskException += (o, args) => {
- wasCalled = true;
- args.SetObserved ();
- };
- var inner = new ApplicationException ();
- Task.Factory.StartNew (() => { throw inner; });
- Thread.Sleep (1000);
- GC.Collect ();
- Thread.Sleep (1000);
- GC.WaitForPendingFinalizers ();
- Assert.IsTrue (wasCalled);
- }
- [Test, ExpectedException (typeof (InvalidOperationException))]
- public void StartFinishedTaskTest ()
- {
- var t = Task.Factory.StartNew (delegate () { });
- t.Wait ();
- t.Start ();
- }
- [Test]
- public void Start_NullArgument ()
- {
- var t = Task.Factory.StartNew (delegate () { });
- try {
- t.Start (null);
- Assert.Fail ();
- } catch (ArgumentNullException) {
- }
- }
- [Test, ExpectedException (typeof (InvalidOperationException))]
- public void DisposeUnstartedTest ()
- {
- var t = new Task (() => { });
- t.Dispose ();
- }
- [Test]
- public void ThrowingUnrelatedCanceledExceptionTest ()
- {
- Task t = new Task (() => {
- throw new TaskCanceledException ();
- });
- t.RunSynchronously ();
- Assert.IsTrue (t.IsFaulted);
- Assert.IsFalse (t.IsCanceled);
- }
- #if NET_4_5
- [Test]
- public void Delay_Invalid ()
- {
- try {
- Task.Delay (-100);
- } catch (ArgumentOutOfRangeException) {
- }
- }
- [Test]
- public void Delay_Start ()
- {
- var t = Task.Delay (5000);
- try {
- t.Start ();
- } catch (InvalidOperationException) {
- }
- }
- [Test]
- public void Delay_Simple ()
- {
- var t = Task.Delay (100);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- Assert.IsTrue (t.Wait (110), "#2");
- }
- [Test]
- public void Delay_Cancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var t = Task.Delay (1000, cancelation.Token);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- cancelation.Cancel ();
- Assert.AreEqual (TaskStatus.Canceled, t.Status, "#2");
- }
- [Test]
- public void WaitAny_WithNull ()
- {
- var tasks = new [] {
- Task.FromResult (2),
- null
- };
- try {
- Task.WaitAny (tasks);
- Assert.Fail ();
- } catch (ArgumentException) {
- }
- }
- [Test]
- public void WhenAll_WithNull ()
- {
- var tasks = new[] {
- Task.FromResult (2),
- null
- };
- try {
- Task.WhenAll (tasks);
- Assert.Fail ("#1");
- } catch (ArgumentException) {
- }
- tasks = null;
- try {
- Task.WhenAll (tasks);
- Assert.Fail ("#2");
- } catch (ArgumentException) {
- }
- }
- [Test]
- public void WhenAll_Start ()
- {
- Task[] tasks = new[] {
- Task.FromResult (2),
- };
- var t = Task.WhenAll (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- try {
- t.Start ();
- Assert.Fail ("#2");
- } catch (InvalidOperationException) {
- }
- tasks = new [] {
- new Task (delegate { }),
- };
- t = Task.WhenAll (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#11");
- try {
- t.Start ();
- Assert.Fail ("#12");
- } catch (InvalidOperationException) {
- }
- }
- [Test]
- public void WhenAll_Cancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { }),
- new Task (delegate { }, cancelation.Token)
- };
- cancelation.Cancel ();
- var t = Task.WhenAll (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- tasks[0].Start ();
- try {
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.Fail ("#2a");
- } catch (AggregateException e) {
- Assert.IsInstanceOfType (typeof (TaskCanceledException), e.InnerException, "#3");
- }
- }
- [Test]
- public void WhenAll_Faulted ()
- {
- var tcs = new TaskCompletionSource<object> ();
- tcs.SetException (new ApplicationException ());
- var tcs2 = new TaskCompletionSource<object> ();
- tcs2.SetException (new InvalidTimeZoneException ());
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { }),
- new Task (delegate { }, cancelation.Token),
- tcs.Task,
- tcs2.Task
- };
- cancelation.Cancel ();
- var t = Task.WhenAll (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- tasks[0].Start ();
- try {
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.Fail ("#2a");
- } catch (AggregateException e) {
- Assert.IsInstanceOfType (typeof (ApplicationException), e.InnerException, "#3");
- Assert.IsInstanceOfType (typeof (InvalidTimeZoneException), e.InnerExceptions[1], "#4");
- }
- }
- [Test]
- public void WhenAll ()
- {
- var t1 = new Task (delegate { });
- var t2 = new Task (delegate { t1.Start (); });
- var tasks = new Task[] {
- t1,
- t2,
- };
- var t = Task.WhenAll (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- t2.Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- }
- [Test]
- public void WhenAllResult_WithNull ()
- {
- var tasks = new[] {
- Task.FromResult (2),
- null
- };
- try {
- Task.WhenAll<int> (tasks);
- Assert.Fail ("#1");
- } catch (ArgumentException) {
- }
- tasks = null;
- try {
- Task.WhenAll<int> (tasks);
- Assert.Fail ("#2");
- } catch (ArgumentException) {
- }
- }
- [Test]
- public void WhenAllResult_Cancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new [] {
- new Task<int> (delegate { return 9; }),
- new Task<int> (delegate { return 1; }, cancelation.Token)
- };
- cancelation.Cancel ();
- var t = Task.WhenAll (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- tasks[0].Start ();
- try {
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.Fail ("#2a");
- } catch (AggregateException e) {
- Assert.IsInstanceOfType (typeof (TaskCanceledException), e.InnerException, "#3");
- }
- try {
- var r = t.Result;
- Assert.Fail ("#4");
- } catch (AggregateException) {
- }
- }
- [Test]
- public void WhenAllResult ()
- {
- var t1 = new Task<string> (delegate { return "a"; });
- var t2 = new Task<string> (delegate { t1.Start (); return "b"; });
- var tasks = new [] {
- t1,
- t2,
- };
- var t = Task.WhenAll<string> (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- t2.Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.AreEqual (2, t.Result.Length, "#3");
- Assert.AreEqual ("a", t.Result[0], "#3a");
- Assert.AreEqual ("b", t.Result[1], "#3b");
- }
- [Test]
- public void WhenAllResult_Completed ()
- {
- var tasks = new[] {
- Task.FromResult (1),
- Task.FromResult (2)
- };
- var t = Task.WhenAll<int> (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- Assert.AreEqual (2, t.Result.Length, "#2");
- Assert.AreEqual (1, t.Result[0], "#2a");
- Assert.AreEqual (2, t.Result[1], "#2b");
- }
- [Test]
- public void WhenAny_WithNull ()
- {
- var tasks = new Task[] {
- Task.FromResult (2),
- null
- };
- try {
- Task.WhenAny (tasks);
- Assert.Fail ("#1");
- } catch (ArgumentException) {
- }
- tasks = null;
- try {
- Task.WhenAny (tasks);
- Assert.Fail ("#2");
- } catch (ArgumentException) {
- }
- try {
- Task.WhenAny (new Task[0]);
- Assert.Fail ("#3");
- } catch (ArgumentException) {
- }
- }
- [Test]
- public void WhenAny_Start ()
- {
- Task[] tasks = new[] {
- Task.FromResult (2),
- };
- var t = Task.WhenAny (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- try {
- t.Start ();
- Assert.Fail ("#2");
- } catch (InvalidOperationException) {
- }
- tasks = new[] {
- new Task (delegate { }),
- };
- t = Task.WhenAny (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#11");
- try {
- t.Start ();
- Assert.Fail ("#12");
- } catch (InvalidOperationException) {
- }
- }
- [Test]
- public void WhenAny_Cancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { }),
- new Task (delegate { }, cancelation.Token)
- };
- cancelation.Cancel ();
- var t = Task.WhenAny (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- tasks[0].Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.AreEqual (TaskStatus.Canceled, t.Result.Status, "#3");
- }
- [Test]
- public void WhenAny_Faulted ()
- {
- var tcs = new TaskCompletionSource<object> ();
- tcs.SetException (new ApplicationException ());
- var tcs2 = new TaskCompletionSource<object> ();
- tcs2.SetException (new InvalidTimeZoneException ());
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task[] {
- new Task (delegate { }),
- tcs.Task,
- new Task (delegate { }, cancelation.Token),
- tcs2.Task
- };
- cancelation.Cancel ();
- var t = Task.WhenAny (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- tasks[0].Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.IsNull (t.Exception, "#3");
- Assert.IsInstanceOfType (typeof (ApplicationException), t.Result.Exception.InnerException, "#4");
- }
- [Test]
- public void WhenAny ()
- {
- var t1 = new Task (delegate { });
- var t2 = new Task (delegate { t1.Start (); });
- var tasks = new Task[] {
- t1,
- t2,
- };
- var t = Task.WhenAny (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- t2.Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.IsNotNull (t.Result, "#3");
- }
- [Test]
- public void WhenAnyResult_WithNull ()
- {
- var tasks = new [] {
- Task.FromResult (2),
- null
- };
- try {
- Task.WhenAny<int> (tasks);
- Assert.Fail ("#1");
- } catch (ArgumentException) {
- }
- tasks = null;
- try {
- Task.WhenAny<int> (tasks);
- Assert.Fail ("#2");
- } catch (ArgumentException) {
- }
- try {
- Task.WhenAny<short> (new Task<short>[0]);
- Assert.Fail ("#3");
- } catch (ArgumentException) {
- }
- }
- [Test]
- public void WhenAnyResult_Start ()
- {
- var tasks = new[] {
- Task.FromResult (2),
- };
- var t = Task.WhenAny<int> (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- try {
- t.Start ();
- Assert.Fail ("#2");
- } catch (InvalidOperationException) {
- }
- tasks = new[] {
- new Task<int> (delegate { return 55; }),
- };
- t = Task.WhenAny<int> (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#11");
- try {
- t.Start ();
- Assert.Fail ("#12");
- } catch (InvalidOperationException) {
- }
- }
- [Test]
- public void WhenAnyResult_Cancelled ()
- {
- var cancelation = new CancellationTokenSource ();
- var tasks = new [] {
- new Task<double> (delegate { return 1.1; }),
- new Task<double> (delegate { return -4.4; }, cancelation.Token)
- };
- cancelation.Cancel ();
- var t = Task.WhenAny<double> (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- tasks[0].Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.AreEqual (TaskStatus.Canceled, t.Result.Status, "#3");
- }
- [Test]
- public void WhenAnyResult_Faulted ()
- {
- var tcs = new TaskCompletionSource<object> ();
- tcs.SetException (new ApplicationException ());
- var tcs2 = new TaskCompletionSource<object> ();
- tcs2.SetException (new InvalidTimeZoneException ());
- var cancelation = new CancellationTokenSource ();
- var tasks = new Task<object>[] {
- new Task<object> (delegate { return null; }),
- tcs.Task,
- new Task<object> (delegate { return ""; }, cancelation.Token),
- tcs2.Task
- };
- cancelation.Cancel ();
- var t = Task.WhenAny<object> (tasks);
- Assert.AreEqual (TaskStatus.RanToCompletion, t.Status, "#1");
- tasks[0].Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.IsNull (t.Exception, "#3");
- Assert.IsInstanceOfType (typeof (ApplicationException), t.Result.Exception.InnerException, "#4");
- }
- [Test]
- public void WhenAnyResult ()
- {
- var t1 = new Task<byte> (delegate { return 3; });
- var t2 = new Task<byte> (delegate { t1.Start (); return 2; });
- var tasks = new [] {
- t1,
- t2,
- };
- var t = Task.WhenAny<byte> (tasks);
- Assert.AreEqual (TaskStatus.WaitingForActivation, t.Status, "#1");
- t2.Start ();
- Assert.IsTrue (t.Wait (1000), "#2");
- Assert.IsTrue (t.Result.Result > 1, "#3");
- }
- [Test]
- public void ContinueWith_StateValue ()
- {
- var t = Task.Factory.StartNew (l => {
- Assert.AreEqual (1, l, "a-1");
- }, 1);
- var c = t.ContinueWith ((a, b) => {
- Assert.AreEqual (t, a, "c-1");
- Assert.AreEqual (2, b, "c-2");
- }, 2);
- var d = t.ContinueWith ((a, b) => {
- Assert.AreEqual (t, a, "d-1");
- Assert.AreEqual (3, b, "d-2");
- return 77;
- }, 3);
- Assert.IsTrue (d.Wait (1000), "#1");
- Assert.AreEqual (1, t.AsyncState, "#2");
- Assert.AreEqual (2, c.AsyncState, "#3");
- Assert.AreEqual (3, d.AsyncState, "#4");
- }
- [Test]
- public void ContinueWith_StateValueGeneric ()
- {
- var t = Task<int>.Factory.StartNew (l => {
- Assert.AreEqual (1, l, "a-1");
- return 80;
- }, 1);
- var c = t.ContinueWith ((a, b) => {
- Assert.AreEqual (t, a, "c-1");
- Assert.AreEqual (2, b, "c-2");
- return "c";
- }, 2);
- var d = t.ContinueWith ((a, b) => {
- Assert.AreEqual (t, a, "d-1");
- Assert.AreEqual (3, b, "d-2");
- return 'd';
- }, 3);
- Assert.IsTrue (d.Wait (1000), "#1");
- Assert.AreEqual (1, t.AsyncState, "#2");
- Assert.AreEqual (80, t.Result, "#2r");
- Assert.AreEqual (2, c.AsyncState, "#3");
- Assert.AreEqual ("c", c.Result, "#3r");
- Assert.AreEqual (3, d.AsyncState, "#4");
- Assert.AreEqual ('d', d.Result, "#3r");
- }
- [Test]
- public void FromResult ()
- {
- var t = Task.FromResult<object> (null);
- Assert.IsTrue (t.IsCompleted, "#1");
- Assert.AreEqual (null, t.Result, "#2");
- t.Dispose ();
- t.Dispose ();
- }
- [Test]
- public void Run_ArgumentCheck ()
- {
- try {
- Task.Run (null as Action);
- Assert.Fail ("#1");
- } catch (ArgumentNullException) {
- }
- }
- [Test]
- public void Run ()
- {
- var t = Task.Run (delegate { });
- Assert.AreEqual (TaskCreationOptions.DenyChildAttach, t.CreationOptions, "#1");
- t.Wait ();
- }
- [Test]
- public void Run_Cancel ()
- {
- var t = Task.Run (() => 1, new CancellationToken (true));
- try {
- var r = t.Result;
- Assert.Fail ("#1");
- } catch (AggregateException) {
- }
- Assert.IsTrue (t.IsCanceled, "#2");
- }
- [Test]
- public void Run_ExistingTask ()
- {
- var t = new Task<int> (() => 5);
- var t2 = Task.Run (() => { t.Start (); return t; });
- Assert.IsTrue (t2.Wait (1000), "#1");
- Assert.AreEqual (5, t2.Result, "#2");
- }
- #endif
- }
- }
- #endif
|