New test.
[mono.git] / mcs / class / corlib / Test / System.Diagnostics / StackTraceCas.cs
1 //
2 // StackTraceCas.cs - CAS unit tests for System.Diagnostics.StackTrace
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.Diagnostics;
33 using System.Security;
34 using System.Security.Permissions;
35 using System.Threading;
36
37 namespace MonoCasTests.System.Diagnostics {
38
39         [TestFixture]
40         [Category ("CAS")]
41         public class StackTraceCas {
42
43                 [SetUp]
44                 public void SetUp ()
45                 {
46                         if (!SecurityManager.SecurityEnabled)
47                                 Assert.Ignore ("SecurityManager.SecurityEnabled is OFF");
48                 }
49
50                 // avoid replication of tests on all constructors (this is no 
51                 // problem because the stack is already set correctly). The 
52                 // goal is to call every property and methods to see if they
53                 // have any* security requirements (*except for LinkDemand and
54                 // InheritanceDemand).
55                 private void Check (StackTrace st)
56                 {
57                         if (st.FrameCount > 0)
58                                 Assert.IsNotNull (st.GetFrame (0), "GetFrame");
59                         else
60                                 Assert.IsNull (st.GetFrame (0), "GetFrame");
61 #if NET_2_0
62                         if (st.FrameCount > 0)
63                                 Assert.IsNotNull (st.GetFrames (), "GetFrames");
64                         else
65                                 Assert.IsNull (st.GetFrames (), "GetFrames");
66 #endif
67                         Assert.IsNotNull (st.ToString (), "ToString");
68                 }
69
70                 [Test]
71 #if NET_2_0
72                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
73 #else
74                 [ReflectionPermission (SecurityAction.Deny, TypeInformation = true)]
75                 [ExpectedException (typeof (SecurityException))]
76 #endif
77                 public void StackTrace_DefaultConstructor ()
78                 {
79                         StackTrace st = new StackTrace ();
80                         Check (st);
81                 }
82
83                 [Test]
84 #if NET_2_0
85                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
86 #else
87                 [ReflectionPermission (SecurityAction.Deny, TypeInformation = true)]
88                 [ExpectedException (typeof (SecurityException))]
89 #endif
90                 public void StackTrace_BoolConstructor ()
91                 {
92                         StackTrace st = new StackTrace (true);
93                         Check (st);
94                 }
95
96                 [Test]
97 #if NET_2_0
98                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
99 #else
100                 [ReflectionPermission (SecurityAction.Deny, TypeInformation = true)]
101                 [ExpectedException (typeof (SecurityException))]
102 #endif
103                 public void StackTrace_IntConstructor ()
104                 {
105                         StackTrace st = new StackTrace (1);
106                         Check (st);
107                 }
108
109                 [Test]
110 #if NET_2_0
111                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
112 #else
113                 [ReflectionPermission (SecurityAction.Deny, TypeInformation = true)]
114                 [ExpectedException (typeof (SecurityException))]
115 #endif
116                 public void StackTrace_IntBoolConstructor ()
117                 {
118                         StackTrace st = new StackTrace (1, true);
119                         Check (st);
120                 }
121
122                 [Test]
123                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
124                 public void StackTrace_ExceptionConstructor ()
125                 {
126                         StackTrace st = new StackTrace (new Exception ());
127                         Check (st);
128                 }
129
130                 [Test]
131                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
132                 public void StackTrace_ExceptionBoolConstructor ()
133                 {
134                         StackTrace st = new StackTrace (new Exception (), true);
135                         Check (st);
136                 }
137
138                 [Test]
139                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
140                 public void StackTrace_ExceptionIntConstructor ()
141                 {
142                         StackTrace st = new StackTrace (new Exception (), 1);
143                         Check (st);
144                 }
145
146                 [Test]
147                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
148                 public void StackTrace_ExceptionIntBoolConstructor ()
149                 {
150                         StackTrace st = new StackTrace (new Exception (), 1, true);
151                         Check (st);
152                 }
153
154                 [Test]
155 #if NET_2_0
156                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
157 #else
158                 [ReflectionPermission (SecurityAction.Deny, TypeInformation = true)]
159                 [ExpectedException (typeof (SecurityException))]
160 #endif
161                 public void StackTrace_StackFrameConstructor ()
162                 {
163                         StackTrace st = new StackTrace (new StackFrame ());
164                         Check (st);
165                 }
166
167                 [Test]
168 #if NET_2_0
169                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
170 #else
171                 [ReflectionPermission (SecurityAction.Deny, TypeInformation = true)]
172                 [ExpectedException (typeof (SecurityException))]
173 #endif
174                 [Category ("NotWorking")]
175                 public void StackTrace_ThreadBoolConstructor ()
176                 {
177                         StackTrace st = new StackTrace (Thread.CurrentThread, true);
178                         Check (st);
179                 }
180         }
181 }