System.Drawing: added email to icon and test file headers
[mono.git] / mcs / class / System.Threading.Tasks.Dataflow / Test / System.Threading.Tasks.Dataflow / JoinBlock`3Test.cs
1 // 
2 // JoinBlockTest.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 JoinBlock3Test
39         {
40                 [Test]
41                 public void BasicUsageTest ()
42                 {
43                         Tuple<int, int, int> tuple = null;
44                         var evt = new ManualResetEventSlim (false);
45
46                         var ablock = new ActionBlock<Tuple<int, int, int>> (t => { tuple = t; evt.Set (); });
47                         var block = new JoinBlock<int, int, int> ();
48                         block.LinkTo (ablock);
49
50                         block.Target1.Post (42);
51
52                         evt.Wait (500);
53                         Assert.IsNull (tuple);
54
55                         block.Target2.Post (24);
56
57                         evt.Wait (500);
58                         Assert.IsNull (tuple);
59
60                         block.Target3.Post (44);
61
62                         evt.Wait ();
63                         Assert.IsNotNull (tuple);
64                         Assert.AreEqual (42, tuple.Item1);
65                         Assert.AreEqual (24, tuple.Item2);
66                         Assert.AreEqual (44, tuple.Item3);
67                 }
68         }
69 }