[bcl] Remove more NET_2_0 checks from class libs
[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 (st.FrameCount > 0)
62                                 Assert.IsNotNull (st.GetFrames (), "GetFrames");
63                         else
64                                 Assert.IsNull (st.GetFrames (), "GetFrames");
65                         Assert.IsNotNull (st.ToString (), "ToString");
66                 }
67
68                 [Test]
69                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
70                 public void StackTrace_DefaultConstructor ()
71                 {
72                         StackTrace st = new StackTrace ();
73                         Check (st);
74                 }
75
76                 [Test]
77                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
78                 public void StackTrace_BoolConstructor ()
79                 {
80                         StackTrace st = new StackTrace (true);
81                         Check (st);
82                 }
83
84                 [Test]
85                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
86                 public void StackTrace_IntConstructor ()
87                 {
88                         StackTrace st = new StackTrace (1);
89                         Check (st);
90                 }
91
92                 [Test]
93                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
94                 public void StackTrace_IntBoolConstructor ()
95                 {
96                         StackTrace st = new StackTrace (1, true);
97                         Check (st);
98                 }
99
100                 [Test]
101                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
102                 public void StackTrace_ExceptionConstructor ()
103                 {
104                         StackTrace st = new StackTrace (new Exception ());
105                         Check (st);
106                 }
107
108                 [Test]
109                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
110                 public void StackTrace_ExceptionBoolConstructor ()
111                 {
112                         StackTrace st = new StackTrace (new Exception (), true);
113                         Check (st);
114                 }
115
116                 [Test]
117                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
118                 public void StackTrace_ExceptionIntConstructor ()
119                 {
120                         StackTrace st = new StackTrace (new Exception (), 1);
121                         Check (st);
122                 }
123
124                 [Test]
125                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
126                 public void StackTrace_ExceptionIntBoolConstructor ()
127                 {
128                         StackTrace st = new StackTrace (new Exception (), 1, true);
129                         Check (st);
130                 }
131
132                 [Test]
133                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
134                 public void StackTrace_StackFrameConstructor ()
135                 {
136                         StackTrace st = new StackTrace (new StackFrame ());
137                         Check (st);
138                 }
139
140                 [Test]
141                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
142                 [Category ("NotWorking")]
143                 public void StackTrace_ThreadBoolConstructor ()
144                 {
145                         StackTrace st = new StackTrace (Thread.CurrentThread, true);
146                         Check (st);
147                 }
148         }
149 }