Merge branch 'cecil-light'
[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 #if NET_4_0
28
29 using System;
30 using System.Collections.Generic;
31 using System.Collections.Concurrent;
32
33 using NUnit.Framework;
34
35 namespace MonoTests.System.Collections.Concurrent
36 {
37         [TestFixture]
38         public class PartitionerTests
39         {
40                 [Test]
41                 public void PartitionerCreateIntegerWithExplicitRange ()
42                 {
43                         OrderablePartitioner<Tuple<int, int>> partitioner = Partitioner.Create (1, 20, 5);
44                         var partitions = partitioner.GetOrderablePartitions (3);
45                         Assert.AreEqual (3, partitions.Count);
46                         CollectionAssert.AllItemsAreNotNull (partitions);
47                         var iterator = partitions[0];                   
48                         Assert.IsTrue (iterator.MoveNext ());
49                         Assert.IsTrue (iterator.Current.Equals (Create (0, 1, 6)));
50                         Assert.IsTrue (iterator.MoveNext ());
51                         Assert.IsTrue (iterator.Current.Equals (Create (1, 6, 11)));
52                         Assert.IsTrue (iterator.MoveNext ());
53                         Assert.IsTrue (iterator.Current.Equals (Create (2, 11, 16)));
54                         Assert.IsTrue (iterator.MoveNext ());
55                         Assert.IsTrue (iterator.Current.Equals (Create (3, 16, 20)));
56                         
57                         Assert.IsFalse (partitions[1].MoveNext ());
58                         Assert.IsFalse (partitions[2].MoveNext ());
59                 }
60
61                 [Test]
62                 public void PartitionerCreateLongWithExplicitRange ()
63                 {
64                         OrderablePartitioner<Tuple<long, long>> partitioner = Partitioner.Create ((long)1, (long)20, (long)5);
65                         var partitions = partitioner.GetOrderablePartitions (3);
66                         Assert.AreEqual (3, partitions.Count);
67                         CollectionAssert.AllItemsAreNotNull (partitions);
68                         var iterator = partitions[0];                   
69                         Assert.IsTrue (iterator.MoveNext ());
70                         Assert.IsTrue (iterator.Current.Equals (CreateL (0, 1, 6)));
71                         Assert.IsTrue (iterator.MoveNext ());
72                         Assert.IsTrue (iterator.Current.Equals (CreateL (1, 6, 11)));
73                         Assert.IsTrue (iterator.MoveNext ());
74                         Assert.IsTrue (iterator.Current.Equals (CreateL (2, 11, 16)));
75                         Assert.IsTrue (iterator.MoveNext ());
76                         Assert.IsTrue (iterator.Current.Equals (CreateL (3, 16, 20)));
77                         
78                         Assert.IsFalse (partitions[1].MoveNext ());
79                         Assert.IsFalse (partitions[2].MoveNext ());
80                 }
81
82                 static KeyValuePair<long, Tuple<int, int>> Create (long ind, int i1, int i2)
83                 {
84                         return new KeyValuePair<long, Tuple<int, int>> (ind, Tuple.Create (i1, i2));
85                 }
86
87                 static KeyValuePair<long, Tuple<long, long>> CreateL (long ind, long i1, long i2)
88                 {
89                         return new KeyValuePair<long, Tuple<long, long>> (ind, Tuple.Create (i1, i2));
90                 }
91         }
92 }
93 #endif