Update mcs/class/Commons.Xml.Relaxng/Commons.Xml.Relaxng/RelaxngPattern.cs
[mono.git] / mcs / class / System.Threading.Tasks.Dataflow / Test / System.Threading.Tasks.Dataflow / ActionBlockTest.cs
1 // 
2 // ActionBlockTest.cs
3 //  
4 // Author:
5 //       Jérémie "garuma" Laval <jeremie.laval@gmail.com>
6 // 
7 // Copyright (c) 2011 Jérémie "garuma" Laval
8 // 
9 // Permission is hereby granted, free of charge, to any person obtaining a copy
10 // of this software and associated documentation files (the "Software"), to deal
11 // in the Software without restriction, including without limitation the rights
12 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13 // copies of the Software, and to permit persons to whom the Software is
14 // furnished to do so, subject to the following conditions:
15 // 
16 // The above copyright notice and this permission notice shall be included in
17 // all copies or substantial portions of the Software.
18 // 
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25 // THE SOFTWARE.
26
27 using System;
28 using System.Linq;
29 using System.Threading;
30 using System.Threading.Tasks;
31 using System.Threading.Tasks.Dataflow;
32
33 using NUnit.Framework;
34
35 namespace MonoTests.System.Threading.Tasks.Dataflow
36 {
37         [TestFixture]
38         public class ActionBlockTest
39         {
40                 [Test]
41                 public void BasicUsageTest ()
42                 {
43                         bool[] array = new bool[3];
44                         CountdownEvent evt = new CountdownEvent (array.Length);
45                         ActionBlock<int> block = new ActionBlock<int> ((i) => { array[i] = true; evt.Signal (); });
46
47                         for (int i = 0; i < array.Length; ++i)
48                                 Assert.IsTrue (block.Post (i), "Not accepted");
49
50                         evt.Wait ();
51                         
52                         Assert.IsTrue (array.All (b => b), "Some false");
53                 }
54
55                 [Test]
56                 public void CompleteTest ()
57                 {
58                         ActionBlock<int> block = new ActionBlock<int> ((i) => Thread.Sleep (100));
59
60                         for (int i = 0; i < 10; i++)
61                                 Assert.IsTrue (block.Post (i), "Not Accepted");
62
63                         block.Complete ();
64                         // Still element to be processed so Completion should be false
65                         Assert.IsFalse (block.Completion.IsCompleted);
66                         block.Completion.Wait ();
67                         Assert.IsTrue (block.Completion.IsCompleted);
68                 }
69         }
70 }