Merge pull request #1899 from saper/resgencond
[mono.git] / mcs / class / corlib / Test / System.Collections.Concurrent / PartitionerTests.cs
1 // 
2 // PartitionerTests.cs
3 //  
4 // Author:
5 //       Jérémie "Garuma" Laval <jeremie.laval@gmail.com>
6 // 
7 // Copyright (c) 2009 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
28 using System;
29 using System.Collections.Generic;
30 using System.Collections.Concurrent;
31
32 using NUnit.Framework;
33 #if !MOBILE
34 using NUnit.Framework.SyntaxHelpers;
35 #endif
36
37 namespace MonoTests.System.Collections.Concurrent
38 {
39         [TestFixture]
40         public class PartitionerTests
41         {
42                 [Test]
43                 public void PartitionerCreateIntegerWithExplicitRange ()
44                 {
45                         OrderablePartitioner<Tuple<int, int>> partitioner = Partitioner.Create (1, 20, 5);
46                         var partitions = partitioner.GetOrderablePartitions (3);
47                         Assert.AreEqual (3, partitions.Count);
48                         Assert.That (partitions, Is.All.Not.Null);
49                         var iterator = partitions[0];                   
50                         Assert.IsTrue (iterator.MoveNext ());
51                         Assert.IsTrue (iterator.Current.Equals (Create (0, 1, 6)));
52                         Assert.IsTrue (iterator.MoveNext ());
53                         Assert.IsTrue (iterator.Current.Equals (Create (1, 6, 11)));
54                         Assert.IsTrue (iterator.MoveNext ());
55                         Assert.IsTrue (iterator.Current.Equals (Create (2, 11, 16)));
56                         Assert.IsTrue (iterator.MoveNext ());
57                         Assert.IsTrue (iterator.Current.Equals (Create (3, 16, 20)));
58                         
59                         Assert.IsFalse (partitions[1].MoveNext ());
60                         Assert.IsFalse (partitions[2].MoveNext ());
61                 }
62
63                 [Test]
64                 public void PartitionerCreateLongWithExplicitRange ()
65                 {
66                         OrderablePartitioner<Tuple<long, long>> partitioner = Partitioner.Create ((long)1, (long)20, (long)5);
67                         var partitions = partitioner.GetOrderablePartitions (3);
68                         Assert.AreEqual (3, partitions.Count);
69                         Assert.That (partitions, Is.All.Not.Null);
70                         var iterator = partitions[0];                   
71                         Assert.IsTrue (iterator.MoveNext ());
72                         Assert.IsTrue (iterator.Current.Equals (CreateL (0, 1, 6)));
73                         Assert.IsTrue (iterator.MoveNext ());
74                         Assert.IsTrue (iterator.Current.Equals (CreateL (1, 6, 11)));
75                         Assert.IsTrue (iterator.MoveNext ());
76                         Assert.IsTrue (iterator.Current.Equals (CreateL (2, 11, 16)));
77                         Assert.IsTrue (iterator.MoveNext ());
78                         Assert.IsTrue (iterator.Current.Equals (CreateL (3, 16, 20)));
79                         
80                         Assert.IsFalse (partitions[1].MoveNext ());
81                         Assert.IsFalse (partitions[2].MoveNext ());
82                 }
83
84                 static KeyValuePair<long, Tuple<int, int>> Create (long ind, int i1, int i2)
85                 {
86                         return new KeyValuePair<long, Tuple<int, int>> (ind, Tuple.Create (i1, i2));
87                 }
88
89                 static KeyValuePair<long, Tuple<long, long>> CreateL (long ind, long i1, long i2)
90                 {
91                         return new KeyValuePair<long, Tuple<long, long>> (ind, Tuple.Create (i1, i2));
92                 }
93         }
94 }