merge r67228-r67235, r67237, r67251 and r67256-67259 to trunk (they are
[mono.git] / mcs / class / System / Test / Microsoft.Win32 / IntranetZoneCredentialPolicyCas.cs
1 //
2 // IntranetZoneCredentialPolicyCas.cs 
3 //      - CAS unit tests for Microsoft.Win32.IntranetZoneCredentialPolicy
4 //
5 // Author:
6 //      Sebastien Pouliot  <sebastien@ximian.com>
7 //
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 #if NET_2_0
31
32 using NUnit.Framework;
33
34 using System;
35 using System.Reflection;
36 using System.Security;
37 using System.Security.Permissions;
38 using Microsoft.Win32;
39
40 using MonoTests.Microsoft.Win32;
41
42 namespace MonoCasTests.Microsoft.Win32 {
43
44         [TestFixture]
45         [Category ("CAS")]
46         public class IntranetZoneCredentialPolicyCas {
47
48                 private IntranetZoneCredentialPolicyTest unit;
49
50
51                 [SetUp]
52                 public virtual void SetUp ()
53                 {
54                         if (!SecurityManager.SecurityEnabled)
55                                 Assert.Ignore ("SecurityManager.SecurityEnabled is OFF");
56
57                         // execute IntranetZoneCredentialPolicy ctor at fulltrust
58                         unit = new IntranetZoneCredentialPolicyTest ();
59                         unit.FixtureSetUp ();
60                 }
61
62                 [Test]
63                 [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
64                 [ExpectedException (typeof (SecurityException))]
65                 public void Constructor_Deny_ControlPolicy ()
66                 {
67                         new IntranetZoneCredentialPolicy ();
68                 }
69
70                 [Test]
71                 [SecurityPermission (SecurityAction.PermitOnly, ControlPolicy = true)]
72                 public void Constructor_PermitOnly_ControlPolicy ()
73                 {
74                         new IntranetZoneCredentialPolicy ();
75                 }
76
77                 [Test]
78                 [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
79                 public void UnitTestReuse ()
80                 {
81                         unit.NullRequest ();
82                         unit.NullCredential ();
83                         unit.NullModule ();
84                         unit.Localhost ();
85                         unit.LocalhostWithoutWebRequest ();
86                         unit.LocalhostWithoutCredentials ();
87                         unit.LocalhostWithoutModule ();
88                 }
89
90                 [Test]
91                 [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
92                 [ExpectedException (typeof (SecurityException))]
93                 public void LinkDemand_Deny_ControlPolicy ()
94                 {
95                         ConstructorInfo ci = typeof (IntranetZoneCredentialPolicy).GetConstructor (new Type[0]);
96                         Assert.IsNotNull (ci, "default .ctor");
97                         try {
98                                 ci.Invoke (null);
99                         }
100                         catch (TargetInvocationException tie) {
101                                 // same as directly calling the ctor
102                                 throw tie.InnerException;
103                         }
104                 }
105
106                 [Test]
107                 [SecurityPermission (SecurityAction.PermitOnly, ControlPolicy = true)]
108                 public void LinkDemand_PermitOnly_ControlPolicy ()
109                 {
110                         ConstructorInfo ci = typeof (IntranetZoneCredentialPolicy).GetConstructor (new Type[0]);
111                         Assert.IsNotNull (ci, "default .ctor");
112                         Assert.IsNotNull (ci.Invoke (null), "invoke");
113                 }
114         }
115 }
116
117 #endif