[bcl] Remove more NET_2_0 checks from class libs
[mono.git] / mcs / class / System.Web / Test / System.Web.UI.WebControls / LoginCas.cs
1 //
2 // LoginCas.cs - CAS unit tests for System.Web.UI.WebControls.Login
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
30 using NUnit.Framework;
31
32 using System;
33 using System.Security;
34 using System.Security.Permissions;
35 using System.Web;
36 using System.Web.UI.WebControls;
37
38 using MonoTests.System.Web.UI.WebControls;
39
40 namespace MonoCasTests.System.Web.UI.WebControls {
41
42         [TestFixture]
43         [Category ("CAS")]
44         public class LoginCas : AspNetHostingMinimal {
45
46                 [Test]
47                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
48                 public void Deny_Unrestricted ()
49                 {
50                         LoginTest unit = new LoginTest ();
51                         unit.ReadOnlyFields ();
52                         unit.DefaultProperties ();
53                         unit.AssignToDefaultProperties ();
54                         unit.NullProperties ();
55                         unit.BorderPadding ();
56                         unit.FailureAction_All ();
57                         unit.LoginButtonType_All ();
58                         unit.Orientation_All ();
59                         unit.TextLayout_All ();
60                         unit.SaveViewState ();
61                         unit.OnBubbleEvent_Cancel_OnLoggingIn ();
62                         unit.OnLoggingIn_False ();
63                         unit.OnLoggingIn_True ();
64                         unit.OnLoginError ();
65                         unit.OnLoggedIn ();
66                 }
67
68                 [Test]
69                 [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
70                 public void OnAuthenticate_True_Deny_Unrestricted ()
71                 {
72                         LoginTest unit = new LoginTest ();
73                         try {
74                                 unit.OnAuthenticate_True ();
75                         }
76                         catch (TypeInitializationException) {
77                                 // ms 2.0 - depending on the test run-order the HttpRuntime may throw
78                         }
79                 }
80
81                 [Test]
82                 [SecurityPermission (SecurityAction.PermitOnly, ControlPrincipal = true)]
83                 public void PermitOnly_ControlPrincipal ()
84                 {
85                         LoginTest unit = new LoginTest ();
86                         try {
87                                 unit.OnBubbleEvent ();
88                                 unit.OnAuthenticate_False ();
89                         }
90                         catch (TypeInitializationException) {
91                                 // ms 2.0 - depending on the test run-order the HttpRuntime may throw
92                         }
93                 }
94
95                 [Test]
96                 [SecurityPermission (SecurityAction.Deny, ControlPrincipal = true)]
97                 public void OnBubbleEvent_Deny_ControlPrincipal ()
98                 {
99                         LoginTest unit = new LoginTest ();
100                         unit.OnBubbleEvent ();
101                 }
102
103                 [Test]
104                 [SecurityPermission (SecurityAction.Deny, ControlPrincipal = true)]
105                 public void OnAuthenticate_False_Deny_ControlPrincipal ()
106                 {
107                         LoginTest unit = new LoginTest ();
108                         unit.OnAuthenticate_False ();
109                 }
110
111                 // LinkDemand
112
113                 public override Type Type {
114                         get { return typeof (Login); }
115                 }
116         }
117 }
118