2005-09-09 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Fri, 9 Sep 2005 22:46:10 +0000 (22:46 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Fri, 9 Sep 2005 22:46:10 +0000 (22:46 -0000)
* WindowsAuthenticationModuleCas.cs: New. CAS unit tests.

svn path=/trunk/mcs/; revision=49838

mcs/class/System.Web/Test/System.Web.Security/ChangeLog
mcs/class/System.Web/Test/System.Web.Security/WindowsAuthenticationModuleCas.cs [new file with mode: 0644]

index d21084c4f59fb9fd3bb71afd14308f0165d0ab9c..a03ba83632b96af7471382b47ca9213546fabf43 100644 (file)
@@ -1,5 +1,5 @@
-2005-09-09  Sebastien Pouliot  <sebastien@ximian.com>
-
+2005-09-09  Sebastien Pouliot  <sebastien@ximian.com> 
        * DefaultAuthenticationEventArgsCas.cs: New. CAS unit tests.
        * DefaultAuthenticationModuleCas.cs: New. CAS unit tests.
        * FileAuthorizationModuleCas.cs: New. CAS unit tests.
@@ -13,6 +13,7 @@
        * PassportAuthenticationModuleCas.cs: New. CAS unit tests.
        * PassportIdentityCas.cs: New. CAS unit tests.
        * WindowsAuthenticationEventArgsCas.cs: Added LinkDemand tests.
+       * WindowsAuthenticationModuleCas.cs: New. CAS unit tests.
        * UrlAuthorizationModuleCas.cs: New. CAS unit tests.
 
 2005-09-01  Sebastien Pouliot  <sebastien@ximian.com>
diff --git a/mcs/class/System.Web/Test/System.Web.Security/WindowsAuthenticationModuleCas.cs b/mcs/class/System.Web/Test/System.Web.Security/WindowsAuthenticationModuleCas.cs
new file mode 100644 (file)
index 0000000..0cedfe2
--- /dev/null
@@ -0,0 +1,102 @@
+//
+// WindowsAuthenticationModuleCas.cs 
+//     - CAS unit tests for System.Web.Security.WindowsAuthenticationModule
+//
+// Author:
+//     Sebastien Pouliot  <sebastien@ximian.com>
+//
+// Copyright (C) 2005 Novell, Inc (http://www.novell.com)
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+// 
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+// 
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+//
+
+using NUnit.Framework;
+
+using System;
+using System.Reflection;
+using System.Security;
+using System.Security.Permissions;
+using System.Web;
+using System.Web.Security;
+
+namespace MonoCasTests.System.Web.Security {
+
+       [TestFixture]
+       [Category ("CAS")]
+       public class WindowsAuthenticationModuleCas : AspNetHostingMinimal {
+
+               private HttpApplication app;
+               private WindowsAuthenticationModule module;
+
+               [TestFixtureSetUp]
+               public void FixtureSetUp ()
+               {
+                       app = new HttpApplication ();
+                       module = new WindowsAuthenticationModule ();
+               }
+
+               [Test]
+               [SecurityPermission (SecurityAction.Deny, UnmanagedCode = true)]
+               [ExpectedException (typeof (SecurityException))]
+               public void Constructor_Deny_UnmanagedCode ()
+               {
+                       new WindowsAuthenticationModule ();
+               }
+
+               [Test]
+               [SecurityPermission (SecurityAction.PermitOnly, UnmanagedCode = true)]
+               public void Constructor_PermitOnly_UnmanagedCode ()
+               {
+                       new WindowsAuthenticationModule ();
+               }
+
+               private void Authenticate (object sender, WindowsAuthenticationEventArgs e)
+               {
+               }
+
+               [Test]
+               [PermissionSet (SecurityAction.Deny, Unrestricted = true)]
+               public void Module ()
+               {
+                       // only the ctor requires UnmanagedCode
+                       try {
+                               module.Init (app);
+                       }
+                       catch (NotImplementedException) {
+                               // Mono
+                       }
+                       module.Authenticate += new WindowsAuthenticationEventHandler (Authenticate);
+                       module.Authenticate -= new WindowsAuthenticationEventHandler (Authenticate);
+                       module.Dispose (); // but doesn't implement IDisposable
+               }
+
+               // LinkDemand
+
+               [SecurityPermission (SecurityAction.Assert, UnmanagedCode = true)]
+               public override object CreateControl (SecurityAction action, AspNetHostingPermissionLevel level)
+               {
+                       return base.CreateControl (action, level);
+               }
+
+               public override Type Type {
+                       get { return typeof (WindowsAuthenticationModule); }
+               }
+       }
+}