System.Drawing: added email to icon and test file headers
[mono.git] / mcs / class / System.Threading.Tasks.Dataflow / Test / System.Threading.Tasks.Dataflow / TransformBlockTest.cs
1 // 
2 // TransformBlockTest.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 TransformBlockTest
39         {
40                 [Test]
41                 public void BasicUsageTest ()
42                 {
43                         int[] array = new int[10];
44                         var evt = new ManualResetEventSlim (false);
45                         ActionBlock<int> action = new ActionBlock<int> ((i) => { array[Math.Abs (i)] = i; evt.Set (); });
46                         TransformBlock<int, int> block = new TransformBlock<int, int> (i => -i);
47                         block.LinkTo (action);
48
49                         for (int i = 0; i < array.Length; ++i)
50                                 Assert.IsTrue (block.Post (i), "Not accepted");
51
52                         evt.Wait ();
53
54                         CollectionAssert.AreEqual (new int[] { 0, -1, -2, -3, -4, -5, -6, -7, -8, -9 }, array);
55                 }
56
57                 [Test]
58                 public void DeferredUsageTest ()
59                 {
60                         int[] array = new int[10];
61                         var evt = new ManualResetEventSlim (false);
62                         ActionBlock<int> action = new ActionBlock<int> ((i) => array[Math.Abs (i)] = i);
63                         TransformBlock<int, int> block = new TransformBlock<int, int> (i => -i);
64
65                         for (int i = 0; i < array.Length; ++i)
66                                 Assert.IsTrue (block.Post (i), "Not accepted");
67
68                         Thread.Sleep (1300);
69                         block.LinkTo (action);
70                         Thread.Sleep (600);
71
72                         CollectionAssert.AreEqual (new int[] { 0, -1, -2, -3, -4, -5, -6, -7, -8, -9 }, array);
73                 }
74         }
75 }