|
|
@@ -78,5 +78,295 @@ namespace MonoTests.System.Security.Cryptography.Xml {
|
|
|
XmlDocument doc = new XmlDocument();
|
|
|
object o = transform.GetOutput (doc.GetType ());
|
|
|
}
|
|
|
+
|
|
|
+ [Test]
|
|
|
+ public void C14NSpecExample1 ()
|
|
|
+ {
|
|
|
+ string res = ExecuteXmlDSigC14NTransform (C14NSpecExample1Input);
|
|
|
+ AssertEquals ("Example 1 from c14n spec - PIs, Comments, and Outside of Document Element (with comments)",
|
|
|
+ C14NSpecExample1Output, res);
|
|
|
+ }
|
|
|
+
|
|
|
+ [Test]
|
|
|
+ public void C14NSpecExample2 ()
|
|
|
+ {
|
|
|
+ string res = ExecuteXmlDSigC14NTransform (C14NSpecExample2Input);
|
|
|
+ AssertEquals ("Example 2 from c14n spec - Whitespace in Document Content (with comments)",
|
|
|
+ C14NSpecExample2Output, res);
|
|
|
+ }
|
|
|
+
|
|
|
+ [Test]
|
|
|
+ public void C14NSpecExample3 ()
|
|
|
+ {
|
|
|
+ string res = ExecuteXmlDSigC14NTransform (C14NSpecExample3Input);
|
|
|
+ AssertEquals ("Example 3 from c14n spec - Start and End Tags (with comments)",
|
|
|
+ C14NSpecExample3Output, res);
|
|
|
+ }
|
|
|
+
|
|
|
+ [Test]
|
|
|
+ public void C14NSpecExample4 ()
|
|
|
+ {
|
|
|
+ string res = ExecuteXmlDSigC14NTransform (C14NSpecExample4Input);
|
|
|
+ AssertEquals ("Example 4 from c14n spec - Character Modifications and Character References (with comments)",
|
|
|
+ C14NSpecExample4Output, res);
|
|
|
+ }
|
|
|
+
|
|
|
+ [Test]
|
|
|
+ public void C14NSpecExample5 ()
|
|
|
+ {
|
|
|
+ string res = ExecuteXmlDSigC14NTransform (C14NSpecExample5Input);
|
|
|
+ AssertEquals ("Example 5 from c14n spec - Entity References (with comments)",
|
|
|
+ C14NSpecExample5Output, res);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void C14NSpecExample6 ()
|
|
|
+ {
|
|
|
+ string res = ExecuteXmlDSigC14NTransform (C14NSpecExample6Input);
|
|
|
+ AssertEquals ("Example 6 from c14n spec - UTF-8 Encoding (with comments)",
|
|
|
+ C14NSpecExample6Output, res);
|
|
|
+ }
|
|
|
+
|
|
|
+ private string ExecuteXmlDSigC14NTransform (string InputXml)
|
|
|
+ {
|
|
|
+ XmlDocument doc = new XmlDocument ();
|
|
|
+ doc.PreserveWhitespace = true;
|
|
|
+ doc.LoadXml (InputXml);
|
|
|
+
|
|
|
+ // Aleksey:
|
|
|
+ // Currently Mono's XmlValidatingReader does not support resolving
|
|
|
+ // default attributes (vreader.ValidationType = ValidationType.None).
|
|
|
+ // We need it for C14N and this code needs to be uncommented
|
|
|
+ // when Mono will have it.
|
|
|
+ //
|
|
|
+ // UTF8Encoding utf8 = new UTF8Encoding ();
|
|
|
+ // byte[] data = utf8.GetBytes (InputXml.ToString ());
|
|
|
+ // Stream stream = new MemoryStream (data);
|
|
|
+ // XmlTextReader reader = new XmlTextReader (stream);
|
|
|
+ // XmlValidatingReader vreader = new XmlValidatingReader (reader);
|
|
|
+ // vreader.ValidationType = ValidationType.None;
|
|
|
+ // vreader.EntityHandling = EntityHandling.ExpandCharEntities;
|
|
|
+ // doc.Load(vreader);
|
|
|
+
|
|
|
+ transform.LoadInput (doc);
|
|
|
+ return Stream2String ((Stream)transform.GetOutput ());
|
|
|
+ }
|
|
|
+
|
|
|
+ private string Stream2String (Stream s)
|
|
|
+ {
|
|
|
+ StringBuilder sb = new StringBuilder ();
|
|
|
+ int b = s.ReadByte ();
|
|
|
+ while (b != -1) {
|
|
|
+ sb.Append (Convert.ToChar (b));
|
|
|
+ b = s.ReadByte ();
|
|
|
+ }
|
|
|
+ return sb.ToString ();
|
|
|
+ }
|
|
|
+
|
|
|
+ //
|
|
|
+ // Example 1 from C14N spec - PIs, Comments, and Outside of Document Element:
|
|
|
+ // http://www.w3.org/TR/xml-c14n#Example-OutsideDoc
|
|
|
+ //
|
|
|
+ // Aleksey:
|
|
|
+ // removed reference to an empty external DTD
|
|
|
+ //
|
|
|
+ static string C14NSpecExample1Input =
|
|
|
+ "<?xml version=\"1.0\"?>\n" +
|
|
|
+ "\n" +
|
|
|
+ "<?xml-stylesheet href=\"doc.xsl\"\n" +
|
|
|
+ " type=\"text/xsl\" ?>\n" +
|
|
|
+ "\n" +
|
|
|
+ // "<!DOCTYPE doc SYSTEM \"doc.dtd\">\n" +
|
|
|
+ "\n" +
|
|
|
+ "<doc>Hello, world!<!-- Comment 1 --></doc>\n" +
|
|
|
+ "\n" +
|
|
|
+ "<?pi-without-data ?>\n\n" +
|
|
|
+ "<!-- Comment 2 -->\n\n" +
|
|
|
+ "<!-- Comment 3 -->\n";
|
|
|
+ static string C14NSpecExample1Output =
|
|
|
+ "<?xml-stylesheet href=\"doc.xsl\"\n" +
|
|
|
+ " type=\"text/xsl\" ?>\n" +
|
|
|
+ "<doc>Hello, world!<!-- Comment 1 --></doc>\n" +
|
|
|
+ "<?pi-without-data?>\n" +
|
|
|
+ "<!-- Comment 2 -->\n" +
|
|
|
+ "<!-- Comment 3 -->";
|
|
|
+
|
|
|
+ //
|
|
|
+ // Example 2 from C14N spec - Whitespace in Document Content:
|
|
|
+ // http://www.w3.org/TR/xml-c14n#Example-WhitespaceInContent
|
|
|
+ //
|
|
|
+ static string C14NSpecExample2Input =
|
|
|
+ "<doc>\n" +
|
|
|
+ " <clean> </clean>\n" +
|
|
|
+ " <dirty> A B </dirty>\n" +
|
|
|
+ " <mixed>\n" +
|
|
|
+ " A\n" +
|
|
|
+ " <clean> </clean>\n" +
|
|
|
+ " B\n" +
|
|
|
+ " <dirty> A B </dirty>\n" +
|
|
|
+ " C\n" +
|
|
|
+ " </mixed>\n" +
|
|
|
+ "</doc>\n";
|
|
|
+ static string C14NSpecExample2Output =
|
|
|
+ "<doc>\n" +
|
|
|
+ " <clean> </clean>\n" +
|
|
|
+ " <dirty> A B </dirty>\n" +
|
|
|
+ " <mixed>\n" +
|
|
|
+ " A\n" +
|
|
|
+ " <clean> </clean>\n" +
|
|
|
+ " B\n" +
|
|
|
+ " <dirty> A B </dirty>\n" +
|
|
|
+ " C\n" +
|
|
|
+ " </mixed>\n" +
|
|
|
+ "</doc>";
|
|
|
+
|
|
|
+ //
|
|
|
+ // Example 3 from C14N spec - Start and End Tags:
|
|
|
+ // http://www.w3.org/TR/xml-c14n#Example-SETags
|
|
|
+ //
|
|
|
+ // Aleksey:
|
|
|
+ // Currently Mono XML parser does not support resolving default
|
|
|
+ // attributes thru XmlValidateReader interface. Thus this test
|
|
|
+ // fails because it needs a default attribute. Bellow I put a
|
|
|
+ // test w/o default attributes. Thus we commented out DTD declaration.
|
|
|
+ //
|
|
|
+ // See Also: ExecuteXmlDSigC14NTransformTest()
|
|
|
+ //
|
|
|
+ static string C14NSpecExample3Input =
|
|
|
+ // "<!DOCTYPE doc [<!ATTLIST e9 attr CDATA \"default\">]>\n" +
|
|
|
+ "<doc>\n" +
|
|
|
+ " <e1 />\n" +
|
|
|
+ " <e2 ></e2>\n" +
|
|
|
+ " <e3 name = \"elem3\" id=\"elem3\" />\n" +
|
|
|
+ " <e4 name=\"elem4\" id=\"elem4\" ></e4>\n" +
|
|
|
+ " <e5 a:attr=\"out\" b:attr=\"sorted\" attr2=\"all\" attr=\"I\'m\"\n" +
|
|
|
+ " xmlns:b=\"http://www.ietf.org\" \n" +
|
|
|
+ " xmlns:a=\"http://www.w3.org\"\n" +
|
|
|
+ " xmlns=\"http://www.uvic.ca\"/>\n" +
|
|
|
+ " <e6 xmlns=\"\" xmlns:a=\"http://www.w3.org\">\n" +
|
|
|
+ " <e7 xmlns=\"http://www.ietf.org\">\n" +
|
|
|
+ " <e8 xmlns=\"\" xmlns:a=\"http://www.w3.org\">\n" +
|
|
|
+ " <e9 xmlns=\"\" xmlns:a=\"http://www.ietf.org\"/>\n" +
|
|
|
+ " </e8>\n" +
|
|
|
+ " </e7>\n" +
|
|
|
+ " </e6>\n" +
|
|
|
+ "</doc>\n";
|
|
|
+ static string C14NSpecExample3Output =
|
|
|
+ "<doc>\n" +
|
|
|
+ " <e1></e1>\n" +
|
|
|
+ " <e2></e2>\n" +
|
|
|
+ " <e3 id=\"elem3\" name=\"elem3\"></e3>\n" +
|
|
|
+ " <e4 id=\"elem4\" name=\"elem4\"></e4>\n" +
|
|
|
+ " <e5 xmlns=\"http://www.uvic.ca\" xmlns:a=\"http://www.w3.org\" xmlns:b=\"http://www.ietf.org\" attr=\"I\'m\" attr2=\"all\" b:attr=\"sorted\" a:attr=\"out\"></e5>\n" +
|
|
|
+ " <e6 xmlns:a=\"http://www.w3.org\">\n" +
|
|
|
+ " <e7 xmlns=\"http://www.ietf.org\">\n" +
|
|
|
+ " <e8 xmlns=\"\">\n" +
|
|
|
+ // " <e9 xmlns:a=\"http://www.ietf.org\" attr=\"default\"></e9>\n" +
|
|
|
+ " <e9 xmlns:a=\"http://www.ietf.org\"></e9>\n" +
|
|
|
+ " </e8>\n" +
|
|
|
+ " </e7>\n" +
|
|
|
+ " </e6>\n" +
|
|
|
+ "</doc>";
|
|
|
+
|
|
|
+
|
|
|
+ //
|
|
|
+ // Example 4 from C14N spec - Character Modifications and Character References:
|
|
|
+ // http://www.w3.org/TR/xml-c14n#Example-Chars
|
|
|
+ //
|
|
|
+ // Aleksey:
|
|
|
+ // This test does not include "normId" element
|
|
|
+ // because it has an invalid ID attribute "id" which
|
|
|
+ // should be normalized by XML parser. Currently Mono
|
|
|
+ // does not support this (see comment after this example
|
|
|
+ // in the spec).
|
|
|
+ static string C14NSpecExample4Input =
|
|
|
+ "<!DOCTYPE doc [<!ATTLIST normId id ID #IMPLIED>]>\n" +
|
|
|
+ "<doc>\n" +
|
|
|
+ " <text>First line
 Second line</text>\n" +
|
|
|
+ " <value>2</value>\n" +
|
|
|
+ " <compute><![CDATA[value>\"0\" && value<\"10\" ?\"valid\":\"error\"]]></compute>\n" +
|
|
|
+ " <compute expr=\'value>\"0\" && value<\"10\" ?\"valid\":\"error\"\'>valid</compute>\n" +
|
|
|
+ " <norm attr=\' '   
	 ' \'/>\n" +
|
|
|
+ // " <normId id=\' '   
	 ' \'/>\n" +
|
|
|
+ "</doc>\n";
|
|
|
+ static string C14NSpecExample4Output =
|
|
|
+ "<doc>\n" +
|
|
|
+ " <text>First line
\n" +
|
|
|
+ "Second line</text>\n" +
|
|
|
+ " <value>2</value>\n" +
|
|
|
+ " <compute>value>\"0\" && value<\"10\" ?\"valid\":\"error\"</compute>\n" +
|
|
|
+ " <compute expr=\"value>"0" && value<"10" ?"valid":"error"\">valid</compute>\n" +
|
|
|
+ " <norm attr=\" \' 
	 \' \"></norm>\n" +
|
|
|
+ // " <normId id=\"\' 
	 \'\"></normId>\n" +
|
|
|
+ "</doc>";
|
|
|
+
|
|
|
+ //
|
|
|
+ // Example 5 from C14N spec - Entity References:
|
|
|
+ // http://www.w3.org/TR/xml-c14n#Example-Entities
|
|
|
+ //
|
|
|
+ // Aleksey:
|
|
|
+ // We don't support entities :( at all...
|
|
|
+ static string C14NSpecExample5Input =
|
|
|
+ "<!DOCTYPE doc [\n" +
|
|
|
+ "<!ATTLIST doc attrExtEnt ENTITY #IMPLIED>\n" +
|
|
|
+ "<!ENTITY ent1 \"Hello\">\n" +
|
|
|
+ "<!ENTITY ent2 SYSTEM \"world.txt\">\n" +
|
|
|
+ "<!ENTITY entExt SYSTEM \"earth.gif\" NDATA gif>\n" +
|
|
|
+ "<!NOTATION gif SYSTEM \"viewgif.exe\">\n" +
|
|
|
+ "]>\n" +
|
|
|
+ "<doc attrExtEnt=\"entExt\">\n" +
|
|
|
+ // " &ent1;, &ent2;!\n" +
|
|
|
+ "</doc>\n" +
|
|
|
+ "\n" +
|
|
|
+ "<!-- Let world.txt contain \"world\" (excluding the quotes) -->\n";
|
|
|
+ static string C14NSpecExample5Output =
|
|
|
+ "<doc attrExtEnt=\"entExt\">\n" +
|
|
|
+ // " Hello, world!\n" +
|
|
|
+ "</doc>\n" +
|
|
|
+ "<!-- Let world.txt contain \"world\" (excluding the quotes) -->";
|
|
|
+
|
|
|
+ //
|
|
|
+ // Example 6 from C14N spec - UTF-8 Encoding:
|
|
|
+ // http://www.w3.org/TR/xml-c14n#Example-UTF8
|
|
|
+ //
|
|
|
+ static string C14NSpecExample6Input =
|
|
|
+ "<?xml version=\"1.0\" encoding=\"ISO-8859-1\"?>\n" +
|
|
|
+ "<doc>©</doc>\n";
|
|
|
+ static string C14NSpecExample6Output =
|
|
|
+ "<doc>\xC2\xA9</doc>";
|
|
|
+
|
|
|
+
|
|
|
+ //
|
|
|
+ // Example 7 from C14N spec - Document Subsets:
|
|
|
+ // http://www.w3.org/TR/xml-c14n#Example-DocSubsets
|
|
|
+ //
|
|
|
+ // Aleksey:
|
|
|
+ // Well, XPath support in Mono is far from complete....
|
|
|
+ // I was not able to simplify the xpath expression from this test
|
|
|
+ // so it runs on Mono and still makes sense for testing this feature.
|
|
|
+ // Thus this test is not included in the suite now.
|
|
|
+ static string C14NSpecExample7Input =
|
|
|
+ "<!DOCTYPE doc [\n" +
|
|
|
+ "<!ATTLIST e2 xml:space (default|preserve) \'preserve\'>\n" +
|
|
|
+ "<!ATTLIST e3 id ID #IMPLIED>\n" +
|
|
|
+ "]>\n" +
|
|
|
+ "<doc xmlns=\"http://www.ietf.org\" xmlns:w3c=\"http://www.w3.org\">\n" +
|
|
|
+ " <e1>\n" +
|
|
|
+ " <e2 xmlns=\"\">\n" +
|
|
|
+ " <e3 id=\"E3\"/>\n" +
|
|
|
+ " </e2>\n" +
|
|
|
+ " </e1>\n" +
|
|
|
+ "</doc>\n";
|
|
|
+
|
|
|
+ static string C14NSpecExample7Xpath =
|
|
|
+ "(//.|//@*|//namespace::*)\n" +
|
|
|
+ "[\n" +
|
|
|
+ "self::ietf:e1\n" +
|
|
|
+ " or\n" +
|
|
|
+ "(parent::ietf:e1 and not(self::text() or self::e2))\n" +
|
|
|
+ " or\n" +
|
|
|
+ "count(id(\"E3\")|ancestor-or-self::node()) = count(ancestor-or-self::node())\n" +
|
|
|
+ "]";
|
|
|
+ static string C14NSpecExample7Output =
|
|
|
+ "<e1 xmlns=\"http://www.ietf.org\" xmlns:w3c=\"http://www.w3.org\"><e3 xmlns=\"\" id=\"E3\" xml:space=\"preserve\"></e3></e1>";
|
|
|
}
|
|
|
}
|