New test.
[mono.git] / mcs / class / System.Web / Test / System.Web.Hosting / ISAPIRuntimeCas.cs
1 //
2 // ISAPIRuntimeCas.cs - CAS unit tests for System.Web.Hosting.ISAPIRuntime
3 //
4 // Author:
5 //      Sebastien Pouliot  <sebastien@ximian.com>
6 //
7 // Copyright (C) 2005 Novell, Inc (http://www.novell.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 NUnit.Framework;
30
31 using System;
32 using System.Reflection;
33 using System.Security;
34 using System.Security.Permissions;
35 using System.Web;
36 using System.Web.Hosting;
37
38 namespace MonoCasTests.System.Web.Hosting {
39
40         [TestFixture]
41         [Category ("CAS")]
42         public class ISAPIRuntimeCas : AspNetHostingMinimal {
43
44                 private ISAPIRuntime isapi;
45
46                 [TestFixtureSetUp]
47                 public void FixtureSetUp ()
48                 {
49                         // we're at full trust here
50                         isapi = new ISAPIRuntime ();
51                 }
52
53                 // test ctor (those tests aren't affected by a LinkDemand)
54
55                 [Test]
56                 [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
57                 [ExpectedException (typeof (SecurityException))]
58                 public void Constructor_Deny_UnmanagedCode ()
59                 {
60                         new ISAPIRuntime ();
61                 }
62
63                 [Test]
64                 [AspNetHostingPermission (SecurityAction.Deny, Level = AspNetHostingPermissionLevel.Minimal)]
65 #if NET_2_0
66                 [ExpectedException (typeof (SecurityException))]
67 #endif
68                 public void Constructor_Deny_AspNetHostingPermission ()
69                 {
70                         new ISAPIRuntime ();
71                 }
72
73                 [Test]
74                 [SecurityPermission (SecurityAction.PermitOnly, UnmanagedCode = true)]
75                 [AspNetHostingPermission (SecurityAction.PermitOnly, Level = AspNetHostingPermissionLevel.Minimal)]
76                 public void Constructor_PermitOnly_UnmanagedCode ()
77                 {
78                         new ISAPIRuntime ();
79                 }
80
81                 // only StopProcessing requires some permissions (UnmanagedCode)
82
83                 [Test]
84                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
85                 public void Members_Deny_Unrestricted ()
86                 {
87                         try {
88                                 isapi.DoGCCollect ();
89                         }
90                         catch (NotImplementedException) {
91                                 // mono
92                         }
93                         try {
94                                 isapi.ProcessRequest (IntPtr.Zero, 0);
95                         }
96 #if NET_2_0
97                         catch (AccessViolationException) {
98                                 // fx2.0
99                         }
100 #else
101                         catch (NullReferenceException) {
102                                 // fx1.x
103                         }
104 #endif
105                         catch (NotImplementedException) {
106                                 // mono
107                         }
108                         try {
109                                 isapi.StartProcessing ();
110                         }
111                         catch (NotImplementedException) {
112                                 // mono
113                         }
114 #if NET_2_0
115                         try {
116                                 isapi.InitializeLifetimeService ();
117                         }
118                         catch (NotImplementedException) {
119                                 // mono
120                         }
121 #endif
122                 }
123
124                 [Test]
125                 [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
126 #if NET_2_0
127                 [ExpectedException (typeof (SecurityException))]
128 #endif
129                 public void StopProcessing_Deny_UnmanagedCode ()
130                 {
131                         try {
132                                 isapi.StopProcessing ();
133                         }
134 #if ONLY_1_1
135                         catch (TypeInitializationException) {
136                                 // fx 1.x
137                         }
138                         catch (NotImplementedException) {
139                                 // mono
140                         }
141 #endif
142                         finally {
143                         }
144                 }
145
146                 [Test]
147                 [SecurityPermission (SecurityAction.PermitOnly, UnmanagedCode = true)]
148                 public void StopProcessing_PermitOnly_UnmanagedCode ()
149                 {
150                         try {
151                                 isapi.StopProcessing ();
152                         }
153 #if ONLY_1_1
154                         catch (TypeInitializationException) {
155                                 // fx 1.x
156                         }
157 #endif
158                         catch (NotImplementedException) {
159                                 // mono
160                         }
161                 }
162
163                 // test for LinkDemand on class
164
165                 [SecurityPermission (SecurityAction.Assert, UnmanagedCode = true)]
166                 public override object CreateControl (SecurityAction action, AspNetHostingPermissionLevel level)
167                 {
168                         // in this case testing the ctor isn't very conveniant
169                         // because it has a Demand similar to the LinkDemand.
170                         try {
171                                 return base.CreateControl (action, level);
172                         }
173                         catch (TargetInvocationException tie) {
174                                 throw tie.InnerException;
175                         }
176                 }
177
178                 public override Type Type {
179                         get { return typeof (ISAPIRuntime); }
180                 }
181         }
182 }