// // 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 : Assertion { 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 constructors #if USE_VERSION_1_1 // It doesn't pass on MS.NET 1.1. [Test] public void TestConstructor() { XmlSerializer ser = new XmlSerializer (null, ""); } #else #endif // test basic types //////////////////////////////////////////////////////// [Test] public void TestSerializeInt() { Serialize(10); AssertEquals("10", WriterText); } [Test] public void TestSerializeBool() { Serialize(true); AssertEquals("true", WriterText); Serialize(false); AssertEquals("false", WriterText); } [Test] public void TestSerializeString() { Serialize("hello"); AssertEquals("hello", WriterText); } [Test] public void TestSerializeEmptyString() { Serialize(String.Empty); AssertEquals("", WriterText); } [Test] public void TestSerializeNullObject() { Serialize(null, typeof(object)); AssertEquals("", WriterText); } [Test] public void TestSerializeNullString() { Serialize(null, typeof(string)); AssertEquals ("", WriterText); } [Test] public void TestSerializeIntArray() { Serialize(new int[] {1, 2, 3, 4}); AssertEquals ("1234", WriterText); } [Test] public void TestSerializeEmptyArray() { Serialize(new int[] {}); AssertEquals("", WriterText); } [Test] public void TestSerializeChar() { Serialize('A'); AssertEquals("65", WriterText); Serialize('\0'); AssertEquals("0", WriterText); Serialize('\n'); AssertEquals("10", WriterText); Serialize('\uFF01'); AssertEquals("65281", WriterText); } [Test] public void TestSerializeFloat() { Serialize(10.78); AssertEquals("10.78", WriterText); Serialize(-1e8); AssertEquals("-100000000", WriterText); // FIXME test INF and other boundary conditions that may exist with floats } [Test] public void TestSerializeEnumeration() { Serialize(SimpleEnumeration.FIRST); AssertEquals("FIRST", WriterText); Serialize(SimpleEnumeration.SECOND); AssertEquals("SECOND", WriterText); } [Test] public void TestSerializeQualifiedName() { Serialize(new XmlQualifiedName("me", "home.urn")); AssertEquals("q1:me", WriterText); } [Test] public void TestSerializeBytes() { Serialize((byte)0xAB); AssertEquals("171", WriterText); Serialize((byte)15); AssertEquals("15", WriterText); } [Test] public void TestSerializeByteArrays() { Serialize(new byte[] {}); AssertEquals("", WriterText); Serialize(new byte[] {0xAB, 0xCD}); AssertEquals("q80=", WriterText); } [Test] public void TestSerializeDateTime() { DateTime d = new DateTime(); Serialize(d); AssertEquals ("0001-01-01T00:00:00.0000000", WriterText.Substring (0, 37)); } /* FIXME - decimal - Guid - XmlNode objects [Test] public void TestSerialize() { Serialize(); AssertEquals(WriterText, ""); } */ // test basic class serialization ///////////////////////////////////// [Test] public void TestSerializeSimpleClass() { SimpleClass simple = new SimpleClass(); Serialize(simple); AssertEquals("", WriterText); simple.something = "hello"; Serialize(simple); AssertEquals("hello", WriterText); } [Test] public void TestSerializeStringCollection() { StringCollection strings = new StringCollection(); Serialize(strings); AssertEquals(WriterText, ""); strings.Add("hello"); strings.Add("goodbye"); Serialize(strings); Assert(WriterText.EndsWith(">hellogoodbye")); } [Test] public void TestSerializePlainContainer() { StringCollectionContainer container = new StringCollectionContainer(); Serialize(container); Assert(WriterText.EndsWith(">")); container.Messages.Add("hello"); container.Messages.Add("goodbye"); Serialize(container); Assert(WriterText.EndsWith(">hellogoodbye")); } [Test] public void TestSerializeArrayContainer() { ArrayContainer container = new ArrayContainer(); Serialize(container); AssertEquals(WriterText, ""); container.items = new object[] {10, 20}; Serialize(container); Assert(WriterText.EndsWith(">1020")); container.items = new object[] {10, "hello"}; Serialize(container); Assert(WriterText.EndsWith(">10hello")); } [Test] public void TestSerializeClassArrayContainer() { ClassArrayContainer container = new ClassArrayContainer(); Serialize(container); 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); Assert(WriterText.EndsWith(">hellohello")); } // test basic attributes /////////////////////////////////////////////// [Test] public void TestSerializeSimpleClassWithXmlAttributes() { SimpleClassWithXmlAttributes simple = new SimpleClassWithXmlAttributes(); Serialize(simple); AssertEquals("", WriterText); simple.something = "hello"; Serialize(simple); AssertEquals ("", WriterText); } // 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); 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); AssertEquals("hello", WriterText); attr.XmlText = new XmlTextAttribute(typeof(string)); Serialize(simple, overrides); Assert(WriterText.EndsWith(">hello")); try { attr.XmlText = new XmlTextAttribute(typeof(byte[])); Serialize(simple, overrides); 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); 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); Assert(WriterText.StartsWith("", WriterText); } [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); 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); AssertEquals("", WriterText); // regular simple.something = "hello"; Serialize(simple, overrides); AssertEquals ("", WriterText); // AttributeName attr.XmlAttribute.AttributeName = "somethingelse"; Serialize(simple, overrides); AssertEquals ("", WriterText); // Type // FIXME this should work, shouldnt it? // attr.XmlAttribute.Type = typeof(string); // Serialize(simple, overrides); // Assert(WriterText.EndsWith(" something='hello' />")); // Namespace attr.XmlAttribute.Namespace = "some:urn"; Serialize(simple, overrides); 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); AssertEquals("", WriterText); // not null simple.something = "hello"; Serialize(simple, overrides); AssertEquals ("hello", WriterText); //ElementName element.ElementName = "saying"; Serialize(simple, overrides); Assert(WriterText.EndsWith(">hello")); //IsNullable element.IsNullable = false; simple.something = null; Serialize(simple, overrides); AssertEquals(WriterText, ""); element.IsNullable = true; simple.something = null; Serialize(simple, overrides); Assert(WriterText.EndsWith(">")); //Namespace element.ElementName = null; element.IsNullable = false; element.Namespace = "some:urn"; simple.something = "hello"; Serialize(simple, overrides); 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); AssertEquals("", WriterText); // non-empty collection & no type info in XmlElementAttribute container.Messages.Add("hello"); Serialize(container, overrides); AssertEquals ("hello", WriterText); // non-empty collection & only type info in XmlElementAttribute element.Type = typeof(StringCollection); Serialize(container, overrides); AssertEquals ("hello", WriterText); // non-empty collection & only type info in XmlElementAttribute element.Type = typeof(string); Serialize(container, overrides); Assert(WriterText.EndsWith(">hello")); // two elements container.Messages.Add("goodbye"); element.Type = null; Serialize(container, overrides); 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); AssertEquals("", WriterText); // same value as default simple.something = defaultValueInstance; Serialize(simple, overrides); AssertEquals("", WriterText); // some other value simple.something = "hello"; Serialize(simple, overrides); AssertEquals("hello", WriterText); } // test XmlEnum ////////////////////////////////////////////////////////// [Test] public void TestSerializeXmlEnumAttribute() { // technically this has an XmlIgnore attribute, // but it is not being serialized as a member. Serialize(XmlSchemaForm.None); AssertEquals(WriterText, "0"); Serialize(XmlSchemaForm.Qualified); AssertEquals(WriterText, "qualified"); Serialize(XmlSchemaForm.Unqualified); AssertEquals(WriterText, "unqualified"); } } }