1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266
|
//
// XmlDsigXsltTransformTest.cs - NUnit Test Cases for XmlDsigXsltTransform
//
// Author:
// Sebastien Pouliot <sebastien@ximian.com>
// Atsushi Enomoto <atsushi@ximian.com>
//
// (C) 2002, 2003 Motus Technologies Inc. (http://www.motus.com)
// (C) 2004 Novell (http://www.novell.com)
//
using System;
using System.IO;
using System.Security.Cryptography;
using System.Security.Cryptography.Xml;
using System.Text;
using System.Xml;
using System.Xml.Xsl;
using NUnit.Framework;
namespace MonoTests.System.Security.Cryptography.Xml {
// Note: GetInnerXml is protected in XmlDsigXsltTransform making it
// difficult to test properly. This class "open it up" :-)
public class UnprotectedXmlDsigXsltTransform : XmlDsigXsltTransform {
public XmlNodeList UnprotectedGetInnerXml () {
return base.GetInnerXml ();
}
}
[TestFixture]
public class XmlDsigXsltTransformTest : Assertion {
protected UnprotectedXmlDsigXsltTransform transform;
[SetUp]
protected void SetUp ()
{
transform = new UnprotectedXmlDsigXsltTransform ();
}
[Test]
public void Properties ()
{
AssertEquals ("Algorithm", "http://www.w3.org/TR/1999/REC-xslt-19991116", transform.Algorithm);
Type[] input = transform.InputTypes;
Assert ("Input #", (input.Length == 3));
// check presence of every supported input types
bool istream = false;
bool ixmldoc = false;
bool ixmlnl = false;
foreach (Type t in input) {
if (t.ToString () == "System.IO.Stream")
istream = true;
if (t.ToString () == "System.Xml.XmlDocument")
ixmldoc = true;
if (t.ToString () == "System.Xml.XmlNodeList")
ixmlnl = true;
}
Assert ("Input Stream", istream);
Assert ("Input XmlDocument", ixmldoc);
Assert ("Input XmlNodeList", ixmlnl);
Type[] output = transform.OutputTypes;
Assert ("Output #", (output.Length == 1));
// check presence of every supported output types
bool ostream = false;
foreach (Type t in output) {
if (t.ToString () == "System.IO.Stream")
ostream = true;
}
Assert ("Output Stream", ostream);
}
[Test]
public void GetInnerXml ()
{
XmlNodeList xnl = transform.UnprotectedGetInnerXml ();
AssertNull ("Default InnerXml", xnl);
}
private string Stream2Array (Stream s)
{
StringBuilder sb = new StringBuilder ();
int b = s.ReadByte ();
while (b != -1) {
sb.Append (b.ToString("X2"));
b = s.ReadByte ();
}
return sb.ToString ();
}
[Test]
#if NET_2_0
[ExpectedException (typeof (ArgumentNullException))]
#else
[ExpectedException (typeof (NullReferenceException))]
#endif
public void EmptyXslt ()
{
string test = "<Test>XmlDsigXsltTransform</Test>";
XmlDocument doc = new XmlDocument ();
doc.LoadXml (test);
transform.LoadInput (doc.ChildNodes);
Stream s = (Stream) transform.GetOutput ();
}
[Test]
// Note that this is _valid_ as an "embedded stylesheet".
// (see XSLT spec 2.7)
public void EmbeddedStylesheet ()
{
string test = "<Test xsl:version='1.0' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>XmlDsigXsltTransform</Test>";
XmlDocument doc = new XmlDocument ();
doc.LoadXml (test);
transform.LoadInnerXml (doc.ChildNodes);
transform.LoadInput (doc);
Stream s = (Stream) transform.GetOutput ();
}
[Test]
public void InvalidXslt ()
{
bool result = false;
try {
string test = "<xsl:element name='foo' xmlns:xsl='http://www.w3.org/1999/XSL/Transform'>XmlDsigXsltTransform</xsl:element>";
XmlDocument doc = new XmlDocument ();
doc.LoadXml (test);
transform.LoadInnerXml (doc.ChildNodes);
Stream s = (Stream) transform.GetOutput ();
}
#if NET_2_0
catch (Exception e) {
// we must deal with an internal exception
result = (e.GetType ().ToString ().EndsWith ("XsltLoadException"));
result = true;
#else
catch (XsltCompileException) {
result = true;
#endif
}
finally {
Assert ("Exception not thrown", result);
}
}
[Test]
#if NET_2_0
[ExpectedException (typeof (ArgumentNullException))]
#else
[ExpectedException (typeof (NullReferenceException))]
#endif
public void OnlyInner ()
{
string test = "<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" xmlns=\"http://www.w3.org/TR/xhtml1/strict\" version=\"1.0\">";
test += "<xsl:output encoding=\"UTF-8\" indent=\"no\" method=\"xml\" />";
test += "<xsl:template match=\"/\"><html><head><title>Notaries</title>";
test += "</head><body><table><xsl:for-each select=\"Notaries/Notary\">";
test += "<tr><th><xsl:value-of select=\"@name\" /></th></tr></xsl:for-each>";
test += "</table></body></html></xsl:template></xsl:stylesheet>";
XmlDocument doc = new XmlDocument ();
doc.LoadXml (test);
transform.LoadInnerXml (doc.ChildNodes);
Stream s = (Stream) transform.GetOutput ();
string output = Stream2Array (s);
}
private XmlDocument GetXslDoc ()
{
string test = "<Transform Algorithm=\"http://www.w3.org/TR/1999/REC-xslt-19991116\" xmlns='http://www.w3.org/2000/09/xmldsig#'>";
test += "<xsl:stylesheet xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\" xmlns=\"http://www.w3.org/TR/xhtml1/strict\" version=\"1.0\">";
test += "<xsl:output encoding=\"UTF-8\" indent=\"no\" method=\"xml\" />";
test += "<xsl:template match=\"/\"><html><head><title>Notaries</title>";
test += "</head><body><table><xsl:for-each select=\"Notaries/Notary\">";
test += "<tr><th><xsl:value-of select=\"@name\" /></th></tr></xsl:for-each>";
test += "</table></body></html></xsl:template></xsl:stylesheet></Transform>";
XmlDocument doc = new XmlDocument ();
doc.LoadXml (test);
return doc;
}
[Test]
public void LoadInputAsXmlDocument ()
{
XmlDocument doc = GetXslDoc ();
transform.LoadInnerXml (doc.DocumentElement.ChildNodes);
transform.LoadInput (doc);
Stream s = (Stream) transform.GetOutput ();
string output = Stream2Array (s);
}
[Test]
public void LoadInputAsXmlNodeList ()
{
XmlDocument doc = GetXslDoc ();
transform.LoadInnerXml (doc.DocumentElement.ChildNodes);
transform.LoadInput (doc.ChildNodes);
Stream s = (Stream) transform.GetOutput ();
string output = Stream2Array (s);
}
[Test]
public void LoadInputAsStream ()
{
XmlDocument doc = GetXslDoc ();
transform.LoadInnerXml (doc.DocumentElement.ChildNodes);
MemoryStream ms = new MemoryStream ();
doc.Save (ms);
ms.Position = 0;
transform.LoadInput (ms);
Stream s = (Stream) transform.GetOutput ();
string output = Stream2Array (s);
}
protected void AssertEquals (string msg, XmlNodeList expected, XmlNodeList actual)
{
for (int i=0; i < expected.Count; i++) {
if (expected[i].OuterXml != actual[i].OuterXml)
Fail (msg + " [" + i + "] expected " + expected[i].OuterXml + " bug got " + actual[i].OuterXml);
}
}
[Test]
public void LoadInnerXml ()
{
XmlDocument doc = GetXslDoc ();
transform.LoadInnerXml (doc.DocumentElement.ChildNodes);
XmlNodeList xnl = transform.UnprotectedGetInnerXml ();
AssertEquals ("LoadInnerXml", doc.DocumentElement.ChildNodes, xnl);
}
[Test]
public void Load2 ()
{
XmlDocument doc = GetXslDoc ();
transform.LoadInnerXml (doc.DocumentElement.ChildNodes);
transform.LoadInput (doc);
Stream s = (Stream) transform.GetOutput ();
string output = Stream2Array (s);
}
[Test]
public void UnsupportedInput ()
{
byte[] bad = { 0xBA, 0xD };
// LAMESPEC: input MUST be one of InputType - but no exception is thrown (not documented)
transform.LoadInput (bad);
}
[Test]
[ExpectedException (typeof (ArgumentException))]
public void UnsupportedOutput ()
{
XmlDocument doc = new XmlDocument();
object o = transform.GetOutput (doc.GetType ());
}
}
}
|