File: X509ExtensionCollectionTest.cs

package info (click to toggle)
mono 4.6.2.7%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 778,148 kB
  • ctags: 914,052
  • sloc: cs: 5,779,509; xml: 2,773,713; ansic: 432,645; sh: 14,749; makefile: 12,361; perl: 2,488; python: 1,434; cpp: 849; asm: 531; sql: 95; sed: 16; php: 1
file content (201 lines) | stat: -rw-r--r-- 5,503 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
//
// X509ExtensionCollectionTest.cs - NUnit tests for X509ExtensionCollection
//
// Author:
//	Sebastien Pouliot  <sebastien@ximian.com>
//
// Copyright (C) 2006 Novell, Inc (http://www.novell.com)
//
// Permission is hereby granted, free of charge, to any person obtaining
// a copy of this software and associated documentation files (the
// "Software"), to deal in the Software without restriction, including
// without limitation the rights to use, copy, modify, merge, publish,
// distribute, sublicense, and/or sell copies of the Software, and to
// permit persons to whom the Software is furnished to do so, subject to
// the following conditions:
// 
// The above copyright notice and this permission notice shall be
// included in all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//


using NUnit.Framework;

using System;
using System.Collections;
using System.Security.Cryptography;
using System.Security.Cryptography.X509Certificates;
using System.Text;

namespace MonoTests.System.Security.Cryptography.X509Certificates {

	[TestFixture]
	public class X509ExtensionCollectionTest {

		private X509ExtensionCollection empty;
		private X509Extension extn_empty;

		[TestFixtureSetUp]
		public void FixtureSetUp ()
		{
			empty = new X509ExtensionCollection ();
			extn_empty = new X509Extension ("1.2", new byte[] { 0x05, 0x00 }, false);
		}

		[Test]
		public void Defaults ()
		{
			Assert.AreEqual (0, empty.Count, "Count");
			Assert.IsFalse (empty.IsSynchronized, "IsSynchronized");
			Assert.IsTrue (Object.ReferenceEquals (empty, empty.SyncRoot), "SyncRoot");
			Assert.AreEqual (typeof (X509ExtensionEnumerator), empty.GetEnumerator ().GetType (), "GetEnumerator");
			// IEnumerable
			IEnumerable e = (empty as IEnumerable);
			Assert.AreEqual (typeof (X509ExtensionEnumerator), e.GetEnumerator ().GetType (), "IEnumerable.GetEnumerator");
		}

		[Test]
		[ExpectedException (typeof (InvalidOperationException))]
		public void Indexer_Int_Negative ()
		{
			Assert.IsNotNull (empty [-1]);
		}

		[Test]
		[ExpectedException (typeof (ArgumentOutOfRangeException))]
		public void Indexer_Int_OutOfRange ()
		{
			Assert.IsNotNull (empty [0]);
		}

		[Test]
		public void Indexer_Int ()
		{
			X509ExtensionCollection c = new X509ExtensionCollection ();
			c.Add (extn_empty);
			Assert.AreEqual (extn_empty, c[0], "0");
		}

		[Test]
		[ExpectedException (typeof (ArgumentNullException))]
		public void Indexer_String_Null ()
		{
			Assert.IsNotNull (empty [null]);
		}

		[Test]
		public void Indexer_String ()
		{
			X509ExtensionCollection c = new X509ExtensionCollection ();
			c.Add (extn_empty);
			Assert.IsNull (c[String.Empty]);
			Assert.IsNull (c ["1.2.3"]);
			Assert.AreEqual (extn_empty, c["1.2"], "0");
		}

		[Test]
		[ExpectedException (typeof (ArgumentNullException))]
		public void Add_Null ()
		{
			empty.Add (null);
		}

		[Test]
		public void Add ()
		{
			X509ExtensionCollection c = new X509ExtensionCollection ();
			Assert.AreEqual (0, c.Count, "Count-0");
			c.Add (extn_empty);
			Assert.AreEqual (1, c.Count, "Count-1");
		}

		[Test]
		[ExpectedException (typeof (ArgumentNullException))]
		public void CopyTo_Null ()
		{
			empty.CopyTo (null, 0);
		}

		[Test]
		[ExpectedException (typeof (ArgumentOutOfRangeException))]
		public void CopyTo_Negative ()
		{
			X509Extension[] array = new X509Extension[1];
			empty.CopyTo (array, -1);
		}

		[Test]
		[ExpectedException (typeof (ArgumentOutOfRangeException))]
		public void CopyTo_EmptyArray ()
		{
			X509Extension[] array = new X509Extension[0];
			empty.CopyTo (array, 0);
		}

		[Test]
		public void CopyTo_EmptyCollection ()
		{
			X509Extension[] array = new X509Extension[1];
			empty.CopyTo (array, 0);
		}

		[Test]
		public void CopyTo ()
		{
			X509ExtensionCollection c = new X509ExtensionCollection ();
			c.Add (extn_empty);
			X509Extension[] array = new X509Extension[1];
			c.CopyTo (array, 0);
			Assert.AreEqual (extn_empty, array[0], "0");
		}

		[Test]
		[ExpectedException (typeof (ArgumentNullException))]
		public void ICollection_CopyTo_Null ()
		{
			(empty as ICollection).CopyTo (null, 0);
		}

		[Test]
		[ExpectedException (typeof (ArgumentOutOfRangeException))]
		public void ICollection_CopyTo_Negative ()
		{
			X509Extension[] array = new X509Extension[1];
			(empty as ICollection).CopyTo (array, -1);
		}

		[Test]
		[ExpectedException (typeof (ArgumentOutOfRangeException))]
		public void ICollection_CopyTo_EmptyArray ()
		{
			X509Extension[] array = new X509Extension[0];
			(empty as ICollection).CopyTo (array, 0);
		}

		[Test]
		public void ICollection_CopyTo_EmptyCollection ()
		{
			X509Extension[] array = new X509Extension[1];
			(empty as ICollection).CopyTo (array, 0);
		}

		[Test]
		public void ICollection_CopyTo ()
		{
			X509ExtensionCollection c = new X509ExtensionCollection ();
			c.Add (extn_empty);
			X509Extension[] array = new X509Extension[1];
			(c as ICollection).CopyTo (array, 0);
			Assert.AreEqual (extn_empty, array[0], "0");
		}
	}
}