2005-10-17 Sebastien Pouliot <sebastien@ximian.com>
authorSebastien Pouliot <sebastien@ximian.com>
Mon, 17 Oct 2005 23:52:00 +0000 (23:52 -0000)
committerSebastien Pouliot <sebastien@ximian.com>
Mon, 17 Oct 2005 23:52:00 +0000 (23:52 -0000)
* IntranetZoneCredentialPolicyCas.cs: New. CAS unit tests.
* IntranetZoneCredentialPolicyTest.cs: New. Unit tests.

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

mcs/class/System/Test/Microsoft.Win32/ChangeLog
mcs/class/System/Test/Microsoft.Win32/IntranetZoneCredentialPolicyCas.cs [new file with mode: 0644]
mcs/class/System/Test/Microsoft.Win32/IntranetZoneCredentialPolicyTest.cs [new file with mode: 0644]

index 536248263a7b3ccb6a8a34294cc199a3bb394edd..98a24318200c53e2362569b8289c6cb3eb1ee251 100644 (file)
@@ -1,3 +1,8 @@
+2005-10-17  Sebastien Pouliot  <sebastien@ximian.com> 
+       * IntranetZoneCredentialPolicyCas.cs: New. CAS unit tests.
+       * IntranetZoneCredentialPolicyTest.cs: New. Unit tests.
+
 2005-10-17  Sebastien Pouliot  <sebastien@ximian.com>
 
        * PowerModeChangedEventArgsCas.cs: New. CAS unit tests.
diff --git a/mcs/class/System/Test/Microsoft.Win32/IntranetZoneCredentialPolicyCas.cs b/mcs/class/System/Test/Microsoft.Win32/IntranetZoneCredentialPolicyCas.cs
new file mode 100644 (file)
index 0000000..6af8d08
--- /dev/null
@@ -0,0 +1,117 @@
+//
+// IntranetZoneCredentialPolicyCas.cs 
+//     - CAS unit tests for Microsoft.Win32.IntranetZoneCredentialPolicy
+//
+// 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.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Reflection;
+using System.Security;
+using System.Security.Permissions;
+using Microsoft.Win32;
+
+using MonoTests.Microsoft.Win32;
+
+namespace MonoCasTests.Microsoft.Win32 {
+
+       [TestFixture]
+       [Category ("CAS")]
+       public class IntranetZoneCredentialPolicyCas {
+
+               private IntranetZoneCredentialPolicyTest unit;
+
+
+               [SetUp]
+               public virtual void SetUp ()
+               {
+                       if (!SecurityManager.SecurityEnabled)
+                               Assert.Ignore ("SecurityManager.SecurityEnabled is OFF");
+
+                       // execute IntranetZoneCredentialPolicy ctor at fulltrust
+                       unit = new IntranetZoneCredentialPolicyTest ();
+                       unit.FixtureSetUp ();
+               }
+
+               [Test]
+               [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
+               [ExpectedException (typeof (SecurityException))]
+               public void Constructor_Deny_ControlPolicy ()
+               {
+                       new IntranetZoneCredentialPolicy ();
+               }
+
+               [Test]
+               [SecurityPermission (SecurityAction.PermitOnly, ControlPolicy = true)]
+               public void Constructor_PermitOnly_ControlPolicy ()
+               {
+                       new IntranetZoneCredentialPolicy ();
+               }
+
+               [Test]
+               [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
+               public void UnitTestReuse ()
+               {
+                       unit.NullRequest ();
+                       unit.NullCredential ();
+                       unit.NullModule ();
+                       unit.Localhost ();
+                       unit.LocalhostWithoutWebRequest ();
+                       unit.LocalhostWithoutCredentials ();
+                       unit.LocalhostWithoutModule ();
+               }
+
+               [Test]
+               [SecurityPermission (SecurityAction.Deny, ControlPolicy = true)]
+               [ExpectedException (typeof (SecurityException))]
+               public void LinkDemand_Deny_ControlPolicy ()
+               {
+                       ConstructorInfo ci = typeof (IntranetZoneCredentialPolicy).GetConstructor (new Type[0]);
+                       Assert.IsNotNull (ci, "default .ctor");
+                       try {
+                               ci.Invoke (null);
+                       }
+                       catch (TargetInvocationException tie) {
+                               // same as directly calling the ctor
+                               throw tie.InnerException;
+                       }
+               }
+
+               [Test]
+               [SecurityPermission (SecurityAction.PermitOnly, ControlPolicy = true)]
+               public void LinkDemand_PermitOnly_ControlPolicy ()
+               {
+                       ConstructorInfo ci = typeof (IntranetZoneCredentialPolicy).GetConstructor (new Type[0]);
+                       Assert.IsNotNull (ci, "default .ctor");
+                       Assert.IsNotNull (ci.Invoke (null), "invoke");
+               }
+       }
+}
+
+#endif
diff --git a/mcs/class/System/Test/Microsoft.Win32/IntranetZoneCredentialPolicyTest.cs b/mcs/class/System/Test/Microsoft.Win32/IntranetZoneCredentialPolicyTest.cs
new file mode 100644 (file)
index 0000000..7a0b9b2
--- /dev/null
@@ -0,0 +1,164 @@
+//
+// IntranetZoneCredentialPolicyTest.cs 
+//     - Unit tests for Microsoft.Win32.IntranetZoneCredentialPolicy
+//
+// 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.
+//
+
+#if NET_2_0
+
+using NUnit.Framework;
+
+using System;
+using System.Net;
+using Microsoft.Win32;
+
+namespace MonoTests.Microsoft.Win32 {
+
+       public class Module: IAuthenticationModule {
+
+               private string type;
+               private bool pre_auth;
+               private string token;
+
+               public Module (string type, bool preAuth, string token)
+               {
+                       this.type = type;
+                       pre_auth = preAuth;
+                       this.token = token;
+               }
+
+               public Authorization Authenticate (string challenge, WebRequest request, ICredentials credentials)
+               {
+                       return new Authorization (token);
+               }
+
+               public string AuthenticationType {
+                       get { return type; }
+               }
+
+               public bool CanPreAuthenticate {
+                       get { return pre_auth; }
+               }
+
+               public Authorization PreAuthenticate (WebRequest request, ICredentials credentials)
+               {
+                       return new Authorization (token);
+               }
+       }
+
+       [TestFixture]
+       public class IntranetZoneCredentialPolicyTest {
+
+               private IntranetZoneCredentialPolicy policy;
+               private Uri uri;
+               private WebRequest request;
+               private NetworkCredential credential;
+               private IAuthenticationModule module;
+
+               [TestFixtureSetUp]
+               public void FixtureSetUp ()
+               {
+                       policy = new IntranetZoneCredentialPolicy ();
+                       uri = new Uri ("http://www.mono-project.com");
+                       request = WebRequest.Create (uri);
+                       credential = new NetworkCredential ("me", "mine");
+                       module = new Module ("type", true, "token");
+               }
+
+               [Test]
+               [ExpectedException (typeof (NullReferenceException))]
+               public void NullUri ()
+               {
+                       policy.ShouldSendCredential (null, request, credential, module);
+               }
+
+               [Test]
+               public void NullRequest ()
+               {
+                       Assert.IsFalse (policy.ShouldSendCredential (uri, null, credential, module));
+               }
+
+               [Test]
+               public void NullCredential ()
+               {
+                       Assert.IsFalse (policy.ShouldSendCredential (uri, request, null, module));
+               }
+
+               [Test]
+               public void NullModule ()
+               {
+                       Assert.IsFalse (policy.ShouldSendCredential (uri, request, credential, null));
+               }
+
+               [Test]
+               public void Localhost ()
+               {
+                       Uri localhost = new Uri ("http://localhost/");
+                       WebRequest wr = WebRequest.Create (uri);
+                       Assert.IsTrue (policy.ShouldSendCredential (localhost, wr, credential, module), "localhost");
+
+                       localhost = new Uri ("http://127.0.0.1");
+                       wr = WebRequest.Create (uri);
+                       Assert.IsFalse (policy.ShouldSendCredential (localhost, wr, credential, module), "127.0.0.1");
+               }
+
+               [Test]
+               public void LocalhostWithoutWebRequest ()
+               {
+                       Uri localhost = new Uri ("http://localhost/");
+                       Assert.IsTrue (policy.ShouldSendCredential (localhost, null, credential, module), "localhost");
+
+                       localhost = new Uri ("http://127.0.0.1");
+                       Assert.IsFalse (policy.ShouldSendCredential (localhost, null, credential, module), "127.0.0.1");
+               }
+
+               [Test]
+               public void LocalhostWithoutCredentials ()
+               {
+                       Uri localhost = new Uri ("http://localhost/");
+                       WebRequest wr = WebRequest.Create (uri);
+                       Assert.IsTrue (policy.ShouldSendCredential (localhost, wr, null, module), "localhost");
+
+                       localhost = new Uri ("http://127.0.0.1");
+                       wr = WebRequest.Create (uri);
+                       Assert.IsFalse (policy.ShouldSendCredential (localhost, wr, null, module), "127.0.0.1");
+               }
+
+               [Test]
+               public void LocalhostWithoutModule ()
+               {
+                       Uri localhost = new Uri ("http://localhost/");
+                       WebRequest wr = WebRequest.Create (uri);
+                       Assert.IsTrue (policy.ShouldSendCredential (localhost, wr, credential, null), "localhost");
+
+                       localhost = new Uri ("http://127.0.0.1");
+                       wr = WebRequest.Create (uri);
+                       Assert.IsFalse (policy.ShouldSendCredential (localhost, wr, credential, null), "127.0.0.1");
+               }
+       }
+}
+
+#endif