move to from olive to mcs
[mono.git] / mcs / class / System.ServiceModel / Test / System.ServiceModel.Configuration / ServiceModelConfigurationElementCollectionTest.cs
1 //
2 // ServiceModelConfigurationElementCollectionTest.cs
3 //
4 // Author:
5 //      Eyal Alaluf <eyala@mainsoft.com>
6 //
7 // Copyright (C) 2008 Mainsoft, Inc.  http://www.mainsoft.com
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System;
30 using System.Collections.Generic;
31 using System.Text;
32 using NUnit.Framework;
33 using System.ServiceModel.Channels;
34 using System.ServiceModel.Configuration;
35 using System.Configuration;
36
37 namespace MonoTests.System.ServiceModel.Configuration
38 {
39         [TestFixture]
40         public class ServiceModelConfigurationElementCollectionTest
41         {
42                 ClaimTypeElementCollection collection;
43
44                 private ClaimTypeElement CreateClaimType (string claim, bool isOptional)
45                 {
46                         ClaimTypeElement elem = new ClaimTypeElement ();
47                         elem.ClaimType = claim;
48                         elem.IsOptional = isOptional;
49                         return elem;
50                 }
51
52                 [TearDown]
53                 public void TearDownCollection ()
54                 {
55                         collection = null;
56                 }
57
58                 [SetUp]
59                 public void SetupCollection ()
60                 {
61                         collection = new ClaimTypeElementCollection ();
62                         collection.Add (CreateClaimType ("test1", false));
63                         collection.Add (CreateClaimType ("test2", false));
64                 }
65
66                 [Test]
67                 public void Indexer ()
68                 {
69                         Assert.AreEqual ("test1", collection ["test1"].ClaimType, "#01");
70                         collection ["test3"] = CreateClaimType ("test3", false);
71                         Assert.AreEqual ("test3", collection ["test3"].ClaimType, "#02");
72                         collection ["test2"] = CreateClaimType ("test2", true);
73                         Assert.AreEqual (true, collection ["test2"].IsOptional, "#03");
74                 }
75
76                 [Test]
77                 [ExpectedException (typeof (ArgumentException))]
78                 public void IndexerSetWithIncorrectKey ()
79                 {
80                         collection ["test10"] = CreateClaimType ("test", false);
81                 }
82
83                 [Test]
84                 public void IndexOf ()
85                 {
86                         Assert.AreEqual (1, collection.IndexOf (CreateClaimType ("test2", false)), "#01");
87                         Assert.AreEqual (-1, collection.IndexOf (CreateClaimType ("test10", false)), "#02");
88                 }
89
90                 [Test]
91                 public void Remove ()
92                 {
93                         ClaimTypeElement elem = collection ["test2"];
94                         collection.Remove (elem);
95                         Assert.AreEqual (-1, collection.IndexOf (elem), "#01");
96                         collection.Add (elem);
97                         Assert.AreEqual (1, collection.IndexOf (elem), "#02");
98                         collection.RemoveAt (1);
99                         Assert.AreEqual (-1, collection.IndexOf (elem), "#03");
100                         collection.Add (elem);
101                         Assert.AreEqual (1, collection.IndexOf (elem), "#04");
102                         collection.RemoveAt ("test2");
103                         Assert.AreEqual (-1, collection.IndexOf (elem), "#05");
104                 }
105
106                 [Test]
107                 public void Clear ()
108                 {
109                         ClaimTypeElement elem = collection ["test2"];
110                         collection.Clear ();
111                         Assert.AreEqual (-1, collection.IndexOf (elem), "#01");
112                         Assert.AreEqual (0, collection.Count, "#02");
113                 }
114
115                 [Test]
116                 public void ContainsKey ()
117                 {
118                         Assert.AreEqual (true, collection.ContainsKey ("test1"), "#01");
119                         Assert.AreEqual (false, collection.ContainsKey ("test10"), "#02");
120                 }
121
122                 [Test]
123                 public void CopyTo ()
124                 {
125                         ClaimTypeElement[] array = new ClaimTypeElement [4];
126                         collection.CopyTo (array, 2);
127                         Assert.AreEqual ("test1", array [2].ClaimType, "#01");
128                         Assert.AreEqual ("test2", array [3].ClaimType, "#02");
129                 }
130         }
131 }
132