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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
|
//
// X509StoreTest.cs - NUnit tests for X509Store
//
// Author:
// Sebastien Pouliot (spouliot@motus.com)
//
// (C) 2003 Motus Technologies Inc. (http://www.motus.com)
//
#if NET_2_0
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 X509StoreTest {
private X509Certificate2 cert_empty;
private X509Certificate2 cert1;
private X509Certificate2 cert2;
private X509Certificate2Collection coll_empty;
private X509Certificate2Collection coll;
[TestFixtureSetUp]
public void FixtureSetUp ()
{
cert_empty = new X509Certificate2 ();
cert1 = new X509Certificate2 (X509Certificate2Test.farscape_pfx, "farscape", X509KeyStorageFlags.Exportable);
cert2 = new X509Certificate2 (Encoding.ASCII.GetBytes (X509Certificate2Test.base64_cert));
coll_empty = new X509Certificate2Collection ();
coll = new X509Certificate2Collection ();
coll.Add (cert1);
coll.Add (cert2);
CleanUpStore ("ReadOnlyStore");
}
[SetUp]
public void SetUp ()
{
CleanUpStore ("ReadWriteStore");
}
private void CleanUpStore (string s)
{
X509Store xs = new X509Store (s);
xs.Open (OpenFlags.ReadWrite);
int n = xs.Certificates.Count;
if (n > 0) {
X509Certificate2[] array = new X509Certificate2[n];
xs.Certificates.CopyTo (array, 0);
foreach (X509Certificate2 x in array)
xs.Remove (x);
}
xs.Close ();
}
private void CheckDefaults (X509Store xs)
{
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("MY", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
// always IntPtr.Zero for Mono, IntPtr.Zero before being opened on Windows
Assert.AreEqual (IntPtr.Zero, xs.StoreHandle, "StoreHandle");
}
[Test]
public void ConstructorEmpty ()
{
X509Store xs = new X509Store ();
CheckDefaults (xs);
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void ConstructorIntPtr ()
{
new X509Store (IntPtr.Zero);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void ConstructorStoreLocation_Invalid ()
{
new X509Store ((StoreLocation) Int32.MinValue);
}
[Test]
public void ConstructorStoreLocationCurrentUser ()
{
X509Store xs = new X509Store (StoreLocation.CurrentUser);
CheckDefaults (xs);
}
[Test]
public void ConstructorStoreLocationLocalMachine ()
{
X509Store xs = new X509Store (StoreLocation.LocalMachine);
// default properties
Assert.AreEqual (StoreLocation.LocalMachine, xs.Location, "Location");
Assert.AreEqual ("MY", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreString_Null ()
{
X509Store xs = new X509Store (null);
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.IsNull (xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreString_Empty ()
{
X509Store xs = new X509Store (String.Empty);
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual (String.Empty, xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringAddressBook ()
{
X509Store xs = new X509Store ("AddressBook");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("AddressBook", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringAuthRoot ()
{
X509Store xs = new X509Store ("AuthRoot");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("AuthRoot", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringCertificateAuthority ()
{
X509Store xs = new X509Store ("CA");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("CA", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringDisallowed ()
{
X509Store xs = new X509Store ("Disallowed");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("Disallowed", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringMy ()
{
X509Store xs = new X509Store ("My");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("My", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringRoot ()
{
X509Store xs = new X509Store ("Root");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("Root", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringTrustedPeople ()
{
X509Store xs = new X509Store ("TrustedPeople");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("TrustedPeople", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringTrustedPublisher ()
{
X509Store xs = new X509Store ("TrustedPublisher");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("TrustedPublisher", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreStringMono ()
{
// mono isn't defined the StoreName
X509Store xs = new X509Store ("Mono");
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("Mono", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void ConstructorStoreName_Invalid ()
{
new X509Store ((StoreName) Int32.MinValue);
}
[Test]
public void ConstructorStoreNameAddressBook ()
{
X509Store xs = new X509Store (StoreName.AddressBook);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("AddressBook", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreNameAuthRoot ()
{
X509Store xs = new X509Store (StoreName.AuthRoot);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("AuthRoot", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreNameCertificateAuthority ()
{
X509Store xs = new X509Store (StoreName.CertificateAuthority);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("CA", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreNameDisallowed ()
{
X509Store xs = new X509Store (StoreName.Disallowed);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("Disallowed", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreNameMy ()
{
X509Store xs = new X509Store (StoreName.My);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("My", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreNameRoot ()
{
X509Store xs = new X509Store (StoreName.Root);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("Root", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreNameTrustedPeople ()
{
X509Store xs = new X509Store (StoreName.TrustedPeople);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("TrustedPeople", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
public void ConstructorStoreNameTrustedPublisher ()
{
X509Store xs = new X509Store (StoreName.TrustedPublisher);
// default properties
Assert.AreEqual (StoreLocation.CurrentUser, xs.Location, "Location");
Assert.AreEqual ("TrustedPublisher", xs.Name, "Name");
Assert.IsNotNull (xs.Certificates, "Certificates");
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void Add_Null ()
{
new X509Store ().Add (null);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Add_NotOpened ()
{
// Open wasn't called
new X509Store ().Add (cert1);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Add_OpenReadOnly ()
{
X509Store xs = new X509Store ("ReadOnlyStore");
xs.Open (OpenFlags.ReadOnly);
xs.Add (cert1);
}
[Test]
public void Add_SameCertificate ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
int n = xs.Certificates.Count;
xs.Add (cert1);
xs.Add (cert1);
Assert.AreEqual (n + 1, xs.Certificates.Count, "Count");
xs.Close ();
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Add_Empty_Certificate ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.Add (cert_empty);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Add_ExistingCertificateReadOnly ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.Add (cert1);
xs.Close ();
xs.Open (OpenFlags.ReadOnly);
xs.Add (cert1);
xs.Close ();
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void AddRange_Null ()
{
new X509Store ().AddRange (null);
}
[Test]
public void AddRange_Empty_Closed ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.AddRange (coll_empty);
Assert.AreEqual (coll_empty.Count, xs.Certificates.Count, "Count");
}
[Test]
public void AddRange_Empty_ReadOnly ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadOnly);
xs.AddRange (coll_empty);
Assert.AreEqual (coll_empty.Count, xs.Certificates.Count, "Count");
}
[Test]
public void AddRange_Empty_ReadWrite ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.AddRange (coll_empty);
Assert.AreEqual (coll_empty.Count, xs.Certificates.Count, "Count");
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void AddRange_Empty_Certificate ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.AddRange (new X509Certificate2Collection (cert_empty));
}
[Test]
public void AddRange ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.AddRange (coll);
Assert.AreEqual (coll.Count, xs.Certificates.Count, "Count");
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void AddRange_NotOpened ()
{
// Open wasn't called
new X509Store ().AddRange (coll);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void AddRange_OpenReadOnly ()
{
X509Store xs = new X509Store ("ReadOnlyStore");
xs.Open (OpenFlags.ReadOnly);
xs.AddRange (coll);
}
[Test]
public void Close_NotOpen ()
{
new X509Store ().Close ();
}
[Test]
public void Close_Collection ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.Add (cert1);
Assert.AreEqual (1, xs.Certificates.Count, "Open");
xs.Close ();
Assert.AreEqual (0, xs.Certificates.Count, "Close");
}
[Test]
public void Open_Invalid ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open ((OpenFlags) Int32.MinValue);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Open_OpenExistingOnly ()
{
new X509Store ("doesn't-exists").Open (OpenFlags.OpenExistingOnly);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Open_Store_Null ()
{
// ctor is valid (see test) but can't be opened
new X509Store (null).Open (OpenFlags.ReadOnly);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Open_Store_Empty ()
{
// ctor is valid (see test) but can't be opened
new X509Store (String.Empty).Open (OpenFlags.ReadOnly);
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void Remove_Null ()
{
new X509Store ().Remove (null);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Remove_NotOpened ()
{
// Open wasn't called
new X509Store ().Remove (cert1);
}
[Test]
public void Remove_OpenReadOnly_Unexisting ()
{
X509Store xs = new X509Store ("ReadOnlyStore");
xs.Open (OpenFlags.ReadOnly);
// note: cert1 wasn't present, remove "succeed"
xs.Remove (cert1);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void Remove_OpenReadOnly_Existing ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.Add (cert1);
xs.Close ();
xs.Open (OpenFlags.ReadOnly);
xs.Remove (cert1);
}
[Test]
public void Remove_Empty_Certificate ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
// note: impossible to add cert_empty, so we add something else
// to be sure we'll follow the complete code path (loop) of removal
xs.Add (cert1);
xs.Remove (cert_empty);
}
[Test]
[ExpectedException (typeof (ArgumentNullException))]
public void RemoveRange_Null ()
{
new X509Store ().RemoveRange (null);
}
[Test]
public void RemoveRange_Empty ()
{
X509Store xs = new X509Store ();
xs.RemoveRange (coll_empty);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void RemoveRange_NotOpened ()
{
// Open wasn't called
new X509Store ().RemoveRange (coll);
}
[Test]
public void RemoveRange_OpenReadOnly_Unexisting ()
{
X509Store xs = new X509Store ("ReadOnlyStore");
xs.Open (OpenFlags.ReadOnly);
// note: cert1 wasn't present, RemoveRange "succeed"
xs.RemoveRange (coll);
}
[Test]
[ExpectedException (typeof (CryptographicException))]
public void RemoveRange_OpenReadOnly_Existing ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
xs.AddRange (coll);
xs.Close ();
xs.Open (OpenFlags.ReadOnly);
xs.RemoveRange (coll);
}
[Test]
public void RemoveRange_Empty_Certificate ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Open (OpenFlags.ReadWrite);
// note: impossible to add cert_empty, so we add something else
// to be sure we'll follow the complete code path (loop) of removal
xs.AddRange (coll);
xs.RemoveRange (new X509Certificate2Collection (cert_empty));
}
[Test]
public void Collection_Add ()
{
X509Store xs = new X509Store ("ReadWriteStore");
xs.Certificates.Add (cert1);
Assert.AreEqual (0, xs.Certificates.Count, "Not Open");
xs.Close ();
Assert.AreEqual (0, xs.Certificates.Count, "Close");
}
}
}
#endif
|