| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494 |
- //
- // System.Xml.Serialization.SoapReflectionImporterTests
- //
- // Author:
- // Gert Driesen ([email protected])
- //
- // (C) 2005 Novell
- //
- using System;
- using System.Collections;
- using System.Xml;
- using System.Xml.Schema;
- using System.Xml.Serialization;
- using NUnit.Framework;
- using MonoTests.System.Xml.TestClasses;
- namespace MonoTests.System.XmlSerialization
- {
- [TestFixture]
- public class SoapReflectionImporterTests
- {
- private const string SomeNamespace = "some:urn";
- private const string AnotherNamespace = "another:urn";
- // these Map methods re-create the SoapReflectionImporter at every call.
- private XmlTypeMapping Map(Type t)
- {
- SoapReflectionImporter ri = new SoapReflectionImporter();
- XmlTypeMapping tm = ri.ImportTypeMapping(t);
- return tm;
- }
- private XmlTypeMapping Map(Type t, string ns)
- {
- SoapReflectionImporter ri = new SoapReflectionImporter(ns);
- XmlTypeMapping tm = ri.ImportTypeMapping(t);
- return tm;
- }
- private XmlTypeMapping Map(Type t, SoapAttributeOverrides overrides)
- {
- SoapReflectionImporter ri = new SoapReflectionImporter(overrides);
- XmlTypeMapping tm = ri.ImportTypeMapping(t);
- return tm;
- }
- private XmlMembersMapping MembersMap (Type t, SoapAttributeOverrides overrides,
- XmlReflectionMember [] members, bool inContainer, bool writeAccessors)
- {
- SoapReflectionImporter ri = new SoapReflectionImporter(overrides);
- XmlMembersMapping mm = ri.ImportMembersMapping(null, null, members,
- inContainer, writeAccessors);
-
- return mm;
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestIntTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (int));
- Assert.AreEqual ("int", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Int32", tm.TypeName, "#3");
- Assert.AreEqual ("System.Int32", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestIntTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (int[]));
- Assert.AreEqual ("ArrayOfInt", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfInt32", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("Int32[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("System.Int32[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (int[][]));
- Assert.AreEqual ("ArrayOfArrayOfInt", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfInt32", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("Int32[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.Int32[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (int[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfInt", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfInt32", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("Int32[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.Int32[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestStringTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (string));
- Assert.AreEqual ("string", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("String", tm.TypeName, "#3");
- Assert.AreEqual ("System.String", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestStringTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (string[]));
- Assert.AreEqual ("ArrayOfString", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfString", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("String[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("System.String[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (string[][]));
- Assert.AreEqual ("ArrayOfArrayOfString", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfString", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("String[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.String[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (string[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfString", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfString", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("String[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.String[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestObjectTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (object));
- Assert.AreEqual ("anyType", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Object", tm.TypeName, "#3");
- Assert.AreEqual ("System.Object", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestObjectTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (object[]));
- Assert.AreEqual ("ArrayOfAnyType", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfObject", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("Object[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("System.Object[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (object[][]));
- Assert.AreEqual ("ArrayOfArrayOfAnyType", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfObject", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("Object[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.Object[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (object[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfObject", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("Object[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.Object[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestByteTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (byte));
- Assert.AreEqual ("unsignedByte", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Byte", tm.TypeName, "#3");
- Assert.AreEqual ("System.Byte", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestByteTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (byte[]));
- Assert.AreEqual ("base64Binary", tm.ElementName, "#A1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#A2");
- Assert.AreEqual ("Byte[]", tm.TypeName, "#A3");
- Assert.AreEqual ("System.Byte[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (byte[][]));
- Assert.AreEqual ("ArrayOfBase64Binary", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfByte", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("Byte[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.Byte[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (byte[][][]));
- Assert.AreEqual ("ArrayOfArrayOfBase64Binary", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfByte", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("Byte[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.Byte[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestBoolTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (bool));
- Assert.AreEqual ("boolean", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Boolean", tm.TypeName, "#3");
- Assert.AreEqual ("System.Boolean", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestShortTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (short));
- Assert.AreEqual ("short", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Int16", tm.TypeName, "#3");
- Assert.AreEqual ("System.Int16", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestUnsignedShortTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (ushort));
- Assert.AreEqual ("unsignedShort", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("UInt16", tm.TypeName, "#3");
- Assert.AreEqual ("System.UInt16", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestUIntTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (uint));
- Assert.AreEqual ("unsignedInt", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("UInt32", tm.TypeName, "#3");
- Assert.AreEqual ("System.UInt32", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestLongTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (long));
- Assert.AreEqual ("long", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Int64", tm.TypeName, "#3");
- Assert.AreEqual ("System.Int64", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestULongTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (ulong));
- Assert.AreEqual ("unsignedLong", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("UInt64", tm.TypeName, "#3");
- Assert.AreEqual ("System.UInt64", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestFloatTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (float));
- Assert.AreEqual ("float", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Single", tm.TypeName, "#3");
- Assert.AreEqual ("System.Single", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestDoubleTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (double));
- Assert.AreEqual ("double", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Double", tm.TypeName, "#3");
- Assert.AreEqual ("System.Double", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestDateTimeTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (DateTime));
- Assert.AreEqual ("dateTime", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("DateTime", tm.TypeName, "#3");
- Assert.AreEqual ("System.DateTime", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestDateTimeTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (DateTime[]));
- Assert.AreEqual ("ArrayOfDateTime", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfDateTime", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("DateTime[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("System.DateTime[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (DateTime[][]));
- Assert.AreEqual ("ArrayOfArrayOfDateTime", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfDateTime", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("DateTime[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.DateTime[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (DateTime[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfDateTime", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfDateTime", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("DateTime[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.DateTime[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestGuidTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (Guid));
- Assert.AreEqual ("guid", tm.ElementName, "#1");
- Assert.AreEqual ("http://microsoft.com/wsdl/types/", tm.Namespace, "#2");
- Assert.AreEqual ("Guid", tm.TypeName, "#3");
- Assert.AreEqual ("System.Guid", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestGuidTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (Guid[]));
- Assert.AreEqual ("ArrayOfGuid", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfGuid", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("Guid[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("System.Guid[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (Guid[][]));
- Assert.AreEqual ("ArrayOfArrayOfGuid", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfGuid", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("Guid[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.Guid[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (Guid[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfGuid", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfGuid", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("Guid[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.Guid[][][]", tm.TypeFullName, "#C4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestDecimalTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (decimal));
- Assert.AreEqual ("decimal", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Decimal", tm.TypeName, "#3");
- Assert.AreEqual ("System.Decimal", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestXmlQualifiedNameTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (XmlQualifiedName));
- Assert.AreEqual ("QName", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("XmlQualifiedName", tm.TypeName, "#3");
- Assert.AreEqual ("System.Xml.XmlQualifiedName", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestSByteTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (sbyte));
- Assert.AreEqual ("byte", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("SByte", tm.TypeName, "#3");
- Assert.AreEqual ("System.SByte", tm.TypeFullName, "#4");
- }
-
- [Test]
- [Category ("NotWorking")]
- public void TestCharTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (char));
- Assert.AreEqual ("char", tm.ElementName, "#1");
- Assert.AreEqual ("http://microsoft.com/wsdl/types/", tm.Namespace, "#2");
- Assert.AreEqual ("Char", tm.TypeName, "#3");
- Assert.AreEqual ("System.Char", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestCharTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (char[]));
- Assert.AreEqual ("ArrayOfChar", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfChar", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("Char[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("System.Char[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (char[][]));
- Assert.AreEqual ("ArrayOfArrayOfChar", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfChar", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("Char[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.Char[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (char[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfChar", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfChar", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("Char[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.Char[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (NotSupportedException))] // The type System.Xml.XmlNode may not be serialized with SOAP-encoded messages.
- public void TestXmlNodeTypeMapping ()
- {
- Map (typeof (XmlNode));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (NotSupportedException))] // The type System.Xml.XmlElement may not be serialized with SOAP-encoded messages.
- public void TestXmlElementTypeMapping ()
- {
- Map (typeof (XmlElement));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (NotSupportedException))] // The type System.Xml.XmlNotation may not be serialized with SOAP-encoded messages.
- public void TestXmlNotationTypeMapping ()
- {
- Map (typeof (XmlNotation));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (NotSupportedException))]
- public void TestXmlSerializableTypeMapping ()
- {
- Map (typeof (Employee));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (NotSupportedException))]
- public void TestClassTypeMapping_NestedStruct ()
- {
- Map (typeof (NestedStruct));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (ArgumentNullException))]
- public void TestNullTypeMapping()
- {
- Map(null);
- }
- [Test]
- [Category ("NotWorking")]
- public void TestIntTypeMappingWithDefaultNamespaces()
- {
- XmlTypeMapping tm = Map (typeof (int), SomeNamespace);
- Assert.AreEqual ("int", tm.ElementName, "#1");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", tm.Namespace, "#2");
- Assert.AreEqual ("Int32", tm.TypeName, "#3");
- Assert.AreEqual ("System.Int32", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestStructTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (TimeSpan));
- Assert.AreEqual ("TimeSpan", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("TimeSpan", tm.TypeName, "#3");
- Assert.AreEqual ("System.TimeSpan", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (NotSupportedException))] // Arrays of structs are not supported with encoded SOAP.
- public void TestStructTypeMapping_Array ()
- {
- Map (typeof (TimeSpan[]));
- }
- [Test]
- [Category ("NotWorking")]
- public void TestEnumTypeMapping ()
- {
- XmlTypeMapping tm = Map (typeof (AttributeTargets));
- Assert.AreEqual ("AttributeTargets", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("AttributeTargets", tm.TypeName, "#3");
- Assert.AreEqual ("System.AttributeTargets", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestEnumTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (AttributeTargets[]));
- Assert.AreEqual ("ArrayOfAttributeTargets", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfAttributeTargets", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("AttributeTargets[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("System.AttributeTargets[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (AttributeTargets[][]));
- Assert.AreEqual ("ArrayOfArrayOfAttributeTargets", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfAttributeTargets", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("AttributeTargets[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("System.AttributeTargets[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (AttributeTargets[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfAttributeTargets", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfAttributeTargets", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("AttributeTargets[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("System.AttributeTargets[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestClassTypeMapping()
- {
- XmlTypeMapping tm = Map (typeof (SimpleClass));
- Assert.AreEqual ("SimpleClass", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("SimpleClass", tm.TypeName, "#3");
- Assert.AreEqual ("MonoTests.System.Xml.TestClasses.SimpleClass", tm.TypeFullName, "#4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TestClassTypeMapping_Array ()
- {
- XmlTypeMapping tm = Map (typeof (SimpleClass[]));
- Assert.AreEqual ("ArrayOfSimpleClass", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfSimpleClass", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("SimpleClass[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("MonoTests.System.Xml.TestClasses.SimpleClass[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (SimpleClass[][]));
- Assert.AreEqual ("ArrayOfArrayOfSimpleClass", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfSimpleClass", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("SimpleClass[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("MonoTests.System.Xml.TestClasses.SimpleClass[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (SimpleClass[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClass", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClass", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("SimpleClass[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("MonoTests.System.Xml.TestClasses.SimpleClass[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TypeMapping_IEnumerable_SimpleClass ()
- {
- XmlTypeMapping tm = Map (typeof (SimpleClassEnumerable));
- Assert.AreEqual ("ArrayOfSimpleClass", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("SimpleClassEnumerable", tm.TypeName, "#3");
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerable", tm.TypeFullName, "#4");
- tm = Map (typeof (SimpleClassEnumerable[]));
- Assert.AreEqual ("ArrayOfArrayOfSimpleClass", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfSimpleClassEnumerable", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("SimpleClassEnumerable[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerable[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (SimpleClassEnumerable[][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClass", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfSimpleClassEnumerable", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("SimpleClassEnumerable[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerable[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (SimpleClassEnumerable[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfArrayOfSimpleClass", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClassEnumerable", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("SimpleClassEnumerable[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerable[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TypeMapping_IEnumerable_Object ()
- {
- XmlTypeMapping tm = Map (typeof (ObjectEnumerable));
- Assert.AreEqual ("ArrayOfAnyType", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("ObjectEnumerable", tm.TypeName, "#3");
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectEnumerable", tm.TypeFullName, "#4");
- tm = Map (typeof (ObjectEnumerable[]));
- Assert.AreEqual ("ArrayOfArrayOfAnyType", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfObjectEnumerable", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("ObjectEnumerable[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectEnumerable[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (ObjectEnumerable[][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfObjectEnumerable", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("ObjectEnumerable[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectEnumerable[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (ObjectEnumerable[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfObjectEnumerable", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("ObjectEnumerable[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectEnumerable[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_IEnumarable_Object_NoMatchingAddMethod ()
- {
- Map (typeof (ObjectEnumerableNoMatchingAddMethod));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_IEnumarable_Object_NoMatchingAddMethod_Array ()
- {
- Map (typeof (ObjectEnumerableNoMatchingAddMethod[]));
- }
- [Test]
- [Category ("NotWorking")]
- public void TypeMapping_IEnumerable_SimpleClass_PrivateCurrent ()
- {
- XmlTypeMapping tm = Map (typeof (SimpleClassEnumerablePrivateCurrent));
- Assert.AreEqual ("ArrayOfAnyType", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("SimpleClassEnumerablePrivateCurrent", tm.TypeName, "#3");
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateCurrent", tm.TypeFullName, "#4");
- tm = Map (typeof (SimpleClassEnumerablePrivateCurrent[]));
- Assert.AreEqual ("ArrayOfArrayOfAnyType", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfSimpleClassEnumerablePrivateCurrent", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("SimpleClassEnumerablePrivateCurrent[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateCurrent[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (SimpleClassEnumerablePrivateCurrent[][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfSimpleClassEnumerablePrivateCurrent", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("SimpleClassEnumerablePrivateCurrent[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateCurrent[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (SimpleClassEnumerablePrivateCurrent[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClassEnumerablePrivateCurrent", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("SimpleClassEnumerablePrivateCurrent[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateCurrent[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- #if ONLY_1_1
- [Category ("NotDotNet")] // results in NullReferenceException in .NET 1.1 (SP1)
- #endif
- [Category ("NotWorking")]
- public void TypeMapping_IEnumerable_SimpleClass_PrivateGetEnumerator ()
- {
- XmlTypeMapping tm = Map (typeof (SimpleClassEnumerablePrivateGetEnumerator));
- Assert.AreEqual ("ArrayOfAnyType", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("SimpleClassEnumerablePrivateGetEnumerator", tm.TypeName, "#3");
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateGetEnumerator", tm.TypeFullName, "#4");
- tm = Map (typeof (SimpleClassEnumerablePrivateGetEnumerator[]));
- Assert.AreEqual ("ArrayOfArrayOfAnyType", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfSimpleClassEnumerablePrivateGetEnumerator", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("SimpleClassEnumerablePrivateGetEnumerator[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateGetEnumerator[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (SimpleClassEnumerablePrivateGetEnumerator[][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfSimpleClassEnumerablePrivateGetEnumerator", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("SimpleClassEnumerablePrivateGetEnumerator[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateGetEnumerator[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (SimpleClassEnumerablePrivateGetEnumerator[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClassEnumerablePrivateGetEnumerator", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("SimpleClassEnumerablePrivateGetEnumerator[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassEnumerablePrivateGetEnumerator[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_Object_NoMatchingAddMethod ()
- {
- Map (typeof (ObjectCollectionNoMatchingAddMethod));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_Object_NoMatchingAddMethod_Array ()
- {
- Map (typeof (ObjectCollectionNoMatchingAddMethod[]));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_SimpleClass_NoMatchingAddMethod ()
- {
- Map (typeof (SimpleClassCollectionNoMatchingAddMethod));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_SimpleClass_NoMatchingAddMethod_Array ()
- {
- Map (typeof (SimpleClassCollectionNoMatchingAddMethod[]));
- }
- [Test]
- [Category ("NotWorking")]
- public void TypeMapping_ICollection_SimpleClass ()
- {
- XmlTypeMapping tm = Map (typeof (SimpleClassCollection));
- Assert.AreEqual ("ArrayOfSimpleClass", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("SimpleClassCollection", tm.TypeName, "#3");
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassCollection", tm.TypeFullName, "#4");
- tm = Map (typeof (SimpleClassCollection[]));
- Assert.AreEqual ("ArrayOfArrayOfSimpleClass", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfSimpleClassCollection", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("SimpleClassCollection[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassCollection[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (SimpleClassCollection[][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClass", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfSimpleClassCollection", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("SimpleClassCollection[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassCollection[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (SimpleClassCollection[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfArrayOfSimpleClass", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfSimpleClassCollection", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("SimpleClassCollection[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.SimpleClassCollection[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- public void TypeMapping_ICollection_Object ()
- {
- XmlTypeMapping tm = Map (typeof (ObjectCollection));
- Assert.AreEqual ("ArrayOfAnyType", tm.ElementName, "#1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#2");
- Assert.AreEqual ("ObjectCollection", tm.TypeName, "#3");
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectCollection", tm.TypeFullName, "#4");
- tm = Map (typeof (ObjectCollection[]));
- Assert.AreEqual ("ArrayOfArrayOfAnyType", tm.ElementName, "#A1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#A2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfObjectCollection", tm.TypeName, "#A3");
- #else
- Assert.AreEqual ("ObjectCollection[]", tm.TypeName, "#A3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectCollection[]", tm.TypeFullName, "#A4");
- tm = Map (typeof (ObjectCollection[][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#B1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#B2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfObjectCollection", tm.TypeName, "#B3");
- #else
- Assert.AreEqual ("ObjectCollection[][]", tm.TypeName, "#B3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectCollection[][]", tm.TypeFullName, "#B4");
- tm = Map (typeof (ObjectCollection[][][]));
- Assert.AreEqual ("ArrayOfArrayOfArrayOfArrayOfAnyType", tm.ElementName, "#C1");
- Assert.AreEqual (string.Empty, tm.Namespace, "#C2");
- #if NET_2_0
- Assert.AreEqual ("ArrayOfArrayOfArrayOfObjectCollection", tm.TypeName, "#C3");
- #else
- Assert.AreEqual ("ObjectCollection[][][]", tm.TypeName, "#C3");
- #endif
- Assert.AreEqual ("MonoTests.System.XmlSerialization.SoapReflectionImporterTests.ObjectCollection[][][]", tm.TypeFullName, "#C4");
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_Object_NoIntIndexer ()
- {
- Map (typeof (ObjectCollectionNoIntIndexer));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_Object_NoIntIndexer_Array ()
- {
- Map (typeof (ObjectCollectionNoIntIndexer[]));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_SimpleClass_NoIntIndexer ()
- {
- Map (typeof (SimpleClassCollectionNoIntIndexer));
- }
- [Test]
- [Category ("NotWorking")]
- [ExpectedException (typeof (InvalidOperationException))]
- public void TypeMapping_ICollection_SimpleClass_NoIntIndexer_Array ()
- {
- Map (typeof (SimpleClassCollectionNoIntIndexer[]));
- }
- [Test]
- [Category ("NotWorking")]
- public void TestImportMembersMapping()
- {
- Type type = typeof (SimpleClass);
- SoapAttributes attrs = new SoapAttributes ();
- SoapAttributeOverrides overrides = new SoapAttributeOverrides ();
- overrides.Add (typeof (SimpleClass), attrs);
- XmlReflectionMember[] members = new XmlReflectionMember[0];
- XmlMembersMapping mm;
- try
- {
- mm = MembersMap(type, overrides, members, true, true);
- Assert.Fail("Should not be able to fetch an empty XmlMembersMapping");
- }
- catch (Exception)
- {
- }
-
- XmlReflectionMember rm = new XmlReflectionMember();
- rm.IsReturnValue = false;
- rm.MemberName = "something";
- rm.MemberType = typeof(string);
- members = new XmlReflectionMember[1];
- members[0] = rm;
- mm = MembersMap(type, overrides, members, false, false);
- Equals(mm.Count, 1);
- XmlMemberMapping smm = mm[0];
- Assert.IsFalse (smm.Any, "#1");
- Assert.AreEqual ("something", smm.ElementName, "#2");
- Assert.AreEqual ("something", smm.MemberName, "#3");
- Assert.IsNull (smm.Namespace, "#4");
- Assert.AreEqual ("System.String", smm.TypeFullName, "#5");
- Assert.AreEqual ("string", smm.TypeName, "#6");
- Assert.AreEqual ("http://www.w3.org/2001/XMLSchema", smm.TypeNamespace, "#7");
-
- rm = new XmlReflectionMember();
- rm.IsReturnValue = false;
- rm.MemberName = "nothing";
- rm.MemberType = typeof(string);
- members = new XmlReflectionMember[1];
- members[0] = rm;
- mm = MembersMap(type, overrides, members, false, false);
- Assert.AreEqual (1 , mm.Count, "#8");
- }
- public class Employee : IXmlSerializable
- {
- private string _firstName;
- private string _lastName;
- private string _address;
- public XmlSchema GetSchema ()
- {
- return null;
- }
- public void WriteXml (XmlWriter writer)
- {
- writer.WriteStartElement ("employee", "urn:devx-com");
- writer.WriteAttributeString ("firstName", _firstName);
- writer.WriteAttributeString ("lastName", _lastName);
- writer.WriteAttributeString ("address", _address);
- writer.WriteEndElement ();
- }
- public void ReadXml (XmlReader reader)
- {
- XmlNodeType type = reader.MoveToContent ();
- if (type == XmlNodeType.Element && reader.LocalName == "employee") {
- _firstName = reader["firstName"];
- _lastName = reader["lastName"];
- _address = reader["address"];
- }
- }
- }
- public class NestedStruct
- {
- public TimeSpan Period = TimeSpan.MaxValue;
- }
- public class ObjectEnumerable : IEnumerable
- {
- public void Add (int value)
- {
- }
- public void Add (object value)
- {
- }
- public IEnumerator GetEnumerator ()
- {
- return new ArrayList ().GetEnumerator ();
- }
- }
- public class SimpleClassEnumerable : IEnumerable
- {
- public void Add (int value)
- {
- }
- public void Add (object value)
- {
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return GetEnumerator ();
- }
- public SimpleClassEnumerator GetEnumerator ()
- {
- return new SimpleClassEnumerator (new ArrayList ());
- }
- }
- public class SimpleClassEnumerablePrivateGetEnumerator : IEnumerable
- {
- public void Add (object value)
- {
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return new ArrayList ().GetEnumerator ();
- }
- }
- public class SimpleClassEnumerablePrivateCurrent : IEnumerable
- {
- public void Add (object value)
- {
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return GetEnumerator ();
- }
- public NoCurrentEnumerator GetEnumerator ()
- {
- return new NoCurrentEnumerator (new ArrayList ());
- }
- }
- // GetEnumerator().Current returns object, but there's no corresponding
- // Add (System.Object) method
- public class ObjectEnumerableNoMatchingAddMethod : IEnumerable
- {
- public void Add (int value)
- {
- }
- public IEnumerator GetEnumerator ()
- {
- return new ArrayList ().GetEnumerator ();
- }
- }
- // GetEnumerator().Current returns SimpleClass, but there's no
- // corresponding Add (SimpleClass) method
- public class SimpleClassCollectionNoMatchingAddMethod : ICollection
- {
- public SimpleClass this[int index] {
- get {
- return (SimpleClass) _list[index];
- }
- }
- public int Count {
- get { return _list.Count; }
- }
- public bool IsSynchronized {
- get { return _list.IsSynchronized; }
- }
- public object SyncRoot {
- get { return _list.SyncRoot; }
- }
- public void CopyTo (Array array, int index)
- {
- _list.CopyTo (array, index);
- }
- IEnumerator IEnumerable.GetEnumerator()
- {
- return GetEnumerator ();
- }
- public SimpleClassEnumerator GetEnumerator ()
- {
- return new SimpleClassEnumerator (_list);
- }
- private ArrayList _list = new ArrayList ();
- }
- // GetEnumerator().Current returns object, but there's no corresponding
- // Add (System.Object) method
- public class ObjectCollectionNoMatchingAddMethod : ICollection
- {
- public object this[int index] {
- get {
- return _list[index];
- }
- }
- public int Count {
- get { return _list.Count; }
- }
- public bool IsSynchronized {
- get { return _list.IsSynchronized; }
- }
- public object SyncRoot {
- get { return _list.SyncRoot; }
- }
- public void CopyTo (Array array, int index)
- {
- _list.CopyTo (array, index);
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return GetEnumerator ();
- }
- public IEnumerator GetEnumerator ()
- {
- return _list.GetEnumerator ();
- }
- private ArrayList _list = new ArrayList ();
- }
- // Does not have int indexer.
- public class SimpleClassCollectionNoIntIndexer : ICollection
- {
- public SimpleClass this[string name] {
- get {
- return new SimpleClass ();
- }
- }
- public int Count {
- get { return _list.Count; }
- }
- public bool IsSynchronized {
- get { return _list.IsSynchronized; }
- }
- public object SyncRoot {
- get { return _list.SyncRoot; }
- }
- public void CopyTo (Array array, int index)
- {
- _list.CopyTo (array, index);
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return GetEnumerator ();
- }
- public SimpleClassEnumerator GetEnumerator ()
- {
- return new SimpleClassEnumerator (_list);
- }
- public void Add (SimpleClass value)
- {
- _list.Add (value);
- }
- private ArrayList _list = new ArrayList ();
- }
- // Does not have int indexer.
- public class ObjectCollectionNoIntIndexer : ICollection
- {
- public object this[string name] {
- get {
- return new SimpleClass ();
- }
- }
- public int Count {
- get { return _list.Count; }
- }
- public bool IsSynchronized {
- get { return _list.IsSynchronized; }
- }
- public object SyncRoot {
- get { return _list.SyncRoot; }
- }
- public void CopyTo (Array array, int index)
- {
- _list.CopyTo (array, index);
- }
- public IEnumerator GetEnumerator ()
- {
- return _list.GetEnumerator ();
- }
- public void Add (object value)
- {
- _list.Add (value);
- }
- private ArrayList _list = new ArrayList ();
- }
- public class SimpleClassCollection : ICollection
- {
- public SimpleClass this[int index] {
- get {
- return (SimpleClass) _list[index];
- }
- }
- public int Count {
- get { return _list.Count; }
- }
- public bool IsSynchronized {
- get { return _list.IsSynchronized; }
- }
- public object SyncRoot {
- get { return _list.SyncRoot; }
- }
- public void CopyTo (Array array, int index)
- {
- _list.CopyTo (array, index);
- }
- IEnumerator IEnumerable.GetEnumerator ()
- {
- return GetEnumerator ();
- }
- public SimpleClassEnumerator GetEnumerator ()
- {
- return new SimpleClassEnumerator (_list);
- }
- public void Add (SimpleClass value)
- {
- _list.Add (value);
- }
- private ArrayList _list = new ArrayList ();
- }
- public class ObjectCollection : ICollection
- {
- public object this[int name] {
- get {
- return new SimpleClass ();
- }
- }
- public int Count
- {
- get { return _list.Count; }
- }
- public bool IsSynchronized
- {
- get { return _list.IsSynchronized; }
- }
- public object SyncRoot
- {
- get { return _list.SyncRoot; }
- }
- public void CopyTo (Array array, int index)
- {
- _list.CopyTo (array, index);
- }
- public IEnumerator GetEnumerator ()
- {
- return _list.GetEnumerator ();
- }
- public void Add (object value)
- {
- _list.Add (value);
- }
- private ArrayList _list = new ArrayList ();
- }
- public class SimpleClassEnumerator : IEnumerator
- {
- internal SimpleClassEnumerator (ArrayList arguments)
- {
- IEnumerable temp = (IEnumerable) (arguments);
- _baseEnumerator = temp.GetEnumerator ();
- }
- public SimpleClass Current
- {
- get { return (SimpleClass) _baseEnumerator.Current; }
- }
- object IEnumerator.Current
- {
- get { return _baseEnumerator.Current; }
- }
- public bool MoveNext ()
- {
- return _baseEnumerator.MoveNext ();
- }
- bool IEnumerator.MoveNext ()
- {
- return _baseEnumerator.MoveNext ();
- }
- public void Reset ()
- {
- _baseEnumerator.Reset ();
- }
- void IEnumerator.Reset ()
- {
- _baseEnumerator.Reset ();
- }
- private IEnumerator _baseEnumerator;
- }
- public class NoCurrentEnumerator : IEnumerator
- {
- internal NoCurrentEnumerator (ArrayList arguments)
- {
- IEnumerable temp = (IEnumerable) (arguments);
- _baseEnumerator = temp.GetEnumerator ();
- }
- object IEnumerator.Current
- {
- get { return _baseEnumerator.Current; }
- }
- public bool MoveNext ()
- {
- return _baseEnumerator.MoveNext ();
- }
- bool IEnumerator.MoveNext ()
- {
- return _baseEnumerator.MoveNext ();
- }
- public void Reset ()
- {
- _baseEnumerator.Reset ();
- }
- void IEnumerator.Reset ()
- {
- _baseEnumerator.Reset ();
- }
- private IEnumerator _baseEnumerator;
- }
- }
- }
|