Merge pull request #1870 from saper/langinfo_h
[mono.git] / mcs / class / System / Test / System.Threading / BarrierTest.cs
1 // BarrierTest.cs
2 //
3 // Copyright (c) 2010 Jérémie "Garuma" Laval
4 //
5 // Permission is hereby granted, free of charge, to any person obtaining a copy
6 // of this software and associated documentation files (the "Software"), to deal
7 // in the Software without restriction, including without limitation the rights
8 // to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 // copies of the Software, and to permit persons to whom the Software is
10 // furnished to do so, subject to the following conditions:
11 //
12 // The above copyright notice and this permission notice shall be included in
13 // all copies or substantial portions of the Software.
14 //
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 // OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21 // THE SOFTWARE.
22 //
23 //
24
25
26
27 using NUnit.Framework;
28
29 using System;
30 using System.Threading;
31
32 namespace MonoTests.System.Threading {
33
34         [TestFixture]
35         public class BarrierTests {
36                 Barrier barrier;
37                 const int participants = 10;
38                 bool triggered;
39                 
40                 [SetUp]
41                 public void Setup ()
42                 {
43                         barrier = new Barrier (participants, PostPhaseAction);
44                         triggered = false;
45                 }
46                 
47                 void PostPhaseAction (Barrier b)
48                 {
49                         Assert.AreEqual (barrier, b, "postphase");
50                         triggered = true;
51                 }
52                 
53                 [Test]
54                 public void AddParticipantTest ()
55                 {
56                         barrier.AddParticipant ();
57                         Assert.AreEqual (participants + 1, barrier.ParticipantCount, "#1");
58                         barrier.AddParticipants (3);
59                         Assert.AreEqual (participants + 4, barrier.ParticipantCount, "#2");
60                 }
61                 
62                 [Test]
63                 public void RemoveParticipantTest ()
64                 {
65                         barrier.RemoveParticipant ();
66                         Assert.AreEqual (participants - 1, barrier.ParticipantCount, "#1");
67                         barrier.RemoveParticipants (3);
68                         Assert.AreEqual (participants - 4, barrier.ParticipantCount, "#2");
69                 }
70                 
71                 [Test]
72                 public void SignalTest ()
73                 {
74                         barrier.RemoveParticipants (participants - 2);
75                         Assert.IsFalse (barrier.SignalAndWait (1), "#1");
76                         Assert.IsFalse (triggered, "#3");
77                         Assert.AreEqual (0, barrier.CurrentPhaseNumber, "#4");
78                 }
79                 
80                 [Test]
81                 public void RemoveTriggeringTest ()
82                 {
83                         barrier.RemoveParticipants (participants - 2);
84                         barrier.RemoveParticipants (2);
85                         Assert.IsFalse (triggered, "#1");
86                         Assert.AreEqual (0, barrier.CurrentPhaseNumber, "#2");
87                 }
88
89                 [Test]
90                 public void SignalSimple ()
91                 {
92                         var barrier = new Barrier (0);
93                         barrier.AddParticipant ();
94                         Assert.IsTrue (barrier.SignalAndWait (500), "#1");
95                 }
96         }
97 }
98