// // StrongNameTest.cs - NUnit Test Cases for StrongName // // Author: // Sebastien Pouliot // // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com) // Copyright (C) 2004 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.Security; using System.Security.Cryptography.X509Certificates; using System.Security.Permissions; using System.Security.Policy; namespace MonoTests.System.Security.Policy { [TestFixture] public class StrongNameTest { static byte[] pk = { 0x00, 0x24, 0x00, 0x00, 0x04, 0x80, 0x00, 0x00, 0x94, 0x00, 0x00, 0x00, 0x06, 0x02, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x52, 0x53, 0x41, 0x31, 0x00, 0x04, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x3D, 0xBD, 0x72, 0x08, 0xC6, 0x2B, 0x0E, 0xA8, 0xC1, 0xC0, 0x58, 0x07, 0x2B, 0x63, 0x5F, 0x7C, 0x9A, 0xBD, 0xCB, 0x22, 0xDB, 0x20, 0xB2, 0xA9, 0xDA, 0xDA, 0xEF, 0xE8, 0x00, 0x64, 0x2F, 0x5D, 0x8D, 0xEB, 0x78, 0x02, 0xF7, 0xA5, 0x36, 0x77, 0x28, 0xD7, 0x55, 0x8D, 0x14, 0x68, 0xDB, 0xEB, 0x24, 0x09, 0xD0, 0x2B, 0x13, 0x1B, 0x92, 0x6E, 0x2E, 0x59, 0x54, 0x4A, 0xAC, 0x18, 0xCF, 0xC9, 0x09, 0x02, 0x3F, 0x4F, 0xA8, 0x3E, 0x94, 0x00, 0x1F, 0xC2, 0xF1, 0x1A, 0x27, 0x47, 0x7D, 0x10, 0x84, 0xF5, 0x14, 0xB8, 0x61, 0x62, 0x1A, 0x0C, 0x66, 0xAB, 0xD2, 0x4C, 0x4B, 0x9F, 0xC9, 0x0F, 0x3C, 0xD8, 0x92, 0x0F, 0xF5, 0xFF, 0xCE, 0xD7, 0x6E, 0x5C, 0x6F, 0xB1, 0xF5, 0x7D, 0xD3, 0x56, 0xF9, 0x67, 0x27, 0xA4, 0xA5, 0x48, 0x5B, 0x07, 0x93, 0x44, 0x00, 0x4A, 0xF8, 0xFF, 0xA4, 0xCB }; private StrongNamePublicKeyBlob snpkb; private string name; private Version version; [SetUp] public void SetUp () { snpkb = new StrongNamePublicKeyBlob (pk); name = "StrongNameName"; version = new Version (1, 2, 3, 4); } [Test] [ExpectedException (typeof (ArgumentNullException))] public void NullPublicKeyConstructor () { StrongName sn = new StrongName (null, name, version); } [Test] [ExpectedException (typeof (ArgumentNullException))] public void NullNameConstructor () { StrongName sn = new StrongName (snpkb, null, version); } [Test] [ExpectedException (typeof (ArgumentNullException))] public void NullVersionConstructor () { StrongName sn = new StrongName (snpkb, name, null); } [Test] public void CompleteConstructor () { StrongName sn = new StrongName (snpkb, name, version); Assert.AreEqual (name, sn.Name, "Name"); Assert.AreEqual (snpkb.ToString (), sn.PublicKey.ToString (), "PublicKey"); Assert.AreEqual (version.ToString (), sn.Version.ToString (), "Version"); // same as StrongNamePublicKeyBlob Assert.AreEqual (snpkb.GetHashCode (), sn.GetHashCode (), "GetHashCode"); IPermission ip = sn.CreateIdentityPermission (null); Assert.IsTrue ((ip is StrongNameIdentityPermission), "CreateIdentityPermission"); string s = String.Format ("{0}", Environment.NewLine, #if NET_2_0 String.Empty); #else " "); #endif Assert.AreEqual (s, sn.ToString (), "ToString"); } [Test] public void Copy () { StrongName sn = new StrongName (snpkb, name, version); StrongName snCopy = (StrongName) sn.Copy (); Assert.IsNotNull (snCopy, "Copy"); Assert.IsTrue (sn.Equals (snCopy), "Copy-Equals"); Assert.AreEqual (sn.GetHashCode (), snCopy.GetHashCode (), "Copy-GetHashCode"); Assert.AreEqual (sn.ToString (), snCopy.ToString (), "Copy-ToString"); } } }