// // System.Xml.XmlSerializerTests // // Author: // Erik LeBel // // (C) 2003 Erik LeBel // // // NOTES: // Where possible, these tests avoid testing the order of // an object's members serialization. Mono and .NET do not // reflect members in the same order. // // Only serializations tests so far, no deserialization. // // FIXME // test XmlArrayAttribute // test XmlArrayItemAttribute // test serialization of decimal type // test serialization of Guid type // test XmlNode serialization with and without modifying attributes. // test deserialization // FIXMEs found in this file using System; using System.IO; using System.Text; using System.Xml; using System.Xml.Schema; using System.Xml.Serialization; using NUnit.Framework; using MonoTests.System.Xml.TestClasses; namespace MonoTests.System.Xml { [TestFixture] public class XmlSerializerTests { StringWriter sw; XmlTextWriter xtw; XmlSerializer xs; private void SetUpWriter() { sw = new StringWriter (); xtw = new XmlTextWriter (sw); xtw.QuoteChar = '\''; xtw.Formatting = Formatting.None; } private string WriterText { get { string val = sw.GetStringBuilder().ToString(); int offset = val.IndexOf('>') + 1; val = val.Substring(offset); return val; } } private void Serialize(object o) { SetUpWriter(); xs = new XmlSerializer(o.GetType()); xs.Serialize(xtw, o); } private void Serialize(object o, Type type) { SetUpWriter(); xs = new XmlSerializer(type); xs.Serialize(xtw, o); } private void Serialize(object o, XmlSerializerNamespaces ns) { SetUpWriter(); xs = new XmlSerializer(o.GetType()); xs.Serialize(xtw, o, ns); } private void Serialize(object o, XmlAttributeOverrides ao) { SetUpWriter(); xs = new XmlSerializer(o.GetType(), ao); xs.Serialize(xtw, o); } private void Serialize(object o, XmlRootAttribute root) { SetUpWriter(); xs = new XmlSerializer(o.GetType(), root); xs.Serialize(xtw, o); } // test basic types //////////////////////////////////////////////////////// [Test] public void TestSerializeInt() { Serialize(10); Assertion.AssertEquals(WriterText, "10"); } [Test] public void TestSerializeBool() { Serialize(true); Assertion.AssertEquals(WriterText, "true"); Serialize(false); Assertion.AssertEquals(WriterText, "false"); } [Test] public void TestSerializeString() { Serialize("hello"); Assertion.AssertEquals(WriterText, "hello"); } [Test] public void TestSerializeEmptyString() { Serialize(String.Empty); Assertion.AssertEquals(WriterText, ""); } [Test] public void TestSerializeNullObject() { Serialize(null, typeof(object)); Assertion.AssertEquals(WriterText, ""); } [Test] public void TestSerializeNullString() { Serialize(null, typeof(string)); Assertion.Assert(WriterText.EndsWith("xsi:nil='true' />")); } [Test] public void TestSerializeIntArray() { Serialize(new int[] {1, 2, 3, 4}); Assertion.Assert(WriterText.EndsWith("1234")); } [Test] public void TestSerializeEmptyArray() { Serialize(new int[] {}); Assertion.AssertEquals(WriterText, ""); } [Test] public void TestSerializeChar() { Serialize('A'); Assertion.AssertEquals(WriterText, "65"); Serialize('\0'); Assertion.AssertEquals(WriterText, "0"); Serialize('\n'); Assertion.AssertEquals(WriterText, "10"); Serialize('\uFF01'); Assertion.AssertEquals(WriterText, "65281"); } [Test] public void TestSerializeFloat() { Serialize(10.78); Assertion.AssertEquals(WriterText, "10.78"); Serialize(-1e8); Assertion.AssertEquals(WriterText, "-100000000"); // FIXME test INF and other boundary conditions that may exist with floats } [Test] public void TestSerializeEnumeration() { Serialize(SimpleEnumeration.FIRST); Assertion.AssertEquals(WriterText, "FIRST"); Serialize(SimpleEnumeration.SECOND); Assertion.AssertEquals(WriterText, "SECOND"); } [Test] public void TestSerializeQualifiedName() { Serialize(new XmlQualifiedName("me", "home.urn")); Assertion.AssertEquals(WriterText, "q1:me"); } [Test] public void TestSerializeBytes() { Serialize((byte)0xAB); Assertion.AssertEquals(WriterText, "171"); Serialize((byte)15); Assertion.AssertEquals(WriterText, "15"); } [Test] public void TestSerializeByteArrays() { Serialize(new byte[] {}); Assertion.AssertEquals(WriterText, ""); Serialize(new byte[] {0xAB, 0xCD}); Assertion.AssertEquals(WriterText, "q80="); } [Test] public void TestSerializeDateTime() { DateTime d = new DateTime(); Serialize(d); Assertion.AssertEquals(WriterText, "0001-01-01T00:00:00.0000000-05:00"); } /* FIXME - decimal - Guid - XmlNode objects [Test] public void TestSerialize() { Serialize(); Assertion.AssertEquals(WriterText, ""); } */ // test basic class serialization ///////////////////////////////////// [Test] public void TestSerializeSimpleClass() { SimpleClass simple = new SimpleClass(); Serialize(simple); Assertion.AssertEquals(WriterText, ""); simple.something = "hello"; Serialize(simple); Assertion.AssertEquals(WriterText, "hello"); } [Test] public void TestSerializeStringCollection() { StringCollection strings = new StringCollection(); Serialize(strings); Assertion.AssertEquals(WriterText, ""); strings.Add("hello"); strings.Add("goodbye"); Serialize(strings); Assertion.Assert(WriterText.EndsWith(">hellogoodbye")); } [Test] public void TestSerializePlainContainer() { StringCollectionContainer container = new StringCollectionContainer(); Serialize(container); Assertion.Assert(WriterText.EndsWith(">")); container.Messages.Add("hello"); container.Messages.Add("goodbye"); Serialize(container); Assertion.Assert(WriterText.EndsWith(">hellogoodbye")); } [Test] public void TestSerializeArrayContainer() { ArrayContainer container = new ArrayContainer(); Serialize(container); Assertion.AssertEquals(WriterText, ""); container.items = new object[] {10, 20}; Serialize(container); Assertion.Assert(WriterText.EndsWith(">1020")); container.items = new object[] {10, "hello"}; Serialize(container); Assertion.Assert(WriterText.EndsWith(">10hello")); } [Test] public void TestSerializeClassArrayContainer() { ClassArrayContainer container = new ClassArrayContainer(); Serialize(container); Assertion.AssertEquals(WriterText, ""); SimpleClass simple1 = new SimpleClass(); simple1.something = "hello"; SimpleClass simple2 = new SimpleClass(); simple2.something = "hello"; container.items = new SimpleClass[2]; container.items[0] = simple1; container.items[1] = simple2; Serialize(container); Assertion.Assert(WriterText.EndsWith(">hellohello")); } // test basic attributes /////////////////////////////////////////////// [Test] public void TestSerializeSimpleClassWithXmlAttributes() { SimpleClassWithXmlAttributes simple = new SimpleClassWithXmlAttributes(); Serialize(simple); Assertion.AssertEquals(WriterText, ""); simple.something = "hello"; Serialize(simple); Assertion.Assert(WriterText.EndsWith(" member='hello' />")); } // test overrides /////////////////////////////////////////////////////// [Test] public void TestSerializeSimpleClassWithOverrides() { // Also tests XmlIgnore XmlAttributeOverrides overrides = new XmlAttributeOverrides(); XmlAttributes attr = new XmlAttributes(); attr.XmlIgnore = true; overrides.Add(typeof(SimpleClassWithXmlAttributes), "something", attr); SimpleClassWithXmlAttributes simple = new SimpleClassWithXmlAttributes(); simple.something = "hello"; Serialize(simple, overrides); Assertion.AssertEquals(WriterText, ""); } // test xmlText ////////////////////////////////////////////////////////// [Test] public void TestSerializeXmlTextAttribute() { SimpleClass simple = new SimpleClass(); simple.something = "hello"; XmlAttributeOverrides overrides = new XmlAttributeOverrides(); XmlAttributes attr = new XmlAttributes(); overrides.Add(typeof(SimpleClass), "something", attr); attr.XmlText = new XmlTextAttribute(); Serialize(simple, overrides); Assertion.AssertEquals(WriterText, "hello"); attr.XmlText = new XmlTextAttribute(typeof(string)); Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(">hello")); try { attr.XmlText = new XmlTextAttribute(typeof(byte[])); Serialize(simple, overrides); Assertion.Fail("XmlText.Type does not match the type it serializes: this should have failed"); } catch (Exception) { } try { attr.XmlText = new XmlTextAttribute(); attr.XmlText.DataType = "sometype"; Serialize(simple, overrides); Assertion.Fail("XmlText.DataType does not match the type it serializes: this should have failed"); } catch (Exception) { } } // test xmlRoot ////////////////////////////////////////////////////////// [Test] public void TestSerializeXmlRootAttribute() { // constructor override & element name XmlRootAttribute root = new XmlRootAttribute(); root.ElementName = "renamed"; SimpleClassWithXmlAttributes simpleWithAttributes = new SimpleClassWithXmlAttributes(); Serialize(simpleWithAttributes, root); Assertion.Assert(WriterText.StartsWith(""); } [Test] public void TestSerializeXmlRootAttributeOnMember() { // nested root XmlAttributeOverrides overrides = new XmlAttributeOverrides(); XmlAttributes childAttr = new XmlAttributes(); childAttr.XmlRoot = new XmlRootAttribute("simple"); overrides.Add(typeof(SimpleClass), childAttr); XmlAttributes attr = new XmlAttributes(); attr.XmlRoot = new XmlRootAttribute("simple"); overrides.Add(typeof(ClassArrayContainer), attr); ClassArrayContainer container = new ClassArrayContainer(); container.items = new SimpleClass[1]; container.items[0] = new SimpleClass();; Serialize(container, overrides); Assertion.Assert(WriterText.EndsWith(">")); // FIXME test data type } // test XmlAttribute ///////////////////////////////////////////////////// [Test] public void TestSerializeXmlAttributeAttribute() { // null XmlAttributeOverrides overrides = new XmlAttributeOverrides(); XmlAttributes attr = new XmlAttributes(); attr.XmlAttribute = new XmlAttributeAttribute(); overrides.Add(typeof(SimpleClass), "something", attr); SimpleClass simple = new SimpleClass();; Serialize(simple, overrides); Assertion.AssertEquals(WriterText, ""); // regular simple.something = "hello"; Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(" something='hello' />")); // AttributeName attr.XmlAttribute.AttributeName = "somethingelse"; Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(" somethingelse='hello' />")); // Type // FIXME this should work, shouldnt it? // attr.XmlAttribute.Type = typeof(string); // Serialize(simple, overrides); // Assertion.Assert(WriterText.EndsWith(" something='hello' />")); // Namespace attr.XmlAttribute.Namespace = "some:urn"; Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(" d1p1:somethingelse='hello' xmlns:d1p1='some:urn' />")); // FIXME DataType // FIXME XmlSchemaForm Form // FIXME write XmlQualifiedName as attribute } // test XmlElement /////////////////////////////////////////////////////// [Test] public void TestSerializeXmlElementAttribute() { XmlAttributeOverrides overrides = new XmlAttributeOverrides(); XmlAttributes attr = new XmlAttributes(); XmlElementAttribute element = new XmlElementAttribute(); attr.XmlElements.Add(element); overrides.Add(typeof(SimpleClass), "something", attr); // null SimpleClass simple = new SimpleClass();; Serialize(simple, overrides); Assertion.AssertEquals(WriterText, ""); // not null simple.something = "hello"; Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(">hello")); //ElementName element.ElementName = "saying"; Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(">hello")); //IsNullable element.IsNullable = false; simple.something = null; Serialize(simple, overrides); Assertion.AssertEquals(WriterText, ""); element.IsNullable = true; simple.something = null; Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(">")); //Namespace element.ElementName = null; element.IsNullable = false; element.Namespace = "some:urn"; simple.something = "hello"; Serialize(simple, overrides); Assertion.Assert(WriterText.EndsWith(">hello")); //FIXME DataType //FIXME Form //FIXME Type } // test XmlElementAttribute with arrays and collections ////////////////// [Test] public void TestSerializeCollectionWithXmlElementAttribute() { // the rule is: // if no type is specified or the specified type // matches the contents of the collection, // serialize each element in an element named after the member. // if the type does not match, or matches the collection itself, // create a base wrapping element for the member, and then // wrap each collection item in its own wrapping element based on type. XmlAttributeOverrides overrides = new XmlAttributeOverrides(); XmlAttributes attr = new XmlAttributes(); XmlElementAttribute element = new XmlElementAttribute(); attr.XmlElements.Add(element); overrides.Add(typeof(StringCollectionContainer), "Messages", attr); // empty collection & no type info in XmlElementAttribute StringCollectionContainer container = new StringCollectionContainer(); Serialize(container, overrides); Assertion.AssertEquals(WriterText, ""); // non-empty collection & no type info in XmlElementAttribute container.Messages.Add("hello"); Serialize(container, overrides); Assertion.Assert(WriterText.EndsWith(">hello")); // non-empty collection & only type info in XmlElementAttribute element.Type = typeof(StringCollection); Serialize(container, overrides); Assertion.Assert(WriterText.EndsWith(">hello")); // non-empty collection & only type info in XmlElementAttribute element.Type = typeof(string); Serialize(container, overrides); Assertion.Assert(WriterText.EndsWith(">hello")); // two elements container.Messages.Add("goodbye"); element.Type = null; Serialize(container, overrides); Assertion.Assert(WriterText.EndsWith(">hellogoodbye")); } // test DefaultValue ///////////////////////////////////////////////////// [Test] public void TestSerializeDefaultValueAttribute() { XmlAttributeOverrides overrides = new XmlAttributeOverrides(); XmlAttributes attr = new XmlAttributes(); string defaultValueInstance = "nothing"; attr.XmlDefaultValue = defaultValueInstance; overrides.Add(typeof(SimpleClass), "something", attr); // use the default SimpleClass simple = new SimpleClass(); Serialize(simple, overrides); Assertion.AssertEquals(WriterText, ""); // same value as default simple.something = defaultValueInstance; Serialize(simple, overrides); Assertion.AssertEquals(WriterText, ""); // some other value simple.something = "hello"; Serialize(simple, overrides); Assertion.AssertEquals(WriterText, "hello"); } // test XmlEnum ////////////////////////////////////////////////////////// [Test] public void TestSerializeXmlEnumAttribute() { // technically this has an XmlIgnore attribute, // but it is not being serialized as a member. Serialize(XmlSchemaForm.None); Assertion.AssertEquals(WriterText, "0"); Serialize(XmlSchemaForm.Qualified); Assertion.AssertEquals(WriterText, "qualified"); Serialize(XmlSchemaForm.Unqualified); Assertion.AssertEquals(WriterText, "unqualified"); } } }