// // SignedInfoTest.cs - NUnit Test Cases for SignedInfo // // Author: // Sebastien Pouliot // // (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com) // Copyright (C) 2005 Novell, Inc (http://www.novell.com) // using System; using System.Security.Cryptography; using System.Security.Cryptography.Xml; using System.Xml; using NUnit.Framework; namespace MonoTests.System.Security.Cryptography.Xml { [TestFixture] public class SignedInfoTest : Assertion { protected SignedInfo info; [SetUp] protected void SetUp () { info = new SignedInfo (); } [Test] public void Empty () { AssertEquals ("CanonicalizationMethod", "http://www.w3.org/TR/2001/REC-xml-c14n-20010315", info.CanonicalizationMethod); AssertNull ("Id", info.Id); AssertNotNull ("References", info.References); AssertEquals ("References.Count", 0, info.References.Count); AssertNull ("SignatureLength", info.SignatureLength); AssertNull ("SignatureMethod", info.SignatureMethod); AssertEquals ("ToString()", "System.Security.Cryptography.Xml.SignedInfo", info.ToString ()); } [Test] [ExpectedException (typeof (CryptographicException))] public void EmptyException () { string xml = info.GetXml ().OuterXml; } [Test] public void Properties () { info.CanonicalizationMethod = "http://www.go-mono.com/"; AssertEquals ("CanonicalizationMethod", "http://www.go-mono.com/", info.CanonicalizationMethod); info.Id = "Mono::"; AssertEquals ("Id", "Mono::", info.Id); } [Test] public void References () { Reference r1 = new Reference (); r1.Uri = "http://www.go-mono.com/"; r1.AddTransform (new XmlDsigBase64Transform ()); info.AddReference (r1); AssertEquals ("References.Count 1", 1, info.References.Count); Reference r2 = new Reference ("http://www.motus.com/"); r2.AddTransform (new XmlDsigBase64Transform ()); info.AddReference (r2); AssertEquals ("References.Count 2", 2, info.References.Count); info.SignatureMethod = "http://www.w3.org/2000/09/xmldsig#dsa-sha1"; } [Test] public void Load () { string xml = "/Vvq6sXEVbtZC8GwNtLQnGOy/VI="; XmlDocument doc = new XmlDocument (); doc.LoadXml (xml); info.LoadXml (doc.DocumentElement); AssertEquals ("LoadXml", xml, (info.GetXml ().OuterXml)); AssertEquals ("LoadXml-C14N", "http://www.w3.org/TR/2001/REC-xml-c14n-20010315", info.CanonicalizationMethod); AssertEquals ("LoadXml-Algo", "http://www.w3.org/2000/09/xmldsig#rsa-sha1", info.SignatureMethod); AssertEquals ("LoadXml-Ref1", 1, info.References.Count); } // there are many (documented) not supported methods in SignedInfo [Test] [ExpectedException (typeof (NotSupportedException))] public void NotSupportedCount () { int n = info.Count; } [Test] [ExpectedException (typeof (NotSupportedException))] public void NotSupportedIsReadOnly () { bool b = info.IsReadOnly; } [Test] [ExpectedException (typeof (NotSupportedException))] public void NotSupportedIsSynchronized () { bool b = info.IsSynchronized; } [Test] [ExpectedException (typeof (NotSupportedException))] public void NotSupportedSyncRoot () { object o = info.SyncRoot; } [Test] [ExpectedException (typeof (NotSupportedException))] public void NotSupportedCopyTo () { info.CopyTo (null, 0); } // from phaos testcase const string xmlForGetXml = @" Alfonso Soriano 2B New York Yankees " + @"" + @"nDF2V/bzRd0VE3EwShWtsBzTEDc=fbye4Xm//RPUTsLd1dwJPo0gPZYX6gVYCEB/gz2348EARNk/nCCch1fFfpuqAGMKg4ayVC0yWkUyE5V4QB33jaGlh9wuNQSjxs6TIvFwSsT+0ioDgVgFv0gVeasbyNL4rFEHuAWL8QKwDT9L6b2wUvJC90DmpBs9GMR2jTZIWlM=MIIC0DCCAjmgAwIBAgIDD0JBMA0GCSqGSIb3DQEBBAUAMHwxCzAJBgNVBAYTAlVTMREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxGTAXBgNVBAoTEFBoYW9zIFRlY2hub2xvZ3kxFDASBgNVBAsTC0VuZ2luZWVyaW5nMRYwFAYDVQQDEw1UZXN0IENBIChSU0EpMB4XDTAyMDQyOTE5MTY0MFoXDTEyMDQyNjE5MTY0MFowgYAxCzAJBgNVBAYTAlVTMREwDwYDVQQIEwhOZXcgWW9yazERMA8GA1UEBxMITmV3IFlvcmsxGTAXBgNVBAoTEFBoYW9zIFRlY2hub2xvZ3kxFDASBgNVBAsTC0VuZ2luZWVyaW5nMRowGAYDVQQDExFUZXN0IENsaWVudCAoUlNBKTCBnzANBgkqhkiG9w0BAQEFAAOBjQAwgYkCgYEAgIb6nAB9oS/AI5jIj6WymvQhRxiMlE07G4abmMliYi5zWzvaFE2tnU+RZIBgtoXcgDEIU/vsLQut7nzCn9mHxC8JEaV4D4U91j64AyZakShqJw7qjJfqUxxPL0yJv2oFiouPDjGuJ9JPi0NrsZq+yfWfM54s4b9SNkcOIVMybZUCAwEAAaNbMFkwDAYDVR0TAQH/BAIwADAPBgNVHQ8BAf8EBQMDB9gAMBkGA1UdEQQSMBCBDnRlY2hAcGhhb3MuY29tMB0GA1UdDgQWBBQT58rBCxPmVLeZaYGRqVROnQlFbzANBgkqhkiG9w0BAQQFAAOBgQCxbCovFST25t+ryN1RipqozxJQcguKfeCwbfgBNobzcRvoW0kSIf7zi4mtQajDM0NfslFF51/dex5Rn64HmFFshSwSvQQMyf5Cfaqv2XQ60OXq6nAFG6WbHoge6RqfIez2MWDLoSB6plsjKtMmL3mcybBhROtX5GGuLx1NtfhNFQ==CN=Test CA (RSA),OU=Engineering,O=Phaos Technology,L=New York,ST=New York,C=US1000001CN=Test Client (RSA),OU=Engineering,O=Phaos Technology,L=New York,ST=New York,C=USE+fKwQsT5lS3mWmBkalUTp0JRW8="; [Test] public void GetXmlWithoutSetProperty () { string result = @"nDF2V/bzRd0VE3EwShWtsBzTEDc="; XmlDocument doc = new XmlDocument (); doc.LoadXml (xmlForGetXml); SignedInfo sig = new SignedInfo (); sig.LoadXml ((XmlElement) doc.SelectSingleNode ("//*[local-name()='SignedInfo']")); XmlElement el = sig.GetXml (); AssertEquals ("#GetXmlWOSetProperty.document", doc, el.OwnerDocument); AssertEquals ("#GetXmlWOSetProperty.outerxml", result, el.OuterXml); } [Test] #if NET_2_0 // urn:foo is'nt accepted when calling GetXml [ExpectedException (typeof (CryptographicException))] [Category ("NotWorking")] #endif public void GetXmlWithSetProperty () { XmlDocument doc = new XmlDocument (); doc.LoadXml (xmlForGetXml); SignedInfo sig = new SignedInfo (); sig.LoadXml ((XmlElement) doc.SelectSingleNode ("//*[local-name()='SignedInfo']")); sig.CanonicalizationMethod = "urn:foo"; XmlElement el = sig.GetXml (); Assert ("#GetXmlWithSetProperty.document", doc != el.OwnerDocument); } [Test] // never fails public void EmptyReferenceWithoutSetProperty () { XmlDocument doc = new XmlDocument (); doc.LoadXml (xmlForGetXml); XmlNode n = doc.SelectSingleNode ("//*[local-name()='Reference']"); n.ParentNode.RemoveChild (n); SignedInfo sig = new SignedInfo (); sig.LoadXml ((XmlElement) doc.SelectSingleNode ("//*[local-name()='SignedInfo']")); XmlElement el = sig.GetXml (); } [Test] [ExpectedException (typeof (CryptographicException))] public void EmptyReferenceWithSetProperty () { XmlDocument doc = new XmlDocument (); doc.LoadXml (xmlForGetXml); XmlNode n = doc.SelectSingleNode ("//*[local-name()='Reference']"); n.ParentNode.RemoveChild (n); SignedInfo sig = new SignedInfo (); sig.LoadXml ((XmlElement) doc.SelectSingleNode ("//*[local-name()='SignedInfo']")); sig.CanonicalizationMethod = "urn:foo"; XmlElement el = sig.GetXml (); } } }