[runtime] Updates comments.
[mono.git] / mcs / class / System.XML / Test / System.Xml.Serialization / XmlSerializerTests.cs
1 //
2 // System.Xml.XmlSerializerTests
3 //
4 // Author:
5 //   Erik LeBel <eriklebel@yahoo.ca>
6 //   Hagit Yidov <hagity@mainsoft.com>
7 //
8 // (C) 2003 Erik LeBel
9 // (C) 2005 Mainsoft Corporation (http://www.mainsoft.com)
10 //
11 //
12 // NOTES:
13 //  Where possible, these tests avoid testing the order of
14 //  an object's members serialization. Mono and .NET do not
15 //  reflect members in the same order.
16 //
17 //  Only serializations tests so far, no deserialization.
18 //
19 // FIXME
20 //  test XmlArrayAttribute
21 //  test XmlArrayItemAttribute
22 //  test serialization of decimal type
23 //  test serialization of Guid type
24 //  test XmlNode serialization with and without modifying attributes.
25 //  test deserialization
26 //  FIXMEs found in this file
27
28 using System;
29 using System.Collections;
30 using System.Globalization;
31 using System.IO;
32 using System.Text;
33 using System.Xml;
34 using System.Data;
35 using System.Xml.Schema;
36 using System.Xml.Serialization;
37 using System.Reflection;
38 using System.Collections.Generic;
39
40 using NUnit.Framework;
41
42 using MonoTests.System.Xml.TestClasses;
43
44 namespace MonoTests.System.XmlSerialization
45 {
46         [TestFixture]
47         public class XmlSerializerTests
48         {
49                 const string SoapEncodingNamespace = "http://schemas.xmlsoap.org/soap/encoding/";
50                 const string WsdlTypesNamespace = "http://microsoft.com/wsdl/types/";
51                 const string ANamespace = "some:urn";
52                 const string AnotherNamespace = "another:urn";
53
54                 StringWriter sw;
55                 XmlTextWriter xtw;
56                 XmlSerializer xs;
57
58                 private void SetUpWriter ()
59                 {
60                         sw = new StringWriter ();
61                         xtw = new XmlTextWriter (sw);
62                         xtw.QuoteChar = '\'';
63                         xtw.Formatting = Formatting.None;
64                 }
65
66                 private string WriterText
67                 {
68                         get
69                         {
70                                 string val = sw.GetStringBuilder ().ToString ();
71                                 int offset = val.IndexOf ('>') + 1;
72                                 val = val.Substring (offset);
73                                 return Infoset (val);
74                         }
75                 }
76
77                 private void Serialize (object o)
78                 {
79                         SetUpWriter ();
80                         xs = new XmlSerializer (o.GetType ());
81                         xs.Serialize (xtw, o);
82                 }
83
84                 private void Serialize (object o, Type type)
85                 {
86                         SetUpWriter ();
87                         xs = new XmlSerializer (type);
88                         xs.Serialize (xtw, o);
89                 }
90
91                 private void Serialize (object o, XmlSerializerNamespaces ns)
92                 {
93                         SetUpWriter ();
94                         xs = new XmlSerializer (o.GetType ());
95                         xs.Serialize (xtw, o, ns);
96                 }
97
98                 private void Serialize (object o, XmlAttributeOverrides ao)
99                 {
100                         SetUpWriter ();
101                         xs = new XmlSerializer (o.GetType (), ao);
102                         xs.Serialize (xtw, o);
103                 }
104
105                 private void Serialize (object o, XmlAttributeOverrides ao, string defaultNamespace)
106                 {
107                         SetUpWriter ();
108                         xs = new XmlSerializer (o.GetType (), ao, Type.EmptyTypes,
109                                 (XmlRootAttribute) null, defaultNamespace);
110                         xs.Serialize (xtw, o);
111                 }
112
113                 private void Serialize (object o, XmlRootAttribute root)
114                 {
115                         SetUpWriter ();
116                         xs = new XmlSerializer (o.GetType (), root);
117                         xs.Serialize (xtw, o);
118                 }
119
120                 private void Serialize (object o, XmlTypeMapping typeMapping)
121                 {
122                         SetUpWriter ();
123                         xs = new XmlSerializer (typeMapping);
124                         xs.Serialize (xtw, o);
125                 }
126
127                 private void SerializeEncoded (object o)
128                 {
129                         SerializeEncoded (o, o.GetType ());
130                 }
131
132                 private void SerializeEncoded (object o, SoapAttributeOverrides ao)
133                 {
134                         XmlTypeMapping mapping = CreateSoapMapping (o.GetType (), ao);
135                         SetUpWriter ();
136                         xs = new XmlSerializer (mapping);
137                         xs.Serialize (xtw, o);
138                 }
139
140                 private void SerializeEncoded (object o, SoapAttributeOverrides ao, string defaultNamespace)
141                 {
142                         XmlTypeMapping mapping = CreateSoapMapping (o.GetType (), ao, defaultNamespace);
143                         SetUpWriter ();
144                         xs = new XmlSerializer (mapping);
145                         xs.Serialize (xtw, o);
146                 }
147
148                 private void SerializeEncoded (object o, Type type)
149                 {
150                         XmlTypeMapping mapping = CreateSoapMapping (type);
151                         SetUpWriter ();
152                         xs = new XmlSerializer (mapping);
153                         xs.Serialize (xtw, o);
154                 }
155
156                 private void SerializeEncoded (XmlTextWriter xtw, object o, Type type)
157                 {
158                         XmlTypeMapping mapping = CreateSoapMapping (type);
159                         xs = new XmlSerializer (mapping);
160                         xs.Serialize (xtw, o);
161                 }
162
163                 // test constructors
164 #if USE_VERSION_1_1     // It doesn't pass on MS.NET 1.1.
165                 [Test]
166                 public void TestConstructor()
167                 {
168                         XmlSerializer ser = new XmlSerializer (null, "");
169                 }
170 #else
171 #endif
172
173                 // test basic types ////////////////////////////////////////////////////////
174                 [Test]
175                 public void TestSerializeInt ()
176                 {
177                         Serialize (10);
178                         Assert.AreEqual (Infoset ("<int>10</int>"), WriterText);
179                 }
180
181                 [Test]
182                 public void TestSerializeBool ()
183                 {
184                         Serialize (true);
185                         Assert.AreEqual (Infoset ("<boolean>true</boolean>"), WriterText);
186
187                         Serialize (false);
188                         Assert.AreEqual (Infoset ("<boolean>false</boolean>"), WriterText);
189                 }
190
191                 [Test]
192                 public void TestSerializeString ()
193                 {
194                         Serialize ("hello");
195                         Assert.AreEqual (Infoset ("<string>hello</string>"), WriterText);
196                 }
197
198                 [Test]
199                 public void TestSerializeEmptyString ()
200                 {
201                         Serialize (String.Empty);
202                         Assert.AreEqual (Infoset ("<string />"), WriterText);
203                 }
204
205                 [Test]
206                 public void TestSerializeNullObject ()
207                 {
208                         Serialize (null, typeof (object));
209                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
210                                 "<anyType xmlns:xsd='{0}' xmlns:xsi='{1}' xsi:nil='true' />",
211                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText);
212                 }
213
214                 [Test]
215                 [Ignore ("The generated XML is not exact but it is equivalent")]
216                 public void TestSerializeNullString ()
217                 {
218                         Serialize (null, typeof (string));
219                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
220                                 "<string xmlns:xsd='{0}' xmlns:xsi='{1}' xsi:nil='true' />",
221                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText);
222                 }
223
224                 [Test]
225                 public void TestSerializeIntArray ()
226                 {
227                         Serialize (new int[] { 1, 2, 3, 4 });
228                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
229                                 "<ArrayOfInt xmlns:xsd='{0}' xmlns:xsi='{1}'><int>1</int><int>2</int><int>3</int><int>4</int></ArrayOfInt>",
230                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText);
231                 }
232
233                 [Test]
234                 public void TestSerializeEmptyArray ()
235                 {
236                         Serialize (new int[] { });
237                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
238                                 "<ArrayOfInt xmlns:xsd='{0}' xmlns:xsi='{1}' />",
239                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText);
240                 }
241
242                 [Test]
243                 public void TestSerializeChar ()
244                 {
245                         Serialize ('A');
246                         Assert.AreEqual (Infoset ("<char>65</char>"), WriterText);
247
248                         Serialize ('\0');
249                         Assert.AreEqual (Infoset ("<char>0</char>"), WriterText);
250
251                         Serialize ('\n');
252                         Assert.AreEqual (Infoset ("<char>10</char>"), WriterText);
253
254                         Serialize ('\uFF01');
255                         Assert.AreEqual (Infoset ("<char>65281</char>"), WriterText);
256                 }
257
258                 [Test]
259                 public void TestSerializeFloat ()
260                 {
261                         Serialize (10.78);
262                         Assert.AreEqual (Infoset ("<double>10.78</double>"), WriterText);
263
264                         Serialize (-1e8);
265                         Assert.AreEqual (Infoset ("<double>-100000000</double>"), WriterText);
266
267                         // FIXME test INF and other boundary conditions that may exist with floats
268                 }
269
270                 [Test]
271                 public void TestSerializeEnumeration_FromValue ()
272                 {
273                         Serialize ((int) SimpleEnumeration.SECOND, typeof (SimpleEnumeration));
274                         Assert.AreEqual (
275                                 "<?xml version='1.0' encoding='utf-16'?>" +
276                                 "<SimpleEnumeration>SECOND</SimpleEnumeration>",
277                                 sw.ToString ());
278                 }
279
280                 [Test]
281                 [Category ("NotWorking")]
282                 public void TestSerializeEnumeration_FromValue_Encoded ()
283                 {
284                         SerializeEncoded ((int) SimpleEnumeration.SECOND, typeof (SimpleEnumeration));
285                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
286                                 "<?xml version='1.0' encoding='utf-16'?>" +
287                                 "<SimpleEnumeration d1p1:type='SimpleEnumeration' xmlns:d1p1='{0}'>SECOND</SimpleEnumeration>",
288                                 XmlSchema.InstanceNamespace), sw.ToString ());
289                 }
290
291                 [Test]
292                 public void TestSerializeEnumeration ()
293                 {
294                         Serialize (SimpleEnumeration.FIRST);
295                         Assert.AreEqual (Infoset ("<SimpleEnumeration>FIRST</SimpleEnumeration>"), WriterText, "#1");
296
297                         Serialize (SimpleEnumeration.SECOND);
298                         Assert.AreEqual (Infoset ("<SimpleEnumeration>SECOND</SimpleEnumeration>"), WriterText, "#2");
299                 }
300
301                 [Test]
302                 public void TestSerializeEnumeration_Encoded ()
303                 {
304                         SerializeEncoded (SimpleEnumeration.FIRST);
305                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
306                                 "<?xml version='1.0' encoding='utf-16'?>" +
307                                 "<SimpleEnumeration d1p1:type='SimpleEnumeration' xmlns:d1p1='{0}'>FIRST</SimpleEnumeration>",
308                                 XmlSchema.InstanceNamespace), sw.ToString (), "#B1");
309
310                         SerializeEncoded (SimpleEnumeration.SECOND);
311                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
312                                 "<?xml version='1.0' encoding='utf-16'?>" +
313                                 "<SimpleEnumeration d1p1:type='SimpleEnumeration' xmlns:d1p1='{0}'>SECOND</SimpleEnumeration>",
314                                 XmlSchema.InstanceNamespace), sw.ToString (), "#B2");
315                 }
316
317                 [Test]
318                 public void TestSerializeEnumDefaultValue ()
319                 {
320                         Serialize (new EnumDefaultValue ());
321                         Assert.AreEqual (Infoset ("<EnumDefaultValue />"), WriterText, "#1");
322
323                         Serialize (new SimpleEnumeration ());
324                         Assert.AreEqual (Infoset ("<SimpleEnumeration>FIRST</SimpleEnumeration>"), WriterText, "#2");
325
326                         Serialize (3, typeof (EnumDefaultValue));
327                         Assert.AreEqual (Infoset ("<EnumDefaultValue>e3</EnumDefaultValue>"), WriterText, "#3");
328
329                         Serialize (EnumDefaultValue.e3, typeof (EnumDefaultValue));
330                         Assert.AreEqual (Infoset ("<EnumDefaultValue>e3</EnumDefaultValue>"), WriterText, "#4");
331
332                         Serialize (EnumDefaultValue.e1 | EnumDefaultValue.e2, typeof (EnumDefaultValue));
333                         Assert.AreEqual (Infoset ("<EnumDefaultValue>e3</EnumDefaultValue>"), WriterText, "#5");
334
335                         Serialize (EnumDefaultValue.e1 | EnumDefaultValue.e2 | EnumDefaultValue.e3, typeof (EnumDefaultValue));
336                         Assert.AreEqual (Infoset ("<EnumDefaultValue>e3</EnumDefaultValue>"), WriterText, "#6");
337
338                         Serialize (EnumDefaultValue.e1 | EnumDefaultValue.e3, typeof (EnumDefaultValue));
339                         Assert.AreEqual (Infoset ("<EnumDefaultValue>e3</EnumDefaultValue>"), WriterText, "#7");
340
341                         Serialize (EnumDefaultValue.e2 | EnumDefaultValue.e3, typeof (EnumDefaultValue));
342                         Assert.AreEqual (Infoset ("<EnumDefaultValue>e3</EnumDefaultValue>"), WriterText, "#8");
343
344                         Serialize (3, typeof (FlagEnum));
345                         Assert.AreEqual (Infoset ("<FlagEnum>one two</FlagEnum>"), WriterText, "#9");
346
347                         Serialize (5, typeof (FlagEnum));
348                         Assert.AreEqual (Infoset ("<FlagEnum>one four</FlagEnum>"), WriterText, "#10");
349
350                         Serialize (FlagEnum.e4, typeof (FlagEnum));
351                         Assert.AreEqual (Infoset ("<FlagEnum>four</FlagEnum>"), WriterText, "#11");
352
353                         Serialize (FlagEnum.e1 | FlagEnum.e2, typeof (FlagEnum));
354                         Assert.AreEqual (Infoset ("<FlagEnum>one two</FlagEnum>"), WriterText, "#12");
355
356                         Serialize (FlagEnum.e1 | FlagEnum.e2 | FlagEnum.e4, typeof (FlagEnum));
357                         Assert.AreEqual (Infoset ("<FlagEnum>one two four</FlagEnum>"), WriterText, "#13");
358
359                         Serialize (FlagEnum.e1 | FlagEnum.e4, typeof (FlagEnum));
360                         Assert.AreEqual (Infoset ("<FlagEnum>one four</FlagEnum>"), WriterText, "#14");
361
362                         Serialize (FlagEnum.e2 | FlagEnum.e4, typeof (FlagEnum));
363                         Assert.AreEqual (Infoset ("<FlagEnum>two four</FlagEnum>"), WriterText, "#15");
364
365                         Serialize (3, typeof (EnumDefaultValueNF));
366                         Assert.AreEqual (Infoset ("<EnumDefaultValueNF>e3</EnumDefaultValueNF>"), WriterText, "#16");
367
368                         Serialize (EnumDefaultValueNF.e2, typeof (EnumDefaultValueNF));
369                         Assert.AreEqual (Infoset ("<EnumDefaultValueNF>e2</EnumDefaultValueNF>"), WriterText, "#17");
370
371                         Serialize (2, typeof (ZeroFlagEnum));
372                         Assert.AreEqual (Infoset ("<ZeroFlagEnum>tns:t&lt;w&gt;o</ZeroFlagEnum>"), WriterText, "#18");
373
374                         Serialize (new ZeroFlagEnum ()); // enum actually has a field with value 0
375                         Assert.AreEqual (Infoset ("<ZeroFlagEnum>zero</ZeroFlagEnum>"), WriterText, "#19");
376                 }
377
378                 [Test]
379                 [Category ("NotWorking")]
380                 public void TestSerializeEnumDefaultValue_Encoded ()
381                 {
382                         SerializeEncoded (new EnumDefaultValue ());
383                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
384                                 "<?xml version='1.0' encoding='utf-16'?>" +
385                                 "<EnumDefaultValue d1p1:type='EnumDefaultValue' xmlns:d1p1='{0}' />",
386                                 XmlSchema.InstanceNamespace), sw.ToString (), "#1");
387
388                         SerializeEncoded (new SimpleEnumeration ());
389                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
390                                 "<?xml version='1.0' encoding='utf-16'?>" +
391                                 "<SimpleEnumeration d1p1:type='SimpleEnumeration' xmlns:d1p1='{0}'>FIRST</SimpleEnumeration>",
392                                 XmlSchema.InstanceNamespace), sw.ToString (), "#2");
393
394                         SerializeEncoded (3, typeof (EnumDefaultValue));
395                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
396                                 "<?xml version='1.0' encoding='utf-16'?>" +
397                                 "<EnumDefaultValue d1p1:type='EnumDefaultValue' xmlns:d1p1='{0}'>e3</EnumDefaultValue>",
398                                 XmlSchema.InstanceNamespace), sw.ToString (), "#3");
399
400                         SerializeEncoded (EnumDefaultValue.e3, typeof (EnumDefaultValue));
401                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
402                                 "<?xml version='1.0' encoding='utf-16'?>" +
403                                 "<EnumDefaultValue d1p1:type='EnumDefaultValue' xmlns:d1p1='{0}'>e3</EnumDefaultValue>",
404                                 XmlSchema.InstanceNamespace), sw.ToString (), "#4");
405
406                         SerializeEncoded (EnumDefaultValue.e1 | EnumDefaultValue.e2, typeof (EnumDefaultValue));
407                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
408                                 "<?xml version='1.0' encoding='utf-16'?>" +
409                                 "<EnumDefaultValue d1p1:type='EnumDefaultValue' xmlns:d1p1='{0}'>e3</EnumDefaultValue>",
410                                 XmlSchema.InstanceNamespace), sw.ToString (), "#5");
411
412                         SerializeEncoded (EnumDefaultValue.e1 | EnumDefaultValue.e2 | EnumDefaultValue.e3, typeof (EnumDefaultValue));
413                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
414                                 "<?xml version='1.0' encoding='utf-16'?>" +
415                                 "<EnumDefaultValue d1p1:type='EnumDefaultValue' xmlns:d1p1='{0}'>e3</EnumDefaultValue>",
416                                 XmlSchema.InstanceNamespace), sw.ToString (), "#6");
417
418                         SerializeEncoded (EnumDefaultValue.e1 | EnumDefaultValue.e3, typeof (EnumDefaultValue));
419                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
420                                 "<?xml version='1.0' encoding='utf-16'?>" +
421                                 "<EnumDefaultValue d1p1:type='EnumDefaultValue' xmlns:d1p1='{0}'>e3</EnumDefaultValue>",
422                                 XmlSchema.InstanceNamespace), sw.ToString (), "#7");
423
424                         SerializeEncoded (EnumDefaultValue.e2 | EnumDefaultValue.e3, typeof (EnumDefaultValue));
425                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
426                                 "<?xml version='1.0' encoding='utf-16'?>" +
427                                 "<EnumDefaultValue d1p1:type='EnumDefaultValue' xmlns:d1p1='{0}'>e3</EnumDefaultValue>",
428                                 XmlSchema.InstanceNamespace), sw.ToString (), "#8");
429
430                         SerializeEncoded (3, typeof (FlagEnum));
431                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
432                                 "<?xml version='1.0' encoding='utf-16'?>" +
433                                 "<FlagEnum d1p1:type='FlagEnum' xmlns:d1p1='{0}'>e1 e2</FlagEnum>",
434                                 XmlSchema.InstanceNamespace), sw.ToString (), "#9");
435
436                         SerializeEncoded (5, typeof (FlagEnum));
437                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
438                                 "<?xml version='1.0' encoding='utf-16'?>" +
439                                 "<FlagEnum d1p1:type='FlagEnum' xmlns:d1p1='{0}'>e1 e4</FlagEnum>",
440                                 XmlSchema.InstanceNamespace), sw.ToString (), "#10");
441
442                         SerializeEncoded (FlagEnum.e4, typeof (FlagEnum));
443                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
444                                 "<?xml version='1.0' encoding='utf-16'?>" +
445                                 "<FlagEnum d1p1:type='FlagEnum' xmlns:d1p1='{0}'>e4</FlagEnum>",
446                                 XmlSchema.InstanceNamespace), sw.ToString (), "#11");
447
448                         SerializeEncoded (FlagEnum.e1 | FlagEnum.e2, typeof (FlagEnum));
449                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
450                                 "<?xml version='1.0' encoding='utf-16'?>" +
451                                 "<FlagEnum d1p1:type='FlagEnum' xmlns:d1p1='{0}'>e1 e2</FlagEnum>",
452                                 XmlSchema.InstanceNamespace), sw.ToString (), "#12");
453
454                         SerializeEncoded (FlagEnum.e1 | FlagEnum.e2 | FlagEnum.e4, typeof (FlagEnum));
455                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
456                                 "<?xml version='1.0' encoding='utf-16'?>" +
457                                 "<FlagEnum d1p1:type='FlagEnum' xmlns:d1p1='{0}'>e1 e2 e4</FlagEnum>",
458                                 XmlSchema.InstanceNamespace), sw.ToString (), "#13");
459
460                         SerializeEncoded (FlagEnum.e1 | FlagEnum.e4, typeof (FlagEnum));
461                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
462                                 "<?xml version='1.0' encoding='utf-16'?>" +
463                                 "<FlagEnum d1p1:type='FlagEnum' xmlns:d1p1='{0}'>e1 e4</FlagEnum>",
464                                 XmlSchema.InstanceNamespace), sw.ToString (), "#14");
465
466                         SerializeEncoded (FlagEnum.e2 | FlagEnum.e4, typeof (FlagEnum));
467                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
468                                 "<?xml version='1.0' encoding='utf-16'?>" +
469                                 "<FlagEnum d1p1:type='FlagEnum' xmlns:d1p1='{0}'>e2 e4</FlagEnum>",
470                                 XmlSchema.InstanceNamespace), sw.ToString (), "#15");
471
472                         SerializeEncoded (3, typeof (EnumDefaultValueNF));
473                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
474                                 "<?xml version='1.0' encoding='utf-16'?>" +
475                                 "<EnumDefaultValueNF d1p1:type='EnumDefaultValueNF' xmlns:d1p1='{0}'>e3</EnumDefaultValueNF>",
476                                 XmlSchema.InstanceNamespace), sw.ToString (), "#16");
477
478                         SerializeEncoded (EnumDefaultValueNF.e2, typeof (EnumDefaultValueNF));
479                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
480                                 "<?xml version='1.0' encoding='utf-16'?>" +
481                                 "<EnumDefaultValueNF d1p1:type='EnumDefaultValueNF' xmlns:d1p1='{0}'>e2</EnumDefaultValueNF>",
482                                 XmlSchema.InstanceNamespace), sw.ToString (), "#17");
483
484                         SerializeEncoded (2, typeof (ZeroFlagEnum));
485                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
486                                 "<?xml version='1.0' encoding='utf-16'?>" +
487                                 "<ZeroFlagEnum d1p1:type='ZeroFlagEnum' xmlns:d1p1='{0}'>e2</ZeroFlagEnum>",
488                                 XmlSchema.InstanceNamespace), sw.ToString (), "#18");
489
490                         SerializeEncoded (new ZeroFlagEnum ()); // enum actually has a field with value 0
491                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
492                                 "<?xml version='1.0' encoding='utf-16'?>" +
493                                 "<ZeroFlagEnum d1p1:type='ZeroFlagEnum' xmlns:d1p1='{0}'>e0</ZeroFlagEnum>",
494                                 XmlSchema.InstanceNamespace), sw.ToString (), "#19");
495                 }
496
497                 [Test]
498                 public void TestSerializeEnumDefaultValue_InvalidValue1 ()
499                 {
500                         try {
501                                 Serialize ("b", typeof (EnumDefaultValue));
502                                 Assert.Fail ("#A1");
503                         } catch (InvalidOperationException ex) {
504                                 Assert.IsNotNull (ex.InnerException, "#A2");
505                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#A3");
506                         }
507
508                         try {
509                                 Serialize ("e1", typeof (EnumDefaultValue));
510                                 Assert.Fail ("#B1");
511                         } catch (InvalidOperationException ex) {
512                                 Assert.IsNotNull (ex.InnerException, "#B2");
513                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#B3");
514                         }
515
516                         try {
517                                 Serialize ("e1,e2", typeof (EnumDefaultValue));
518                                 Assert.Fail ("#C1");
519                         } catch (InvalidOperationException ex) {
520                                 Assert.IsNotNull (ex.InnerException, "#C2");
521                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#C3");
522                         }
523
524                         try {
525                                 Serialize (string.Empty, typeof (EnumDefaultValue));
526                                 Assert.Fail ("#D1");
527                         } catch (InvalidOperationException ex) {
528                                 Assert.IsNotNull (ex.InnerException, "#D2");
529                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#D3");
530                         }
531
532                         try {
533                                 Serialize ("1", typeof (EnumDefaultValue));
534                                 Assert.Fail ("#E1");
535                         } catch (InvalidOperationException ex) {
536                                 Assert.IsNotNull (ex.InnerException, "#E2");
537                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#E3");
538                         }
539
540                         try {
541                                 Serialize ("0", typeof (EnumDefaultValue));
542                                 Assert.Fail ("#F1");
543                         } catch (InvalidOperationException ex) {
544                                 Assert.IsNotNull (ex.InnerException, "#F2");
545                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#F3");
546                         }
547
548                         try {
549                                 Serialize (new SimpleClass (), typeof (EnumDefaultValue));
550                                 Assert.Fail ("#G1");
551                         } catch (InvalidOperationException ex) {
552                                 Assert.IsNotNull (ex.InnerException, "#G2");
553                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#G3");
554                         }
555                 }
556
557                 [Test]
558                 public void TestSerializeEnumDefaultValue_InvalidValue2 ()
559                 {
560                         try {
561                                 Serialize (5, typeof (EnumDefaultValue));
562                                 Assert.Fail ("#1");
563                         } catch (InvalidOperationException ex) {
564                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
565                                 Assert.IsNotNull (ex.InnerException, "#3");
566                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#4");
567                                 Assert.IsNotNull (ex.InnerException.Message, "#5");
568                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("'5'") != -1, "#6");
569                                 Assert.IsTrue (ex.InnerException.Message.IndexOf (typeof (EnumDefaultValue).FullName) != -1, "#7");
570                         }
571                 }
572
573                 [Test]
574                 public void TestSerializeEnumDefaultValueNF_InvalidValue1 ()
575                 {
576                         try {
577                                 Serialize (new EnumDefaultValueNF ());
578                                 Assert.Fail ("#1");
579                         } catch (InvalidOperationException ex) {
580                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
581                                 Assert.IsNotNull (ex.InnerException, "#3");
582                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#4");
583                                 Assert.IsNotNull (ex.InnerException.Message, "#5");
584                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("'0'") != -1, "#6");
585                                 Assert.IsTrue (ex.InnerException.Message.IndexOf (typeof (EnumDefaultValueNF).FullName) != -1, "#7");
586                         }
587                 }
588
589                 [Test]
590                 public void TestSerializeEnumDefaultValueNF_InvalidValue2 ()
591                 {
592                         try {
593                                 Serialize (15, typeof (EnumDefaultValueNF));
594                                 Assert.Fail ("#1");
595                         } catch (InvalidOperationException ex) {
596                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
597                                 Assert.IsNotNull (ex.InnerException, "#3");
598                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#4");
599                                 Assert.IsNotNull (ex.InnerException.Message, "#5");
600                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("'15'") != -1, "#6");
601                                 Assert.IsTrue (ex.InnerException.Message.IndexOf (typeof (EnumDefaultValueNF).FullName) != -1, "#7");
602                         }
603                 }
604
605                 [Test]
606                 public void TestSerializeEnumDefaultValueNF_InvalidValue3 ()
607                 {
608                         try {
609                                 Serialize ("b", typeof (EnumDefaultValueNF));
610                                 Assert.Fail ("#A1");
611                         } catch (InvalidOperationException ex) {
612                                 Assert.IsNotNull (ex.InnerException, "#A2");
613                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#A3");
614                         }
615
616                         try {
617                                 Serialize ("e2", typeof (EnumDefaultValueNF));
618                                 Assert.Fail ("#B1");
619                         } catch (InvalidOperationException ex) {
620                                 Assert.IsNotNull (ex.InnerException, "#B2");
621                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#B3");
622                         }
623
624                         try {
625                                 Serialize (string.Empty, typeof (EnumDefaultValueNF));
626                                 Assert.Fail ("#C1");
627                         } catch (InvalidOperationException ex) {
628                                 Assert.IsNotNull (ex.InnerException, "#C2");
629                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#C3");
630                         }
631
632                         try {
633                                 Serialize ("1", typeof (EnumDefaultValueNF));
634                                 Assert.Fail ("#D1");
635                         } catch (InvalidOperationException ex) {
636                                 Assert.IsNotNull (ex.InnerException, "#D2");
637                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#D3");
638                         }
639
640                         try {
641                                 Serialize ("0", typeof (EnumDefaultValueNF));
642                                 Assert.Fail ("#E1");
643                         } catch (InvalidOperationException ex) {
644                                 Assert.IsNotNull (ex.InnerException, "#E2");
645                                 Assert.AreEqual (typeof (InvalidCastException), ex.InnerException.GetType (), "#E3");
646                         }
647                 }
648
649                 [Test]
650                 public void TestSerializeField ()
651                 {
652                         Field f = new Field ();
653                         Serialize (f, typeof (Field));
654                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
655                                 "<field xmlns:xsd='{0}' xmlns:xsi='{1}' flag1='' flag2='' flag3=''" +
656                                 " flag4='' modifiers='public' modifiers2='public' modifiers4='public' />",
657                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText, "#A");
658
659                         f.Flags1 = FlagEnum.e1;
660                         f.Flags2 = FlagEnum.e1;
661                         f.Flags3 = FlagEnum.e2;
662                         f.Modifiers = MapModifiers.Protected;
663                         f.Modifiers2 = MapModifiers.Public;
664                         f.Modifiers3 = MapModifiers.Public;
665                         f.Modifiers4 = MapModifiers.Protected;
666                         f.Modifiers5 = MapModifiers.Public;
667                         Serialize (f, typeof (Field));
668                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
669                                 "<field xmlns:xsd='{0}' xmlns:xsi='{1}' flag3='two' flag4=''" +
670                                 " modifiers='protected' modifiers2='public' />",
671                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText, "#B");
672
673                         f.Flags1 = (FlagEnum) 1;
674                         f.Flags1 = FlagEnum.e2;
675                         f.Flags2 = FlagEnum.e2;
676                         f.Flags3 = FlagEnum.e1 | FlagEnum.e2;
677                         f.Modifiers = MapModifiers.Public;
678                         f.Modifiers2 = MapModifiers.Protected;
679                         f.Modifiers3 = MapModifiers.Protected;
680                         f.Modifiers4 = MapModifiers.Public;
681                         f.Modifiers5 = MapModifiers.Protected;
682                         Serialize (f, typeof (Field));
683                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
684                                 "<field xmlns:xsd='{0}' xmlns:xsi='{1}' flag1='two' flag2='two'" +
685                                 " flag4='' modifiers='public' modifiers2='protected'" +
686                                 " modifiers3='protected' modifiers4='public'" +
687                                 " modifiers5='protected' />",
688                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText, "#C");
689
690                         f.Flags1 = FlagEnum.e1 | FlagEnum.e2;
691                         f.Flags2 = FlagEnum.e2;
692                         f.Flags3 = FlagEnum.e4;
693                         f.Flags4 = FlagEnum.e1 | FlagEnum.e2 | FlagEnum.e4;
694                         f.Modifiers3 = MapModifiers.Public;
695                         f.Modifiers4 = MapModifiers.Protected;
696                         f.Modifiers5 = MapModifiers.Public;
697                         f.Names = new string[] { "a", "b" };
698                         Serialize (f, typeof (Field));
699                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
700                                 "<field xmlns:xsd='{0}' xmlns:xsi='{1}' flag1='one two' flag2='two'" +
701                                 " flag3='four' flag4='one two four' modifiers='public'" +
702                                 " modifiers2='protected' names='a b' />",
703                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText, "#D");
704
705                         f.Flags2 = (FlagEnum) 444;
706                         f.Flags3 = (FlagEnum) 555;
707                         f.Modifiers = (MapModifiers) 666;
708                         f.Modifiers2 = (MapModifiers) 777;
709                         f.Modifiers3 = (MapModifiers) 0;
710                         f.Modifiers4 = (MapModifiers) 888;
711                         f.Modifiers5 = (MapModifiers) 999;
712                         try {
713                                 Serialize (f, typeof (Field));
714                                 Assert.Fail ("#E1");
715                         } catch (InvalidOperationException ex) {
716                                 // There was an error generating the XML document
717                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#E2");
718                                 Assert.IsNotNull (ex.Message, "#E3");
719                                 Assert.IsNotNull (ex.InnerException, "#E4");
720
721                                 // Instance validation error: '444' is not a valid value for
722                                 // MonoTests.System.Xml.TestClasses.FlagEnum
723                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#E5");
724                                 Assert.IsNotNull (ex.InnerException.Message, "#E6");
725                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("'444'") != -1, "#E7");
726                                 Assert.IsTrue (ex.InnerException.Message.IndexOf (typeof (FlagEnum).FullName) != -1, "#E8");
727                                 Assert.IsNull (ex.InnerException.InnerException, "#E9");
728                         }
729                 }
730
731                 [Test]
732                 [Category ("NotDotNet")] // MS bug
733                 public void TestSerializeField_Encoded ()
734                 {
735                         Field_Encoded f = new Field_Encoded ();
736                         SerializeEncoded (f, typeof (Field_Encoded));
737                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
738                                 "<?xml version='1.0' encoding='utf-16'?>" +
739                                 "<q1:field xmlns:xsd='{0}' xmlns:xsi='{1}' id='id1' flag1=''" +
740                                 " flag2='' flag3='' flag4='' modifiers='PuBlIc'" +
741                                 " modifiers2='PuBlIc' modifiers4='PuBlIc' xmlns:q1='some:urn' />",
742                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace),
743                                 sw.GetStringBuilder ().ToString (), "#A");
744
745                         f.Flags1 = FlagEnum_Encoded.e1;
746                         f.Flags2 = FlagEnum_Encoded.e1;
747                         f.Flags3 = FlagEnum_Encoded.e2;
748                         f.Modifiers = MapModifiers.Protected;
749                         f.Modifiers2 = MapModifiers.Public;
750                         f.Modifiers3 = MapModifiers.Public;
751                         f.Modifiers4 = MapModifiers.Protected;
752                         f.Modifiers5 = MapModifiers.Public;
753                         SerializeEncoded (f, typeof (Field_Encoded));
754                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
755                                 "<?xml version='1.0' encoding='utf-16'?>" +
756                                 "<q1:field xmlns:xsd='{0}' xmlns:xsi='{1}' id='id1' flag3='two'" +
757                                 " flag4='' modifiers='Protected' modifiers2='PuBlIc'" +
758                                 " xmlns:q1='some:urn' />",
759                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace),
760                                 sw.GetStringBuilder ().ToString (), "#B");
761
762                         f.Flags1 = FlagEnum_Encoded.e2;
763                         f.Flags2 = FlagEnum_Encoded.e2;
764                         f.Flags3 = FlagEnum_Encoded.e1 | FlagEnum_Encoded.e2;
765                         f.Modifiers = MapModifiers.Public;
766                         f.Modifiers2 = MapModifiers.Protected;
767                         f.Modifiers3 = MapModifiers.Protected;
768                         f.Modifiers4 = MapModifiers.Public;
769                         f.Modifiers5 = MapModifiers.Protected;
770                         SerializeEncoded (f, typeof (Field_Encoded));
771                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
772                                 "<?xml version='1.0' encoding='utf-16'?>" +
773                                 "<q1:field xmlns:xsd='{0}' xmlns:xsi='{1}' id='id1' flag1='two'" +
774                                 " flag2='two' flag4='' modifiers='PuBlIc' modifiers2='Protected'" +
775                                 " modifiers3='Protected' modifiers4='PuBlIc' modifiers5='Protected'" +
776                                 " xmlns:q1='some:urn' />",
777                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace),
778                                 sw.GetStringBuilder ().ToString (), "#C");
779
780                         f.Flags1 = (FlagEnum_Encoded) 1;
781                         f.Flags2 = (FlagEnum_Encoded) 444;
782                         f.Flags3 = (FlagEnum_Encoded) 555;
783                         f.Modifiers = (MapModifiers) 666;
784                         f.Modifiers2 = (MapModifiers) 777;
785                         f.Modifiers3 = (MapModifiers) 0;
786                         f.Modifiers4 = (MapModifiers) 888;
787                         f.Modifiers5 = (MapModifiers) 999;
788                         try {
789                         SerializeEncoded (f, typeof (Field_Encoded));
790                                 Assert.Fail ("#D1");
791                         } catch (InvalidOperationException ex) {
792                                 // There was an error generating the XML document
793                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#D2");
794                                 Assert.IsNotNull (ex.Message, "#D3");
795                                 Assert.IsNotNull (ex.InnerException, "#D4");
796
797                                 // Instance validation error: '444' is not a valid value for
798                                 // MonoTests.System.Xml.TestClasses.FlagEnum_Encoded
799                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#D5");
800                                 Assert.IsNotNull (ex.InnerException.Message, "#D6");
801                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("'444'") != -1, "#D7");
802                                 Assert.IsTrue (ex.InnerException.Message.IndexOf (typeof (FlagEnum_Encoded).FullName) != -1, "#D8");
803                                 Assert.IsNull (ex.InnerException.InnerException, "#D9");
804                         }
805                 }
806
807                 [Test]
808                 public void TestSerializeGroup ()
809                 {
810                         Group myGroup = new Group ();
811                         myGroup.GroupName = ".NET";
812
813                         Byte[] hexByte = new Byte[] { 0x64, 0x32 };
814                         myGroup.GroupNumber = hexByte;
815
816                         DateTime myDate = new DateTime (2002, 5, 2);
817                         myGroup.Today = myDate;
818                         myGroup.PostitiveInt = "10000";
819                         myGroup.IgnoreThis = true;
820                         Car thisCar = (Car) myGroup.myCar ("1234566");
821                         myGroup.MyVehicle = thisCar;
822
823                         SetUpWriter ();
824                         xtw.WriteStartDocument (true);
825                         xtw.WriteStartElement ("Wrapper");
826                         SerializeEncoded (xtw, myGroup, typeof (Group));
827                         xtw.WriteEndElement ();
828                         xtw.Close ();
829
830                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
831                                 "<Wrapper>" +
832                                 "<Group xmlns:xsd='{0}' xmlns:xsi='{1}' xmlns:d2p1='http://www.cpandl.com' CreationDate='2002-05-02' d2p1:GroupName='.NET' GroupNumber='ZDI=' id='id1'>" +
833                                 "<PosInt xsi:type='xsd:nonNegativeInteger'>10000</PosInt>" +
834                                 "<Grouptype xsi:type='GroupType'>Small</Grouptype>" +
835                                 "<MyVehicle href='#id2' />" +
836                                 "</Group>" +
837                                 "<Car xmlns:d2p1='{1}' id='id2' d2p1:type='Car'>" +
838                                 "<licenseNumber xmlns:q1='{0}' d2p1:type='q1:string'>1234566</licenseNumber>" +
839                                 "<makeDate xmlns:q2='{0}' d2p1:type='q2:date'>0001-01-01</makeDate>" +
840                                 "</Car>" +
841                                 "</Wrapper>",
842                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
843                                 WriterText, "#1");
844
845                         myGroup.GroupName = null;
846                         myGroup.Grouptype = GroupType.B;
847                         myGroup.MyVehicle.licenseNumber = null;
848                         myGroup.MyVehicle.weight = "450";
849
850                         SetUpWriter ();
851                         xtw.WriteStartDocument (true);
852                         xtw.WriteStartElement ("Wrapper");
853                         SerializeEncoded (xtw, myGroup, typeof (Group));
854                         xtw.WriteEndElement ();
855                         xtw.Close ();
856
857                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
858                                 "<Wrapper>" +
859                                 "<Group xmlns:xsd='{0}' xmlns:xsi='{1}' CreationDate='2002-05-02' GroupNumber='ZDI=' id='id1'>" +
860                                 "<PosInt xsi:type='xsd:nonNegativeInteger'>10000</PosInt>" +
861                                 "<Grouptype xsi:type='GroupType'>Large</Grouptype>" +
862                                 "<MyVehicle href='#id2' />" +
863                                 "</Group>" +
864                                 "<Car xmlns:d2p1='{1}' id='id2' d2p1:type='Car'>" +
865                                 "<makeDate xmlns:q1='{0}' d2p1:type='q1:date'>0001-01-01</makeDate>" +
866                                 "<weight xmlns:q2='{0}' d2p1:type='q2:string'>450</weight>" +
867                                 "</Car>" +
868                                 "</Wrapper>",
869                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
870                                 WriterText, "#2");
871                 }
872
873                 [Test]
874                 public void TestSerializeZeroFlagEnum_InvalidValue ()
875                 {
876                         try {
877                                 Serialize (4, typeof (ZeroFlagEnum)); // corresponding enum field is marked XmlIgnore
878                                 Assert.Fail ("#1");
879                         } catch (InvalidOperationException ex) {
880                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
881                                 Assert.IsNotNull (ex.InnerException, "#3");
882                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#4");
883                                 Assert.IsNotNull (ex.InnerException.Message, "#5");
884                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("'4'") != -1, "#6");
885                                 Assert.IsTrue (ex.InnerException.Message.IndexOf (typeof (ZeroFlagEnum).FullName) != -1, "#7");
886                         }
887                 }
888
889                 [Test]
890                 public void TestSerializeQualifiedName ()
891                 {
892                         Serialize (new XmlQualifiedName ("me", "home.urn"));
893                         Assert.AreEqual (Infoset ("<QName xmlns:q1='home.urn'>q1:me</QName>"), WriterText);
894                 }
895
896                 [Test]
897                 public void TestSerializeBytes ()
898                 {
899                         Serialize ((byte) 0xAB);
900                         Assert.AreEqual (Infoset ("<unsignedByte>171</unsignedByte>"), WriterText);
901
902                         Serialize ((byte) 15);
903                         Assert.AreEqual (Infoset ("<unsignedByte>15</unsignedByte>"), WriterText);
904                 }
905
906                 [Test]
907                 public void TestSerializeByteArrays ()
908                 {
909                         Serialize (new byte[] { });
910                         Assert.AreEqual (Infoset ("<base64Binary />"), WriterText);
911
912                         Serialize (new byte[] { 0xAB, 0xCD });
913                         Assert.AreEqual (Infoset ("<base64Binary>q80=</base64Binary>"), WriterText);
914                 }
915
916                 [Test]
917                 public void TestSerializeDateTime ()
918                 {
919                         DateTime d = new DateTime ();
920                         Serialize (d);
921
922                         TimeZone tz = TimeZone.CurrentTimeZone;
923                         TimeSpan off = tz.GetUtcOffset (d);
924                         string sp = string.Format ("{0}{1:00}:{2:00}", off.Ticks >= 0 ? "+" : "", off.Hours, off.Minutes);
925                         Assert.AreEqual (Infoset ("<dateTime>0001-01-01T00:00:00</dateTime>"), WriterText);
926                 }
927
928                 /*
929                 FIXME
930                  - decimal
931                  - Guid
932                  - XmlNode objects
933                 
934                 [Test]
935                 public void TestSerialize()
936                 {
937                         Serialize();
938                         Assert.AreEqual (WriterText, "");
939                 }
940                 */
941
942                 // test basic class serialization /////////////////////////////////////         
943                 [Test]
944                 public void TestSerializeSimpleClass ()
945                 {
946                         SimpleClass simple = new SimpleClass ();
947                         Serialize (simple);
948                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
949
950                         simple.something = "hello";
951
952                         Serialize (simple);
953                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>hello</something></SimpleClass>"), WriterText);
954                 }
955
956                 [Test]
957                 public void TestSerializeStringCollection ()
958                 {
959                         StringCollection strings = new StringCollection ();
960                         Serialize (strings);
961                         Assert.AreEqual (Infoset ("<ArrayOfString xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
962
963                         strings.Add ("hello");
964                         strings.Add ("goodbye");
965                         Serialize (strings);
966                         Assert.AreEqual (Infoset ("<ArrayOfString xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><string>hello</string><string>goodbye</string></ArrayOfString>"), WriterText);
967                 }
968
969                 [Test]
970                 public void TestSerializeOptionalValueTypeContainer ()
971                 {
972                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
973                         XmlAttributes attr;
974                         OptionalValueTypeContainer optionalValue = new OptionalValueTypeContainer ();
975
976                         Serialize (optionalValue);
977                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
978                                 "<?xml version='1.0' encoding='utf-16'?>" +
979                                 "<optionalValue xmlns:xsd='{0}' xmlns:xsi='{1}' xmlns='{2}' />",
980                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace, AnotherNamespace),
981                                 sw.ToString (), "#1");
982
983                         attr = new XmlAttributes ();
984
985                         // remove the DefaultValue attribute on the Flags member
986                         overrides.Add (typeof (OptionalValueTypeContainer), "Flags", attr);
987                         // remove the DefaultValue attribute on the Attributes member
988                         overrides.Add (typeof (OptionalValueTypeContainer), "Attributes", attr);
989
990                         Serialize (optionalValue, overrides);
991                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
992                                 "<?xml version='1.0' encoding='utf-16'?>" +
993                                 "<optionalValue xmlns:xsd='{0}' xmlns:xsi='{1}' xmlns='{2}'>" +
994                                 "<Attributes xmlns='{3}'>one four</Attributes>" +
995                                 "</optionalValue>", XmlSchema.Namespace, XmlSchema.InstanceNamespace,
996                                 AnotherNamespace, ANamespace), sw.ToString (), "#2");
997
998                         optionalValue.FlagsSpecified = true;
999                         Serialize (optionalValue, overrides);
1000                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
1001                                 "<?xml version='1.0' encoding='utf-16'?>" +
1002                                 "<optionalValue xmlns:xsd='{0}' xmlns:xsi='{1}' xmlns='{2}'>" +
1003                                 "<Attributes xmlns='{3}'>one four</Attributes>" +
1004                                 "<Flags xmlns='{3}'>one</Flags>" +
1005                                 "</optionalValue>",
1006                                 XmlSchema.Namespace, XmlSchema.InstanceNamespace, AnotherNamespace,
1007                                 ANamespace), sw.ToString (), "#3");
1008                 }
1009
1010                 [Test]
1011                 public void TestSerializePlainContainer ()
1012                 {
1013                         StringCollectionContainer container = new StringCollectionContainer ();
1014                         Serialize (container);
1015                         Assert.AreEqual (Infoset ("<StringCollectionContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><Messages /></StringCollectionContainer>"), WriterText);
1016
1017                         container.Messages.Add ("hello");
1018                         container.Messages.Add ("goodbye");
1019                         Serialize (container);
1020                         Assert.AreEqual (Infoset ("<StringCollectionContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><Messages><string>hello</string><string>goodbye</string></Messages></StringCollectionContainer>"), WriterText);
1021                 }
1022
1023                 [Test]
1024                 public void TestSerializeArrayContainer ()
1025                 {
1026                         ArrayContainer container = new ArrayContainer ();
1027                         Serialize (container);
1028                         Assert.AreEqual (Infoset ("<ArrayContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
1029
1030                         container.items = new object[] { 10, 20 };
1031                         Serialize (container);
1032                         Assert.AreEqual (Infoset ("<ArrayContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' ><items><anyType xsi:type='xsd:int'>10</anyType><anyType xsi:type='xsd:int'>20</anyType></items></ArrayContainer>"), WriterText);
1033
1034                         container.items = new object[] { 10, "hello" };
1035                         Serialize (container);
1036                         Assert.AreEqual (Infoset ("<ArrayContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' ><items><anyType xsi:type='xsd:int'>10</anyType><anyType xsi:type='xsd:string'>hello</anyType></items></ArrayContainer>"), WriterText);
1037                 }
1038
1039                 [Test]
1040                 public void TestSerializeClassArrayContainer ()
1041                 {
1042                         ClassArrayContainer container = new ClassArrayContainer ();
1043                         Serialize (container);
1044                         Assert.AreEqual (Infoset ("<ClassArrayContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
1045
1046                         SimpleClass simple1 = new SimpleClass ();
1047                         simple1.something = "hello";
1048                         SimpleClass simple2 = new SimpleClass ();
1049                         simple2.something = "hello";
1050                         container.items = new SimpleClass[2];
1051                         container.items[0] = simple1;
1052                         container.items[1] = simple2;
1053                         Serialize (container);
1054                         Assert.AreEqual (Infoset ("<ClassArrayContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' ><items><SimpleClass><something>hello</something></SimpleClass><SimpleClass><something>hello</something></SimpleClass></items></ClassArrayContainer>"), WriterText);
1055                 }
1056
1057                 // test basic attributes ///////////////////////////////////////////////
1058                 [Test]
1059                 public void TestSerializeSimpleClassWithXmlAttributes ()
1060                 {
1061                         SimpleClassWithXmlAttributes simple = new SimpleClassWithXmlAttributes ();
1062                         Serialize (simple);
1063                         Assert.AreEqual (Infoset ("<simple xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
1064
1065                         simple.something = "hello";
1066                         Serialize (simple);
1067                         Assert.AreEqual (Infoset ("<simple xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' member='hello' />"), WriterText);
1068                 }
1069
1070                 // test overrides ///////////////////////////////////////////////////////
1071                 [Test]
1072                 public void TestSerializeSimpleClassWithOverrides ()
1073                 {
1074                         // Also tests XmlIgnore
1075                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
1076
1077                         XmlAttributes attr = new XmlAttributes ();
1078                         attr.XmlIgnore = true;
1079                         overrides.Add (typeof (SimpleClassWithXmlAttributes), "something", attr);
1080
1081                         SimpleClassWithXmlAttributes simple = new SimpleClassWithXmlAttributes ();
1082                         simple.something = "hello";
1083                         Serialize (simple, overrides);
1084                         Assert.AreEqual (Infoset ("<simple xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
1085                 }
1086
1087                 [Test]
1088                 public void TestSerializeSchema ()
1089                 {
1090                         XmlSchema schema = new XmlSchema ();
1091                         schema.Items.Add (new XmlSchemaAttribute ());
1092                         schema.Items.Add (new XmlSchemaAttributeGroup ());
1093                         schema.Items.Add (new XmlSchemaComplexType ());
1094                         schema.Items.Add (new XmlSchemaNotation ());
1095                         schema.Items.Add (new XmlSchemaSimpleType ());
1096                         schema.Items.Add (new XmlSchemaGroup ());
1097                         schema.Items.Add (new XmlSchemaElement ());
1098
1099                         StringWriter sw = new StringWriter ();
1100                         XmlTextWriter xtw = new XmlTextWriter (sw);
1101                         xtw.QuoteChar = '\'';
1102                         xtw.Formatting = Formatting.Indented;
1103                         XmlSerializer xs = new XmlSerializer (schema.GetType ());
1104                         xs.Serialize (xtw, schema);
1105
1106                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
1107                                 "<?xml version='1.0' encoding='utf-16'?>{0}" +
1108                                 "<xsd:schema xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>{0}" +
1109                                 "  <xsd:attribute />{0}" +
1110                                 "  <xsd:attributeGroup />{0}" +
1111                                 "  <xsd:complexType />{0}" +
1112                                 "  <xsd:notation />{0}" +
1113                                 "  <xsd:simpleType />{0}" +
1114                                 "  <xsd:group />{0}" +
1115                                 "  <xsd:element />{0}" +
1116                                 "</xsd:schema>", Environment.NewLine), sw.ToString ());
1117                 }
1118
1119                 // test xmlText //////////////////////////////////////////////////////////
1120                 [Test]
1121                 public void TestSerializeXmlTextAttribute ()
1122                 {
1123                         SimpleClass simple = new SimpleClass ();
1124                         simple.something = "hello";
1125
1126                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
1127                         XmlAttributes attr = new XmlAttributes ();
1128                         overrides.Add (typeof (SimpleClass), "something", attr);
1129
1130                         attr.XmlText = new XmlTextAttribute ();
1131                         Serialize (simple, overrides);
1132                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>hello</SimpleClass>"), WriterText, "#1");
1133
1134                         attr.XmlText = new XmlTextAttribute (typeof (string));
1135                         Serialize (simple, overrides);
1136                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>hello</SimpleClass>"), WriterText, "#2");
1137
1138                         try {
1139                                 attr.XmlText = new XmlTextAttribute (typeof (byte[]));
1140                                 Serialize (simple, overrides);
1141                                 Assert.Fail ("#A1: XmlText.Type does not match the type it serializes: this should have failed");
1142                         } catch (InvalidOperationException ex) {
1143                                 // there was an error reflecting type 'MonoTests.System.Xml.TestClasses.SimpleClass'
1144                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#A2");
1145                                 Assert.IsNotNull (ex.Message, "#A3");
1146                                 Assert.IsTrue (ex.Message.IndexOf (typeof (SimpleClass).FullName) != -1, "#A4");
1147                                 Assert.IsNotNull (ex.InnerException, "#A5");
1148
1149                                 // there was an error reflecting field 'something'.
1150                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#A6");
1151                                 Assert.IsNotNull (ex.InnerException.Message, "#A7");
1152                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("something") != -1, "#A8");
1153                                 Assert.IsNotNull (ex.InnerException.InnerException, "#A9");
1154
1155                                 // the type for XmlText may not be specified for primitive types.
1156                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.InnerException.GetType (), "#A10");
1157                                 Assert.IsNotNull (ex.InnerException.InnerException.Message, "#A11");
1158                                 Assert.IsNull (ex.InnerException.InnerException.InnerException, "#A12");
1159                         }
1160
1161                         try {
1162                                 attr.XmlText = new XmlTextAttribute ();
1163                                 attr.XmlText.DataType = "sometype";
1164                                 Serialize (simple, overrides);
1165                                 Assert.Fail ("#B1: XmlText.DataType does not match the type it serializes: this should have failed");
1166                         } catch (InvalidOperationException ex) {
1167                                 // There was an error reflecting type 'MonoTests.System.Xml.TestClasses.SimpleClass'.
1168                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#B2");
1169                                 Assert.IsNotNull (ex.Message, "#B3");
1170                                 Assert.IsTrue (ex.Message.IndexOf (typeof (SimpleClass).FullName) != -1, "#B4");
1171                                 Assert.IsNotNull (ex.InnerException, "#B5");
1172
1173                                 // There was an error reflecting field 'something'.
1174                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#B6");
1175                                 Assert.IsNotNull (ex.InnerException.Message, "#B7");
1176                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("something") != -1, "#B8");
1177                                 Assert.IsNotNull (ex.InnerException.InnerException, "#B9");
1178
1179                                 //FIXME
1180                                 /*
1181                                 // There was an error reflecting type 'System.String'.
1182                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.InnerException.GetType (), "#B10");
1183                                 Assert.IsNotNull (ex.InnerException.InnerException.Message, "#B11");
1184                                 Assert.IsTrue (ex.InnerException.InnerException.Message.IndexOf (typeof (string).FullName) != -1, "#B12");
1185                                 Assert.IsNotNull (ex.InnerException.InnerException.InnerException, "#B13");
1186
1187                                 // Value 'sometype' cannot be used for the XmlElementAttribute.DataType property. 
1188                                 // The datatype 'http://www.w3.org/2001/XMLSchema:sometype' is missing.
1189                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.InnerException.InnerException.GetType (), "#B14");
1190                                 Assert.IsNotNull (ex.InnerException.InnerException.InnerException.Message, "#B15");
1191                                 Assert.IsTrue (ex.InnerException.InnerException.InnerException.Message.IndexOf ("http://www.w3.org/2001/XMLSchema:sometype") != -1, "#B16");
1192                                 Assert.IsNull (ex.InnerException.InnerException.InnerException.InnerException, "#B17");
1193                                 */
1194                         }
1195                 }
1196
1197                 // test xmlRoot //////////////////////////////////////////////////////////
1198                 [Test]
1199                 public void TestSerializeXmlRootAttribute ()
1200                 {
1201                         // constructor override & element name
1202                         XmlRootAttribute root = new XmlRootAttribute ();
1203                         root.ElementName = "renamed";
1204
1205                         SimpleClassWithXmlAttributes simpleWithAttributes = new SimpleClassWithXmlAttributes ();
1206                         Serialize (simpleWithAttributes, root);
1207                         Assert.AreEqual (Infoset ("<renamed xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
1208
1209                         SimpleClass simple = null;
1210                         root.IsNullable = false;
1211                         try {
1212                                 Serialize (simple, root);
1213                                 Assert.Fail ("Cannot serialize null object if XmlRoot's IsNullable == false");
1214                         } catch (NullReferenceException) {
1215                         }
1216
1217                         root.IsNullable = true;
1218                         try {
1219                                 Serialize (simple, root);
1220                                 Assert.Fail ("Cannot serialize null object if XmlRoot's IsNullable == true");
1221                         } catch (NullReferenceException) {
1222                         }
1223
1224                         simple = new SimpleClass ();
1225                         root.ElementName = null;
1226                         root.Namespace = "some.urn";
1227                         Serialize (simple, root);
1228                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns='some.urn' />"), WriterText);
1229                 }
1230
1231                 [Test]
1232                 public void TestSerializeXmlRootAttributeOnMember ()
1233                 {
1234                         // nested root
1235                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
1236                         XmlAttributes childAttr = new XmlAttributes ();
1237                         childAttr.XmlRoot = new XmlRootAttribute ("simple");
1238                         overrides.Add (typeof (SimpleClass), childAttr);
1239
1240                         XmlAttributes attr = new XmlAttributes ();
1241                         attr.XmlRoot = new XmlRootAttribute ("simple");
1242                         overrides.Add (typeof (ClassArrayContainer), attr);
1243
1244                         ClassArrayContainer container = new ClassArrayContainer ();
1245                         container.items = new SimpleClass[1];
1246                         container.items[0] = new SimpleClass ();
1247                         Serialize (container, overrides);
1248                         Assert.AreEqual (Infoset ("<simple xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' ><items><SimpleClass /></items></simple>"), WriterText);
1249
1250                         // FIXME test data type
1251                 }
1252
1253                 // test XmlAttribute /////////////////////////////////////////////////////
1254                 [Test]
1255                 public void TestSerializeXmlAttributeAttribute ()
1256                 {
1257                         // null
1258                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
1259                         XmlAttributes attr = new XmlAttributes ();
1260                         attr.XmlAttribute = new XmlAttributeAttribute ();
1261                         overrides.Add (typeof (SimpleClass), "something", attr);
1262
1263                         SimpleClass simple = new SimpleClass (); ;
1264                         Serialize (simple, overrides);
1265                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#1");
1266
1267                         // regular
1268                         simple.something = "hello";
1269                         Serialize (simple, overrides);
1270                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' something='hello' />"), WriterText, "#2");
1271
1272                         // AttributeName
1273                         attr.XmlAttribute.AttributeName = "somethingelse";
1274                         Serialize (simple, overrides);
1275                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' somethingelse='hello' />"), WriterText, "#3");
1276
1277                         // Type
1278                         // FIXME this should work, shouldnt it?
1279                         // attr.XmlAttribute.Type = typeof(string);
1280                         // Serialize(simple, overrides);
1281                         // Assert(WriterText.EndsWith(" something='hello' />"));
1282
1283                         // Namespace
1284                         attr.XmlAttribute.Namespace = "some:urn";
1285                         Serialize (simple, overrides);
1286                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' d1p1:somethingelse='hello' xmlns:d1p1='some:urn' />"), WriterText, "#4");
1287
1288                         // FIXME DataType
1289                         // FIXME XmlSchemaForm Form
1290
1291                         // FIXME write XmlQualifiedName as attribute
1292                 }
1293
1294                 // test XmlElement ///////////////////////////////////////////////////////
1295                 [Test]
1296                 public void TestSerializeXmlElementAttribute ()
1297                 {
1298                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
1299                         XmlAttributes attr = new XmlAttributes ();
1300                         XmlElementAttribute element = new XmlElementAttribute ();
1301                         attr.XmlElements.Add (element);
1302                         overrides.Add (typeof (SimpleClass), "something", attr);
1303
1304                         // null
1305                         SimpleClass simple = new SimpleClass (); ;
1306                         Serialize (simple, overrides);
1307                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#1");
1308
1309                         // not null
1310                         simple.something = "hello";
1311                         Serialize (simple, overrides);
1312                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>hello</something></SimpleClass>"), WriterText, "#2");
1313
1314                         //ElementName
1315                         element.ElementName = "saying";
1316                         Serialize (simple, overrides);
1317                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><saying>hello</saying></SimpleClass>"), WriterText, "#3");
1318
1319                         //IsNullable
1320                         element.IsNullable = false;
1321                         simple.something = null;
1322                         Serialize (simple, overrides);
1323                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#4");
1324
1325                         element.IsNullable = true;
1326                         simple.something = null;
1327                         Serialize (simple, overrides);
1328                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><saying xsi:nil='true' /></SimpleClass>"), WriterText, "#5");
1329
1330                         //Namespace
1331                         element.ElementName = null;
1332                         element.IsNullable = false;
1333                         element.Namespace = "some:urn";
1334                         simple.something = "hello";
1335                         Serialize (simple, overrides);
1336                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something xmlns='some:urn'>hello</something></SimpleClass>"), WriterText, "#6");
1337
1338                         //FIXME DataType
1339                         //FIXME Form
1340                         //FIXME Type
1341                 }
1342
1343                 // test XmlElementAttribute with arrays and collections //////////////////
1344                 [Test]
1345                 public void TestSerializeCollectionWithXmlElementAttribute ()
1346                 {
1347                         // the rule is:
1348                         // if no type is specified or the specified type 
1349                         //    matches the contents of the collection, 
1350                         //    serialize each element in an element named after the member.
1351                         // if the type does not match, or matches the collection itself,
1352                         //    create a base wrapping element for the member, and then
1353                         //    wrap each collection item in its own wrapping element based on type.
1354
1355                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
1356                         XmlAttributes attr = new XmlAttributes ();
1357                         XmlElementAttribute element = new XmlElementAttribute ();
1358                         attr.XmlElements.Add (element);
1359                         overrides.Add (typeof (StringCollectionContainer), "Messages", attr);
1360
1361                         // empty collection & no type info in XmlElementAttribute
1362                         StringCollectionContainer container = new StringCollectionContainer ();
1363                         Serialize (container, overrides);
1364                         Assert.AreEqual (Infoset ("<StringCollectionContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#1");
1365
1366                         // non-empty collection & no type info in XmlElementAttribute
1367                         container.Messages.Add ("hello");
1368                         Serialize (container, overrides);
1369                         Assert.AreEqual (Infoset ("<StringCollectionContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><Messages>hello</Messages></StringCollectionContainer>"), WriterText, "#2");
1370
1371                         // non-empty collection & only type info in XmlElementAttribute
1372                         element.Type = typeof (StringCollection);
1373                         Serialize (container, overrides);
1374                         Assert.AreEqual (Infoset ("<StringCollectionContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><Messages><string>hello</string></Messages></StringCollectionContainer>"), WriterText, "#3");
1375
1376                         // non-empty collection & only type info in XmlElementAttribute
1377                         element.Type = typeof (string);
1378                         Serialize (container, overrides);
1379                         Assert.AreEqual (Infoset ("<StringCollectionContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><Messages>hello</Messages></StringCollectionContainer>"), WriterText, "#4");
1380
1381                         // two elements
1382                         container.Messages.Add ("goodbye");
1383                         element.Type = null;
1384                         Serialize (container, overrides);
1385                         Assert.AreEqual (Infoset ("<StringCollectionContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><Messages>hello</Messages><Messages>goodbye</Messages></StringCollectionContainer>"), WriterText, "#5");
1386                 }
1387
1388                 // test DefaultValue /////////////////////////////////////////////////////
1389                 [Test]
1390                 public void TestSerializeDefaultValueAttribute ()
1391                 {
1392                         XmlAttributeOverrides overrides = new XmlAttributeOverrides ();
1393
1394                         XmlAttributes attr = new XmlAttributes ();
1395                         string defaultValueInstance = "nothing";
1396                         attr.XmlDefaultValue = defaultValueInstance;
1397                         overrides.Add (typeof (SimpleClass), "something", attr);
1398
1399                         // use the default
1400                         SimpleClass simple = new SimpleClass ();
1401                         Serialize (simple, overrides);
1402                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#A1");
1403
1404                         // same value as default
1405                         simple.something = defaultValueInstance;
1406                         Serialize (simple, overrides);
1407                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#A2");
1408
1409                         // some other value
1410                         simple.something = "hello";
1411                         Serialize (simple, overrides);
1412                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>hello</something></SimpleClass>"), WriterText, "#A3");
1413
1414                         overrides = new XmlAttributeOverrides ();
1415                         attr = new XmlAttributes ();
1416                         attr.XmlAttribute = new XmlAttributeAttribute ();
1417                         attr.XmlDefaultValue = defaultValueInstance;
1418                         overrides.Add (typeof (SimpleClass), "something", attr);
1419
1420                         // use the default
1421                         simple = new SimpleClass ();
1422                         Serialize (simple, overrides);
1423                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#B1");
1424
1425                         // same value as default
1426                         simple.something = defaultValueInstance;
1427                         Serialize (simple, overrides);
1428                         Assert.AreEqual (Infoset ("<SimpleClass xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#B2");
1429
1430                         // some other value
1431                         simple.something = "hello";
1432                         Serialize (simple, overrides);
1433                         Assert.AreEqual (Infoset ("<SimpleClass something='hello' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#B3");
1434
1435                         overrides = new XmlAttributeOverrides ();
1436                         attr = new XmlAttributes ();
1437                         attr.XmlAttribute = new XmlAttributeAttribute ("flagenc");
1438                         overrides.Add (typeof (TestDefault), "flagencoded", attr);
1439
1440                         // use the default
1441                         TestDefault testDefault = new TestDefault ();
1442                         Serialize (testDefault);
1443                         Assert.AreEqual (Infoset ("<testDefault xmlns='urn:myNS' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#C1");
1444
1445                         // use the default with overrides
1446                         Serialize (testDefault, overrides);
1447                         Assert.AreEqual (Infoset ("<testDefault flagenc='e1 e4' xmlns='urn:myNS' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#C2");
1448
1449                         overrides = new XmlAttributeOverrides ();
1450                         attr = new XmlAttributes ();
1451                         attr.XmlAttribute = new XmlAttributeAttribute ("flagenc");
1452                         attr.XmlDefaultValue = (FlagEnum_Encoded.e1 | FlagEnum_Encoded.e4); // add default again
1453                         overrides.Add (typeof (TestDefault), "flagencoded", attr);
1454
1455                         // use the default with overrides
1456                         Serialize (testDefault, overrides);
1457                         Assert.AreEqual (Infoset ("<testDefault xmlns='urn:myNS' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#C3");
1458
1459                         // use the default with overrides and default namspace
1460                         Serialize (testDefault, overrides, AnotherNamespace);
1461                         Assert.AreEqual (Infoset ("<testDefault xmlns='urn:myNS' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#C4");
1462
1463                         // non-default values
1464                         testDefault.strDefault = "Some Text";
1465                         testDefault.boolT = false;
1466                         testDefault.boolF = true;
1467                         testDefault.decimalval = 20m;
1468                         testDefault.flag = FlagEnum.e2;
1469                         testDefault.flagencoded = FlagEnum_Encoded.e2 | FlagEnum_Encoded.e1;
1470                         Serialize (testDefault);
1471                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1472                                 "<testDefault xmlns='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1473                                 "    <strDefault>Some Text</strDefault>" +
1474                                 "    <boolT>false</boolT>" +
1475                                 "    <boolF>true</boolF>" +
1476                                 "    <decimalval>20</decimalval>" +
1477                                 "    <flag>two</flag>" +
1478                                 "    <flagencoded>e1 e2</flagencoded>" +
1479                                 "</testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1480                                 WriterText, "#C5");
1481
1482                         Serialize (testDefault, overrides);
1483                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1484                                 "<testDefault flagenc='e1 e2' xmlns='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1485                                 "    <strDefault>Some Text</strDefault>" +
1486                                 "    <boolT>false</boolT>" +
1487                                 "    <boolF>true</boolF>" +
1488                                 "    <decimalval>20</decimalval>" +
1489                                 "    <flag>two</flag>" +
1490                                 "</testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1491                                 WriterText, "#C6");
1492
1493                         Serialize (testDefault, overrides, AnotherNamespace);
1494                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1495                                 "<testDefault flagenc='e1 e2' xmlns='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1496                                 "    <strDefault>Some Text</strDefault>" +
1497                                 "    <boolT>false</boolT>" +
1498                                 "    <boolF>true</boolF>" +
1499                                 "    <decimalval>20</decimalval>" +
1500                                 "    <flag>two</flag>" +
1501                                 "</testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1502                                 WriterText, "#C7");
1503
1504                         attr = new XmlAttributes ();
1505                         XmlTypeAttribute xmlType = new XmlTypeAttribute ("flagenum");
1506                         xmlType.Namespace = "yetanother:urn";
1507                         attr.XmlType = xmlType;
1508                         overrides.Add (typeof (FlagEnum_Encoded), attr);
1509
1510                         Serialize (testDefault, overrides, AnotherNamespace);
1511                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1512                                 "<testDefault flagenc='e1 e2' xmlns='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1513                                 "    <strDefault>Some Text</strDefault>" +
1514                                 "    <boolT>false</boolT>" +
1515                                 "    <boolF>true</boolF>" +
1516                                 "    <decimalval>20</decimalval>" +
1517                                 "    <flag>two</flag>" +
1518                                 "</testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1519                                 WriterText, "#C8");
1520
1521                         attr = new XmlAttributes ();
1522                         attr.XmlType = new XmlTypeAttribute ("testDefault");
1523                         overrides.Add (typeof (TestDefault), attr);
1524
1525                         Serialize (testDefault, overrides, AnotherNamespace);
1526                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1527                                 "<testDefault flagenc='e1 e2' xmlns='{2}' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1528                                 "    <strDefault>Some Text</strDefault>" +
1529                                 "    <boolT>false</boolT>" +
1530                                 "    <boolF>true</boolF>" +
1531                                 "    <decimalval>20</decimalval>" +
1532                                 "    <flag>two</flag>" +
1533                                 "</testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace,
1534                                 AnotherNamespace)), WriterText, "#C9");
1535                 }
1536
1537                 [Test]
1538                 [Category ("NotWorking")] // SerializationCodeGenerator outputs wrong xsi:type for flagencoded in #C1
1539                 public void TestSerializeDefaultValueAttribute_Encoded ()
1540                 {
1541                         SoapAttributeOverrides overrides = new SoapAttributeOverrides ();
1542                         SoapAttributes attr = new SoapAttributes ();
1543                         attr.SoapAttribute = new SoapAttributeAttribute ();
1544                         string defaultValueInstance = "nothing";
1545                         attr.SoapDefaultValue = defaultValueInstance;
1546                         overrides.Add (typeof (SimpleClass), "something", attr);
1547
1548                         // use the default
1549                         SimpleClass simple = new SimpleClass ();
1550                         SerializeEncoded (simple, overrides);
1551                         Assert.AreEqual (Infoset ("<SimpleClass id='id1' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#A1");
1552
1553                         // same value as default
1554                         simple.something = defaultValueInstance;
1555                         SerializeEncoded (simple, overrides);
1556                         Assert.AreEqual (Infoset ("<SimpleClass id='id1' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#A2");
1557
1558                         // some other value
1559                         simple.something = "hello";
1560                         SerializeEncoded (simple, overrides);
1561                         Assert.AreEqual (Infoset ("<SimpleClass id='id1' something='hello' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#A3");
1562
1563                         attr.SoapAttribute = null;
1564                         attr.SoapElement = new SoapElementAttribute ();
1565
1566                         // use the default
1567                         simple = new SimpleClass ();
1568                         SerializeEncoded (simple, overrides);
1569                         Assert.AreEqual (Infoset ("<SimpleClass id='id1' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText, "#B1");
1570
1571                         // same value as default
1572                         simple.something = defaultValueInstance;
1573                         SerializeEncoded (simple, overrides);
1574                         Assert.AreEqual (Infoset ("<SimpleClass id='id1' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something xsi:type='xsd:string'>nothing</something></SimpleClass>"), WriterText, "#B2");
1575
1576                         // some other value
1577                         simple.something = "hello";
1578                         SerializeEncoded (simple, overrides);
1579                         Assert.AreEqual (Infoset ("<SimpleClass id='id1' xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something xsi:type='xsd:string'>hello</something></SimpleClass>"), WriterText, "#B3");
1580
1581                         overrides = new SoapAttributeOverrides ();
1582                         attr = new SoapAttributes ();
1583                         attr.SoapElement = new SoapElementAttribute ("flagenc");
1584                         overrides.Add (typeof (TestDefault), "flagencoded", attr);
1585
1586                         // use the default (from MS KB325691)
1587                         TestDefault testDefault = new TestDefault ();
1588                         SerializeEncoded (testDefault);
1589                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1590                                 "<q1:testDefault id='id1' xmlns:q1='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1591                                 "    <strDefault xsi:type='xsd:string'>Default Value</strDefault>" +
1592                                 "    <boolT xsi:type='xsd:boolean'>true</boolT>" +
1593                                 "    <boolF xsi:type='xsd:boolean'>false</boolF>" +
1594                                 "    <decimalval xsi:type='xsd:decimal'>10</decimalval>" +
1595                                 "    <flag xsi:type='FlagEnum'>e1 e4</flag>" +
1596                                 "    <flagencoded xsi:type='flagenum'>one four</flagencoded>" +
1597                                 "</q1:testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1598                                 WriterText, "#C1");
1599
1600                         SerializeEncoded (testDefault, overrides);
1601                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1602                                 "<q1:testDefault id='id1' xmlns:q1='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1603                                 "    <strDefault xsi:type='xsd:string'>Default Value</strDefault>" +
1604                                 "    <boolT xsi:type='xsd:boolean'>true</boolT>" +
1605                                 "    <boolF xsi:type='xsd:boolean'>false</boolF>" +
1606                                 "    <decimalval xsi:type='xsd:decimal'>10</decimalval>" +
1607                                 "    <flag xsi:type='FlagEnum'>e1 e4</flag>" +
1608                                 "    <flagenc xsi:type='flagenum'>one four</flagenc>" +
1609                                 "</q1:testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1610                                 WriterText, "#C2");
1611
1612                         SerializeEncoded (testDefault, overrides, AnotherNamespace);
1613                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1614                                 "<q1:testDefault id='id1' xmlns:q1='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1615                                 "    <strDefault xsi:type='xsd:string'>Default Value</strDefault>" +
1616                                 "    <boolT xsi:type='xsd:boolean'>true</boolT>" +
1617                                 "    <boolF xsi:type='xsd:boolean'>false</boolF>" +
1618                                 "    <decimalval xsi:type='xsd:decimal'>10</decimalval>" +
1619                                 "    <flag xmlns:q2='{2}' xsi:type='q2:FlagEnum'>e1 e4</flag>" +
1620                                 "    <flagenc xmlns:q3='{2}' xsi:type='q3:flagenum'>one four</flagenc>" +
1621                                 "</q1:testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace,
1622                                 AnotherNamespace)), WriterText, "#C3");
1623
1624                         // non-default values
1625                         testDefault.strDefault = "Some Text";
1626                         testDefault.boolT = false;
1627                         testDefault.boolF = true;
1628                         testDefault.decimalval = 20m;
1629                         testDefault.flag = FlagEnum.e2;
1630                         testDefault.flagencoded = FlagEnum_Encoded.e2 | FlagEnum_Encoded.e1;
1631                         SerializeEncoded (testDefault);
1632                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1633                                 "<q1:testDefault id='id1' xmlns:q1='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1634                                 "    <strDefault xsi:type='xsd:string'>Some Text</strDefault>" +
1635                                 "    <boolT xsi:type='xsd:boolean'>false</boolT>" +
1636                                 "    <boolF xsi:type='xsd:boolean'>true</boolF>" +
1637                                 "    <decimalval xsi:type='xsd:decimal'>20</decimalval>" +
1638                                 "    <flag xsi:type='FlagEnum'>e2</flag>" +
1639                                 "    <flagencoded xsi:type='flagenum'>one two</flagencoded>" +
1640                                 "</q1:testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1641                                 WriterText, "#C4");
1642
1643                         SerializeEncoded (testDefault, overrides);
1644                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1645                                 "<q1:testDefault id='id1' xmlns:q1='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1646                                 "    <strDefault xsi:type='xsd:string'>Some Text</strDefault>" +
1647                                 "    <boolT xsi:type='xsd:boolean'>false</boolT>" +
1648                                 "    <boolF xsi:type='xsd:boolean'>true</boolF>" +
1649                                 "    <decimalval xsi:type='xsd:decimal'>20</decimalval>" +
1650                                 "    <flag xsi:type='FlagEnum'>e2</flag>" +
1651                                 "    <flagenc xsi:type='flagenum'>one two</flagenc>" +
1652                                 "</q1:testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)),
1653                                 WriterText, "#C5");
1654
1655                         attr = new SoapAttributes ();
1656                         attr.SoapType = new SoapTypeAttribute ("flagenum", "yetanother:urn");
1657                         overrides.Add (typeof (FlagEnum_Encoded), attr);
1658
1659                         SerializeEncoded (testDefault, overrides, AnotherNamespace);
1660                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1661                                 "<q1:testDefault id='id1' xmlns:q1='urn:myNS' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1662                                 "    <strDefault xsi:type='xsd:string'>Some Text</strDefault>" +
1663                                 "    <boolT xsi:type='xsd:boolean'>false</boolT>" +
1664                                 "    <boolF xsi:type='xsd:boolean'>true</boolF>" +
1665                                 "    <decimalval xsi:type='xsd:decimal'>20</decimalval>" +
1666                                 "    <flag xmlns:q2='{2}' xsi:type='q2:FlagEnum'>e2</flag>" +
1667                                 "    <flagenc xmlns:q3='yetanother:urn' xsi:type='q3:flagenum'>one two</flagenc>" +
1668                                 "</q1:testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace,
1669                                 AnotherNamespace)), WriterText, "#C6");
1670
1671                         attr = new SoapAttributes ();
1672                         attr.SoapType = new SoapTypeAttribute ("testDefault");
1673                         overrides.Add (typeof (TestDefault), attr);
1674
1675                         SerializeEncoded (testDefault, overrides, AnotherNamespace);
1676                         Assert.AreEqual (Infoset (string.Format (CultureInfo.InvariantCulture,
1677                                 "<q1:testDefault id='id1' xmlns:q1='{2}' xmlns:xsd='{0}' xmlns:xsi='{1}'>" +
1678                                 "    <strDefault xsi:type='xsd:string'>Some Text</strDefault>" +
1679                                 "    <boolT xsi:type='xsd:boolean'>false</boolT>" +
1680                                 "    <boolF xsi:type='xsd:boolean'>true</boolF>" +
1681                                 "    <decimalval xsi:type='xsd:decimal'>20</decimalval>" +
1682                                 "    <flag xsi:type='q1:FlagEnum'>e2</flag>" +
1683                                 "    <flagenc xmlns:q2='yetanother:urn' xsi:type='q2:flagenum'>one two</flagenc>" +
1684                                 "</q1:testDefault>", XmlSchema.Namespace, XmlSchema.InstanceNamespace,
1685                                 AnotherNamespace)), WriterText, "#C7");
1686                 }
1687
1688                 // test XmlEnum //////////////////////////////////////////////////////////
1689                 [Test]
1690                 public void TestSerializeXmlEnumAttribute ()
1691                 {
1692                         Serialize (XmlSchemaForm.Qualified);
1693                         Assert.AreEqual (Infoset ("<XmlSchemaForm>qualified</XmlSchemaForm>"), WriterText, "#1");
1694
1695                         Serialize (XmlSchemaForm.Unqualified);
1696                         Assert.AreEqual (Infoset ("<XmlSchemaForm>unqualified</XmlSchemaForm>"), WriterText, "#2");
1697                 }
1698
1699                 [Test]
1700                 public void TestSerializeXmlEnumAttribute_IgnoredValue ()
1701                 {
1702                         // technically XmlSchemaForm.None has an XmlIgnore attribute,
1703                         // but it is not being serialized as a member.
1704
1705                         try {
1706                                 Serialize (XmlSchemaForm.None);
1707                                 Assert.Fail ("#1");
1708                         } catch (InvalidOperationException ex) {
1709                                 Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
1710                                 Assert.IsNotNull (ex.InnerException, "#3");
1711                                 Assert.AreEqual (typeof (InvalidOperationException), ex.InnerException.GetType (), "#4");
1712                                 Assert.IsNotNull (ex.InnerException.Message, "#5");
1713                                 Assert.IsTrue (ex.InnerException.Message.IndexOf ("'0'") != -1, "#6");
1714                                 Assert.IsTrue (ex.InnerException.Message.IndexOf (typeof (XmlSchemaForm).FullName) != -1, "#7");
1715                         }
1716                 }
1717
1718                 [Test]
1719                 public void TestSerializeXmlNodeArray ()
1720                 {
1721                         XmlDocument doc = new XmlDocument ();
1722                         Serialize (new XmlNode[] { doc.CreateAttribute ("at"), doc.CreateElement ("elem1"), doc.CreateElement ("elem2") }, typeof (object));
1723                         Assert.AreEqual (Infoset ("<anyType at=\"\"><elem1/><elem2/></anyType>"), WriterText);
1724                 }
1725
1726                 [Test]
1727                 public void TestSerializeXmlNodeArray2 ()
1728                 {
1729                         XmlDocument doc = new XmlDocument ();
1730                         Serialize (new XmlNode[] { doc.CreateElement ("elem1"), doc.CreateElement ("elem2") }, typeof (XmlNode []));
1731                         Assert.AreEqual (Infoset (String.Format ("<ArrayOfXmlNode xmlns:xsd='{0}' xmlns:xsi='{1}'><XmlNode><elem1/></XmlNode><XmlNode><elem2/></XmlNode></ArrayOfXmlNode>", XmlSchema.Namespace, XmlSchema.InstanceNamespace)), WriterText);
1732                 }
1733
1734                 [Test]
1735                 [ExpectedException (typeof (InvalidOperationException))]
1736                 [Category ("NotWorking")]
1737                 public void TestSerializeXmlNodeArrayIncludesAttribute ()
1738                 {
1739                         XmlDocument doc = new XmlDocument ();
1740                         Serialize (new XmlNode[] { doc.CreateAttribute ("at"), doc.CreateElement ("elem1"), doc.CreateElement ("elem2") }, typeof (XmlNode []));
1741                 }
1742
1743                 [Test]
1744                 public void TestSerializeXmlElementArray ()
1745                 {
1746                         XmlDocument doc = new XmlDocument ();
1747                         Serialize (new XmlElement[] { doc.CreateElement ("elem1"), doc.CreateElement ("elem2") }, typeof (object));
1748                         Assert.AreEqual (Infoset ("<anyType><elem1/><elem2/></anyType>"), WriterText);
1749                 }
1750
1751                 [Test]
1752                 [ExpectedException (typeof (InvalidOperationException))] // List<XmlNode> is not supported
1753                 public void TestSerializeGenericListOfNode ()
1754                 {
1755                         XmlDocument doc = new XmlDocument ();
1756                         Serialize (new List<XmlNode> (new XmlNode [] { doc.CreateAttribute ("at"), doc.CreateElement ("elem1"), doc.CreateElement ("elem2") }), typeof (object));
1757                         Assert.AreEqual (Infoset ("<anyType at=\"\"><elem1/><elem2/></anyType>"), WriterText);
1758                 }
1759
1760                 [Test]
1761                 [ExpectedException (typeof (InvalidOperationException))] // List<XmlElement> is not supported
1762                 public void TestSerializeGenericListOfElement ()
1763                 {
1764                         XmlDocument doc = new XmlDocument ();
1765                         Serialize (new List<XmlElement> (new XmlElement [] { doc.CreateElement ("elem1"), doc.CreateElement ("elem2") }), typeof (object));
1766                         Assert.AreEqual (Infoset ("<anyType><elem1/><elem2/></anyType>"), WriterText);
1767                 }
1768                 [Test]
1769                 public void TestSerializeXmlDocument ()
1770                 {
1771                         XmlDocument doc = new XmlDocument ();
1772                         doc.LoadXml (@"<?xml version=""1.0"" encoding=""utf-8"" ?><root/>");
1773                         Serialize (doc, typeof (XmlDocument));
1774                         Assert.AreEqual ("<?xml version='1.0' encoding='utf-16'?><root />",
1775                                 sw.GetStringBuilder ().ToString ());
1776                 }
1777
1778                 [Test]
1779                 public void TestSerializeXmlElement ()
1780                 {
1781                         XmlDocument doc = new XmlDocument ();
1782                         Serialize (doc.CreateElement ("elem"), typeof (XmlElement));
1783                         Assert.AreEqual (Infoset ("<elem/>"), WriterText);
1784                 }
1785
1786                 [Test]
1787                 public void TestSerializeXmlElementSubclass ()
1788                 {
1789                         XmlDocument doc = new XmlDocument ();
1790                         Serialize (new MyElem (doc), typeof (XmlElement));
1791                         Assert.AreEqual (Infoset ("<myelem aa=\"1\"/>"), WriterText, "#1");
1792
1793                         Serialize (new MyElem (doc), typeof (MyElem));
1794                         Assert.AreEqual (Infoset ("<myelem aa=\"1\"/>"), WriterText, "#2");
1795                 }
1796
1797                 [Test]
1798                 public void TestSerializeXmlCDataSection ()
1799                 {
1800                         XmlDocument doc = new XmlDocument ();
1801                         CDataContainer c = new CDataContainer ();
1802                         c.cdata = doc.CreateCDataSection ("data section contents");
1803                         Serialize (c);
1804                         Assert.AreEqual (Infoset ("<CDataContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><cdata><![CDATA[data section contents]]></cdata></CDataContainer>"), WriterText);
1805                 }
1806
1807                 [Test]
1808                 public void TestSerializeXmlNode ()
1809                 {
1810                         XmlDocument doc = new XmlDocument ();
1811                         NodeContainer c = new NodeContainer ();
1812                         c.node = doc.CreateTextNode ("text");
1813                         Serialize (c);
1814                         Assert.AreEqual (Infoset ("<NodeContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><node>text</node></NodeContainer>"), WriterText);
1815                 }
1816
1817                 [Test]
1818                 public void TestSerializeChoice ()
1819                 {
1820                         Choices ch = new Choices ();
1821                         ch.MyChoice = "choice text";
1822                         ch.ItemType = ItemChoiceType.ChoiceZero;
1823                         Serialize (ch);
1824                         Assert.AreEqual (Infoset ("<Choices xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><ChoiceZero>choice text</ChoiceZero></Choices>"), WriterText, "#1");
1825                         ch.ItemType = ItemChoiceType.StrangeOne;
1826                         Serialize (ch);
1827                         Assert.AreEqual (Infoset ("<Choices xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><ChoiceOne>choice text</ChoiceOne></Choices>"), WriterText, "#2");
1828                         ch.ItemType = ItemChoiceType.ChoiceTwo;
1829                         Serialize (ch);
1830                         Assert.AreEqual (Infoset ("<Choices xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><ChoiceTwo>choice text</ChoiceTwo></Choices>"), WriterText, "#3");
1831                 }
1832
1833                 [Test]
1834                 public void TestSerializeNamesWithSpaces ()
1835                 {
1836                         TestSpace ts = new TestSpace ();
1837                         ts.elem = 4;
1838                         ts.attr = 5;
1839                         Serialize (ts);
1840                         Assert.AreEqual (Infoset ("<Type_x0020_with_x0020_space xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' Attribute_x0020_with_x0020_space='5'><Element_x0020_with_x0020_space>4</Element_x0020_with_x0020_space></Type_x0020_with_x0020_space>"), WriterText);
1841                 }
1842
1843                 [Test]
1844                 public void TestSerializeReadOnlyProps ()
1845                 {
1846                         ReadOnlyProperties ts = new ReadOnlyProperties ();
1847                         Serialize (ts);
1848                         Assert.AreEqual (Infoset ("<ReadOnlyProperties xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
1849                 }
1850
1851                 [Test]
1852                 public void TestSerializeReadOnlyListProp ()
1853                 {
1854                         ReadOnlyListProperty ts = new ReadOnlyListProperty ();
1855                         Serialize (ts);
1856                         Assert.AreEqual (Infoset ("<ReadOnlyListProperty xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><StrList><string>listString1</string><string>listString2</string></StrList></ReadOnlyListProperty>"), WriterText);
1857                 }
1858
1859
1860                 [Test]
1861                 public void TestSerializeIList ()
1862                 {
1863                         clsPerson k = new clsPerson ();
1864                         k.EmailAccounts = new ArrayList ();
1865                         k.EmailAccounts.Add ("a");
1866                         k.EmailAccounts.Add ("b");
1867                         Serialize (k);
1868                         Assert.AreEqual (Infoset ("<clsPerson xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"><EmailAccounts><anyType xsi:type=\"xsd:string\">a</anyType><anyType xsi:type=\"xsd:string\">b</anyType></EmailAccounts></clsPerson>"), WriterText);
1869                 }
1870
1871                 [Test]
1872                 public void TestSerializeArrayEnc ()
1873                 {
1874                         SoapReflectionImporter imp = new SoapReflectionImporter ();
1875                         XmlTypeMapping map = imp.ImportTypeMapping (typeof (ArrayClass));
1876                         XmlSerializer ser = new XmlSerializer (map);
1877                         StringWriter sw = new StringWriter ();
1878                         XmlTextWriter tw = new XmlTextWriter (sw);
1879                         tw.WriteStartElement ("aa");
1880                         ser.Serialize (tw, new ArrayClass ());
1881                         tw.WriteEndElement ();
1882                 }
1883
1884                 [Test] // bug #76049
1885                 public void TestIncludeType ()
1886                 {
1887                         XmlReflectionImporter imp = new XmlReflectionImporter ();
1888                         XmlTypeMapping map = imp.ImportTypeMapping (typeof (object));
1889                         imp.IncludeType (typeof (TestSpace));
1890                         XmlSerializer ser = new XmlSerializer (map);
1891                         ser.Serialize (new StringWriter (), new TestSpace ());
1892                 }
1893
1894                 [Test]
1895                 public void TestSerializeChoiceArray ()
1896                 {
1897                         CompositeValueType v = new CompositeValueType ();
1898                         v.Init ();
1899                         Serialize (v);
1900                         Assert.AreEqual (Infoset ("<?xml version=\"1.0\" encoding=\"utf-16\"?><CompositeValueType xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"><In>1</In><Es>2</Es></CompositeValueType>"), WriterText);
1901                 }
1902
1903                 [Test]
1904                 public void TestArrayAttributeWithDataType ()
1905                 {
1906                         Serialize (new ArrayAttributeWithType ());
1907                         string res = "<ArrayAttributeWithType xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' ";
1908                         res += "at='a b' bin1='AQI= AQI=' bin2='AQI=' />";
1909                         Assert.AreEqual (Infoset (res), WriterText);
1910                 }
1911
1912                 [Test]
1913                 public void TestSubclassElementType ()
1914                 {
1915                         SubclassTestContainer c = new SubclassTestContainer ();
1916                         c.data = new SubclassTestSub ();
1917                         Serialize (c);
1918
1919                         string res = "<SubclassTestContainer xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>";
1920                         res += "<a xsi:type=\"SubclassTestSub\"/></SubclassTestContainer>";
1921                         Assert.AreEqual (Infoset (res), WriterText);
1922                 }
1923
1924                 [Test]
1925                 [ExpectedException (typeof (InvalidOperationException))]
1926                 public void TestArrayAttributeWithWrongDataType ()
1927                 {
1928                         Serialize (new ArrayAttributeWithWrongType ());
1929                 }
1930
1931                 [Test]
1932                 [Category ("NotWorking")]
1933                 public void TestSerializePrimitiveTypesContainer ()
1934                 {
1935                         Serialize (new PrimitiveTypesContainer ());
1936                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
1937                                 "<?xml version='1.0' encoding='utf-16'?>" +
1938                                 "<PrimitiveTypesContainer xmlns:xsi='{1}' xmlns:xsd='{0}' xmlns='some:urn'>" +
1939                                 "<Number>2004</Number>" +
1940                                 "<Name>some name</Name>" +
1941                                 "<Index>56</Index>" +
1942                                 "<Password>8w8=</Password>" +
1943                                 "<PathSeparatorCharacter>47</PathSeparatorCharacter>" +
1944                                 "</PrimitiveTypesContainer>", XmlSchema.Namespace,
1945                                 XmlSchema.InstanceNamespace), sw.ToString (), "#1");
1946
1947                         SerializeEncoded (new PrimitiveTypesContainer ());
1948                         Assert.AreEqual (string.Format (CultureInfo.InvariantCulture,
1949                                 "<?xml version='1.0' encoding='utf-16'?>" +
1950                                 "<q1:PrimitiveTypesContainer xmlns:xsi='{1}' xmlns:xsd='{0}' id='id1' xmlns:q1='{2}'>" +
1951                                 "<Number xsi:type='xsd:int'>2004</Number>" +
1952                                 "<Name xsi:type='xsd:string'>some name</Name>" +
1953                                 "<Index xsi:type='xsd:unsignedByte'>56</Index>" +
1954                                 "<Password xsi:type='xsd:base64Binary'>8w8=</Password>" +
1955                                 "<PathSeparatorCharacter xmlns:q2='{3}' xsi:type='q2:char'>47</PathSeparatorCharacter>" +
1956                                 "</q1:PrimitiveTypesContainer>", XmlSchema.Namespace,
1957                                 XmlSchema.InstanceNamespace, AnotherNamespace, WsdlTypesNamespace),
1958                                 sw.ToString (), "#2");
1959                 }
1960
1961                 [Test]
1962                 public void TestSchemaForm ()
1963                 {
1964                         TestSchemaForm1 t1 = new TestSchemaForm1 ();
1965                         t1.p1 = new PrintTypeResponse ();
1966                         t1.p1.Init ();
1967                         t1.p2 = new PrintTypeResponse ();
1968                         t1.p2.Init ();
1969
1970                         TestSchemaForm2 t2 = new TestSchemaForm2 ();
1971                         t2.p1 = new PrintTypeResponse ();
1972                         t2.p1.Init ();
1973                         t2.p2 = new PrintTypeResponse ();
1974                         t2.p2.Init ();
1975
1976                         Serialize (t1);
1977                         string res = "";
1978                         res += "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
1979                         res += "<TestSchemaForm1 xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">";
1980                         res += "  <p1>";
1981                         res += "    <result>";
1982                         res += "      <data>data1</data>";
1983                         res += "    </result>";
1984                         res += "    <intern xmlns=\"urn:responseTypes\">";
1985                         res += "      <result xmlns=\"\">";
1986                         res += "        <data>data2</data>";
1987                         res += "      </result>";
1988                         res += "    </intern>";
1989                         res += "  </p1>";
1990                         res += "  <p2 xmlns=\"urn:oo\">";
1991                         res += "    <result xmlns=\"\">";
1992                         res += "      <data>data1</data>";
1993                         res += "    </result>";
1994                         res += "    <intern xmlns=\"urn:responseTypes\">";
1995                         res += "      <result xmlns=\"\">";
1996                         res += "        <data>data2</data>";
1997                         res += "      </result>";
1998                         res += "    </intern>";
1999                         res += "  </p2>";
2000                         res += "</TestSchemaForm1>";
2001                         Assert.AreEqual (Infoset (res), WriterText);
2002
2003                         Serialize (t2);
2004                         res = "";
2005                         res += "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
2006                         res += "<TestSchemaForm2 xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\">";
2007                         res += "  <p1 xmlns=\"urn:testForm\">";
2008                         res += "    <result xmlns=\"\">";
2009                         res += "      <data>data1</data>";
2010                         res += "    </result>";
2011                         res += "    <intern xmlns=\"urn:responseTypes\">";
2012                         res += "      <result xmlns=\"\">";
2013                         res += "        <data>data2</data>";
2014                         res += "      </result>";
2015                         res += "    </intern>";
2016                         res += "  </p1>";
2017                         res += "  <p2 xmlns=\"urn:oo\">";
2018                         res += "    <result xmlns=\"\">";
2019                         res += "      <data>data1</data>";
2020                         res += "    </result>";
2021                         res += "    <intern xmlns=\"urn:responseTypes\">";
2022                         res += "      <result xmlns=\"\">";
2023                         res += "        <data>data2</data>";
2024                         res += "      </result>";
2025                         res += "    </intern>";
2026                         res += "  </p2>";
2027                         res += "</TestSchemaForm2>";
2028                         Assert.AreEqual (Infoset (res), WriterText);
2029
2030                         XmlReflectionImporter imp = new XmlReflectionImporter ();
2031                         XmlTypeMapping map = imp.ImportTypeMapping (typeof (TestSchemaForm1), "urn:extra");
2032                         Serialize (t1, map);
2033                         res = "";
2034                         res += "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
2035                         res += "<TestSchemaForm1 xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:extra\">";
2036                         res += "  <p1>";
2037                         res += "    <result xmlns=\"\">";
2038                         res += "      <data>data1</data>";
2039                         res += "    </result>";
2040                         res += "    <intern xmlns=\"urn:responseTypes\">";
2041                         res += "      <result xmlns=\"\">";
2042                         res += "        <data>data2</data>";
2043                         res += "      </result>";
2044                         res += "    </intern>";
2045                         res += "  </p1>";
2046                         res += "  <p2 xmlns=\"urn:oo\">";
2047                         res += "    <result xmlns=\"\">";
2048                         res += "      <data>data1</data>";
2049                         res += "    </result>";
2050                         res += "    <intern xmlns=\"urn:responseTypes\">";
2051                         res += "      <result xmlns=\"\">";
2052                         res += "        <data>data2</data>";
2053                         res += "      </result>";
2054                         res += "    </intern>";
2055                         res += "  </p2>";
2056                         res += "</TestSchemaForm1>";
2057                         Assert.AreEqual (Infoset (res), WriterText);
2058
2059                         imp = new XmlReflectionImporter ();
2060                         map = imp.ImportTypeMapping (typeof (TestSchemaForm2), "urn:extra");
2061                         Serialize (t2, map);
2062                         res = "";
2063                         res += "<?xml version=\"1.0\" encoding=\"utf-8\"?>";
2064                         res += "<TestSchemaForm2 xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns=\"urn:extra\">";
2065                         res += "  <p1 xmlns=\"urn:testForm\">";
2066                         res += "    <result xmlns=\"\">";
2067                         res += "      <data>data1</data>";
2068                         res += "    </result>";
2069                         res += "    <intern xmlns=\"urn:responseTypes\">";
2070                         res += "      <result xmlns=\"\">";
2071                         res += "        <data>data2</data>";
2072                         res += "      </result>";
2073                         res += "    </intern>";
2074                         res += "  </p1>";
2075                         res += "  <p2 xmlns=\"urn:oo\">";
2076                         res += "    <result xmlns=\"\">";
2077                         res += "      <data>data1</data>";
2078                         res += "    </result>";
2079                         res += "    <intern xmlns=\"urn:responseTypes\">";
2080                         res += "      <result xmlns=\"\">";
2081                         res += "        <data>data2</data>";
2082                         res += "      </result>";
2083                         res += "    </intern>";
2084                         res += "  </p2>";
2085                         res += "</TestSchemaForm2>";
2086                         Assert.AreEqual (Infoset (res), WriterText);
2087                 }
2088
2089                 [Test] // bug #78536
2090                 public void CDataTextNodes ()
2091                 {
2092                         XmlSerializer ser = new XmlSerializer (typeof (CDataTextNodesType));
2093                         ser.UnknownNode += new XmlNodeEventHandler (CDataTextNodes_BadNode);
2094                         string xml = @"<CDataTextNodesType>
2095   <foo><![CDATA[
2096 (?<filename>^([A-Z]:)?[^\(]+)\((?<line>\d+),(?<column>\d+)\):
2097 \s((?<warning>warning)|(?<error>error))\s[^:]+:(?<message>.+$)|
2098 (?<error>(fatal\s)?error)[^:]+:(?<message>.+$)
2099         ]]></foo>
2100 </CDataTextNodesType>";
2101                         ser.Deserialize (new XmlTextReader (xml, XmlNodeType.Document, null));
2102                 }
2103
2104 #if !MOBILE
2105                 [Test]
2106                 public void GenerateSerializerGenerics ()
2107                 {
2108                         XmlReflectionImporter imp = new XmlReflectionImporter ();
2109                         Type type = typeof (List<int>);
2110                         XmlSerializer.GenerateSerializer (
2111                                 new Type [] {type},
2112                                 new XmlTypeMapping [] {imp.ImportTypeMapping (type)});
2113                 }
2114 #endif
2115
2116                 [Test]
2117                 public void Nullable ()
2118                 {
2119                         XmlSerializer ser = new XmlSerializer (typeof (int?));
2120                         int? nullableType = 5;
2121                         sw = new StringWriter ();
2122                         xtw = new XmlTextWriter (sw);
2123                         ser.Serialize (xtw, nullableType);
2124                         xtw.Close ();
2125                         string expected = "<?xml version=\"1.0\" encoding=\"utf-16\"?><int>5</int>";
2126                         Assert.AreEqual (Infoset (expected), WriterText);
2127                         int? i = (int?) ser.Deserialize (new StringReader (sw.ToString ()));
2128                         Assert.AreEqual (5, i);
2129                 }
2130
2131                 [Test]
2132                 public void NullableEnums ()
2133                 {
2134                         WithNulls w = new WithNulls ();
2135                         XmlSerializer ser = new XmlSerializer (typeof(WithNulls));
2136                         StringWriter tw = new StringWriter ();
2137                         ser.Serialize (tw, w);
2138
2139                         string expected = "<?xml version='1.0' encoding='utf-16'?>" +
2140                                 "<WithNulls xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>" +
2141                                         "<nint xsi:nil='true' />" +
2142                                         "<nenum xsi:nil='true' />" +
2143                                         "<ndate xsi:nil='true' />" +
2144                                         "</WithNulls>";
2145                         
2146                         Assert.AreEqual (Infoset (expected), Infoset (tw.ToString ()));
2147                         
2148                         StringReader sr = new StringReader (tw.ToString ());
2149                         w = (WithNulls) ser.Deserialize (sr);
2150                         
2151                         Assert.IsFalse (w.nint.HasValue);
2152                         Assert.IsFalse (w.nenum.HasValue);
2153                         Assert.IsFalse (w.ndate.HasValue);
2154                         
2155                         DateTime t = new DateTime (2008,4,1);
2156                         w.nint = 4;
2157                         w.ndate = t;
2158                         w.nenum = TestEnumWithNulls.bb;
2159                         
2160                         tw = new StringWriter ();
2161                         ser.Serialize (tw, w);
2162                         
2163                         expected = "<?xml version='1.0' encoding='utf-16'?>" +
2164                                 "<WithNulls xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'>" +
2165                                         "<nint>4</nint>" +
2166                                         "<nenum>bb</nenum>" +
2167                                         "<ndate>2008-04-01T00:00:00</ndate>" +
2168                                         "</WithNulls>";
2169                         
2170                         Assert.AreEqual (Infoset (expected), Infoset (tw.ToString ()));
2171                         
2172                         sr = new StringReader (tw.ToString ());
2173                         w = (WithNulls) ser.Deserialize (sr);
2174                         
2175                         Assert.IsTrue (w.nint.HasValue);
2176                         Assert.IsTrue (w.nenum.HasValue);
2177                         Assert.IsTrue (w.ndate.HasValue);
2178                         Assert.AreEqual (4, w.nint.Value);
2179                         Assert.AreEqual (TestEnumWithNulls.bb, w.nenum.Value);
2180                         Assert.AreEqual (t, w.ndate.Value);
2181                 }
2182
2183                 [Test]
2184                 public void SerializeBase64Binary()
2185                 {
2186                         XmlSerializer ser = new XmlSerializer (typeof (Base64Binary));
2187                         sw = new StringWriter ();
2188                         XmlTextWriter xtw = new XmlTextWriter (sw);
2189                         ser.Serialize (xtw, new Base64Binary ());
2190                         xtw.Close ();
2191                         string expected = @"<?xml version=""1.0"" encoding=""utf-16""?><Base64Binary xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" Data=""AQID"" />";
2192                         Assert.AreEqual (Infoset (expected), WriterText);
2193                         Base64Binary h = (Base64Binary) ser.Deserialize (new StringReader (sw.ToString ()));
2194                         Assert.AreEqual (new byte [] {1, 2, 3}, h.Data);
2195                 }
2196
2197                 [Test] // bug #79989, #79990
2198                 public void SerializeHexBinary ()
2199                 {
2200                         XmlSerializer ser = new XmlSerializer (typeof (HexBinary));
2201                         sw = new StringWriter ();
2202                         XmlTextWriter xtw = new XmlTextWriter (sw);
2203                         ser.Serialize (xtw, new HexBinary ());
2204                         xtw.Close ();
2205                         string expected = @"<?xml version=""1.0"" encoding=""utf-16""?><HexBinary xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" Data=""010203"" />";
2206                         Assert.AreEqual (Infoset (expected), WriterText);
2207                         HexBinary h = (HexBinary) ser.Deserialize (new StringReader (sw.ToString ()));
2208                         Assert.AreEqual (new byte[] { 1, 2, 3 }, h.Data);
2209                 }
2210
2211                 [Test]
2212                 [ExpectedException (typeof (InvalidOperationException))]
2213                 public void XmlArrayAttributeOnInt ()
2214                 {
2215                         new XmlSerializer (typeof (XmlArrayOnInt));
2216                 }
2217
2218                 [Test]
2219                 [ExpectedException (typeof (InvalidOperationException))]
2220                 public void XmlArrayAttributeUnqualifiedWithNamespace ()
2221                 {
2222                         new XmlSerializer (typeof (XmlArrayUnqualifiedWithNamespace));
2223                 }
2224
2225                 [Test]
2226                 [ExpectedException (typeof (InvalidOperationException))]
2227                 public void XmlArrayItemAttributeUnqualifiedWithNamespace ()
2228                 {
2229                         new XmlSerializer (typeof (XmlArrayItemUnqualifiedWithNamespace));
2230                 }
2231
2232                 [Test] // bug #78042
2233                 public void XmlArrayAttributeOnArray ()
2234                 {
2235                         XmlSerializer ser = new XmlSerializer (typeof (XmlArrayOnArray));
2236                         sw = new StringWriter ();
2237                         XmlTextWriter xtw = new XmlTextWriter (sw);
2238                         ser.Serialize (xtw, new XmlArrayOnArray ());
2239                         xtw.Close ();
2240                         string expected = @"<?xml version=""1.0"" encoding=""utf-16""?><XmlArrayOnArray xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns=""urn:foo""><Sane xmlns=""""><string xmlns=""urn:foo"">foo</string><string xmlns=""urn:foo"">bar</string></Sane><Mids xmlns=""""><ArrayItemInXmlArray xmlns=""urn:foo""><Whee xmlns=""""><string xmlns=""urn:gyabo"">foo</string><string xmlns=""urn:gyabo"">bar</string></Whee></ArrayItemInXmlArray></Mids></XmlArrayOnArray>";
2241                         Assert.AreEqual (Infoset (expected), WriterText);
2242                 }
2243
2244                 [Test]
2245                 public void XmlArrayAttributeOnCollection ()
2246                 {
2247                         XmlSerializer ser = new XmlSerializer (typeof (XmlArrayOnArrayList));
2248                         XmlArrayOnArrayList inst = new XmlArrayOnArrayList ();
2249                         inst.Sane.Add ("abc");
2250                         inst.Sane.Add (1);
2251                         sw = new StringWriter ();
2252                         XmlTextWriter xtw = new XmlTextWriter (sw);
2253                         ser.Serialize (xtw, inst);
2254                         xtw.Close ();
2255                         string expected = @"<?xml version=""1.0"" encoding=""utf-16""?><XmlArrayOnArrayList xmlns:xsd=""http://www.w3.org/2001/XMLSchema"" xmlns:xsi=""http://www.w3.org/2001/XMLSchema-instance"" xmlns=""urn:foo""><Sane xmlns=""""><anyType xsi:type=""xsd:string"" xmlns=""urn:foo"">abc</anyType><anyType xsi:type=""xsd:int"" xmlns=""urn:foo"">1</anyType></Sane></XmlArrayOnArrayList>";
2256                         Assert.AreEqual (Infoset (expected), WriterText);
2257                 }
2258
2259                 [Test] // bug #338705
2260                 public void SerializeTimeSpan ()
2261                 {
2262                         // TimeSpan itself is not for duration. Hence it is just regarded as one of custom types.
2263                         XmlSerializer ser = new XmlSerializer (typeof (TimeSpan));
2264                         ser.Serialize (TextWriter.Null, TimeSpan.Zero);
2265                 }
2266
2267                 [Test]
2268                 public void SerializeDurationToString ()
2269                 {
2270                         XmlSerializer ser = new XmlSerializer (typeof (TimeSpanContainer1));
2271                         ser.Serialize (TextWriter.Null, new TimeSpanContainer1 ());
2272                 }
2273
2274                 [Test]
2275                 [ExpectedException (typeof (InvalidOperationException))]
2276                 public void SerializeDurationToTimeSpan ()
2277                 {
2278                         XmlSerializer ser = new XmlSerializer (typeof (TimeSpanContainer2));
2279                         ser.Serialize (TextWriter.Null, new TimeSpanContainer2 ());
2280                 }
2281
2282                 [Test]
2283                 [ExpectedException (typeof (InvalidOperationException))]
2284                 public void SerializeInvalidDataType ()
2285                 {
2286                         XmlSerializer ser = new XmlSerializer (typeof (InvalidTypeContainer));
2287                         ser.Serialize (TextWriter.Null, new InvalidTypeContainer ());
2288                 }
2289
2290                 [Test]
2291                 public void SerializeErrorneousIXmlSerializable ()
2292                 {
2293                         Serialize (new ErrorneousGetSchema ());
2294                         Assert.AreEqual ("<:ErrorneousGetSchema></>", Infoset (sw.ToString ()));
2295                 }
2296
2297                 public void DateTimeRoundtrip ()
2298                 {
2299                         // bug #337729
2300                         XmlSerializer ser = new XmlSerializer (typeof (DateTime));
2301                         StringWriter sw = new StringWriter ();
2302                         ser.Serialize (sw, DateTime.UtcNow);
2303                         DateTime d = (DateTime) ser.Deserialize (new StringReader (sw.ToString ()));
2304                         Assert.AreEqual (DateTimeKind.Utc, d.Kind);
2305                 }
2306
2307                 [Test]
2308                 public void SupportIXmlSerializableImplicitlyConvertible ()
2309                 {
2310                         XmlAttributes attrs = new XmlAttributes ();
2311                         XmlElementAttribute attr = new XmlElementAttribute ();
2312                         attr.ElementName = "XmlSerializable";
2313                         attr.Type = typeof (XmlSerializableImplicitConvertible.XmlSerializable);
2314                         attrs.XmlElements.Add (attr);
2315                         XmlAttributeOverrides attrOverrides = new
2316                         XmlAttributeOverrides ();
2317                         attrOverrides.Add (typeof (XmlSerializableImplicitConvertible), "B", attrs);
2318
2319                         XmlSerializableImplicitConvertible x = new XmlSerializableImplicitConvertible ();
2320                         new XmlSerializer (typeof (XmlSerializableImplicitConvertible), attrOverrides).Serialize (TextWriter.Null, x);
2321                 }
2322
2323                 [Test] // bug #566370
2324                 public void SerializeEnumWithCSharpKeyword ()
2325                 {
2326                         var ser = new XmlSerializer (typeof (DoxCompoundKind));
2327                         for (int i = 0; i < 100; i++) // test serialization code generator
2328                                 ser.Serialize (Console.Out, DoxCompoundKind.@class);
2329                 }
2330
2331                 public enum DoxCompoundKind
2332                 {
2333                         [XmlEnum("class")]
2334                         @class,
2335                         [XmlEnum("struct")]
2336                         @struct,
2337                         union,
2338                         [XmlEnum("interface")]
2339                         @interface,
2340                         protocol,
2341                         category,
2342                         exception,
2343                         file,
2344                         [XmlEnum("namespace")]
2345                         @namespace,
2346                         group,
2347                         page,
2348                         example,
2349                         dir
2350                 }
2351
2352                 #region GenericsSeralizationTests
2353
2354                 [Test]
2355                 public void TestSerializeGenSimpleClassString ()
2356                 {
2357                         GenSimpleClass<string> simple = new GenSimpleClass<string> ();
2358                         Serialize (simple);
2359                         Assert.AreEqual (Infoset ("<GenSimpleClassOfString xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' />"), WriterText);
2360
2361                         simple.something = "hello";
2362
2363                         Serialize (simple);
2364                         Assert.AreEqual (Infoset ("<GenSimpleClassOfString xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>hello</something></GenSimpleClassOfString>"), WriterText);
2365                 }
2366
2367                 [Test]
2368                 public void TestSerializeGenSimpleClassBool ()
2369                 {
2370                         GenSimpleClass<bool> simple = new GenSimpleClass<bool> ();
2371                         Serialize (simple);
2372                         Assert.AreEqual (Infoset ("<GenSimpleClassOfBoolean xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>false</something></GenSimpleClassOfBoolean>"), WriterText);
2373
2374                         simple.something = true;
2375
2376                         Serialize (simple);
2377                         Assert.AreEqual (Infoset ("<GenSimpleClassOfBoolean xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>true</something></GenSimpleClassOfBoolean>"), WriterText);
2378                 }
2379
2380                 [Test]
2381                 public void TestSerializeGenSimpleStructInt ()
2382                 {
2383                         GenSimpleStruct<int> simple = new GenSimpleStruct<int> (0);
2384                         Serialize (simple);
2385                         Assert.AreEqual (Infoset ("<GenSimpleStructOfInt32 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>0</something></GenSimpleStructOfInt32>"), WriterText);
2386
2387                         simple.something = 123;
2388
2389                         Serialize (simple);
2390                         Assert.AreEqual (Infoset ("<GenSimpleStructOfInt32 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something>123</something></GenSimpleStructOfInt32>"), WriterText);
2391                 }
2392
2393                 [Test]
2394                 public void TestSerializeGenListClassString ()
2395                 {
2396                         GenListClass<string> genlist = new GenListClass<string> ();
2397                         Serialize (genlist);
2398                         Assert.AreEqual (Infoset ("<GenListClassOfString xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist></somelist></GenListClassOfString>"), WriterText);
2399
2400                         genlist.somelist.Add ("Value1");
2401                         genlist.somelist.Add ("Value2");
2402
2403                         Serialize (genlist);
2404                         Assert.AreEqual (Infoset ("<GenListClassOfString xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist><string>Value1</string><string>Value2</string></somelist></GenListClassOfString>"), WriterText);
2405                 }
2406
2407                 [Test]
2408                 public void TestSerializeGenListClassFloat ()
2409                 {
2410                         GenListClass<float> genlist = new GenListClass<float> ();
2411                         Serialize (genlist);
2412                         Assert.AreEqual (Infoset ("<GenListClassOfSingle xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist></somelist></GenListClassOfSingle>"), WriterText);
2413
2414                         genlist.somelist.Add (1);
2415                         genlist.somelist.Add (2.2F);
2416
2417                         Serialize (genlist);
2418                         Assert.AreEqual (Infoset ("<GenListClassOfSingle xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist><float>1</float><float>2.2</float></somelist></GenListClassOfSingle>"), WriterText);
2419                 }
2420
2421                 [Test]
2422                 public void TestSerializeGenListClassList ()
2423                 {
2424                         GenListClass<GenListClass<int>> genlist = new GenListClass<GenListClass<int>> ();
2425                         Serialize (genlist);
2426                         Assert.AreEqual (Infoset ("<GenListClassOfGenListClassOfInt32 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist></somelist></GenListClassOfGenListClassOfInt32>"), WriterText);
2427
2428                         GenListClass<int> inlist1 = new GenListClass<int> ();
2429                         inlist1.somelist.Add (1);
2430                         inlist1.somelist.Add (2);
2431                         GenListClass<int> inlist2 = new GenListClass<int> ();
2432                         inlist2.somelist.Add (10);
2433                         inlist2.somelist.Add (20);
2434                         genlist.somelist.Add (inlist1);
2435                         genlist.somelist.Add (inlist2);
2436
2437                         Serialize (genlist);
2438                         Assert.AreEqual (Infoset ("<GenListClassOfGenListClassOfInt32 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist><GenListClassOfInt32><somelist><int>1</int><int>2</int></somelist></GenListClassOfInt32><GenListClassOfInt32><somelist><int>10</int><int>20</int></somelist></GenListClassOfInt32></somelist></GenListClassOfGenListClassOfInt32>"), WriterText);
2439                 }
2440
2441                 [Test]
2442                 public void TestSerializeGenListClassArray ()
2443                 {
2444                         GenListClass<GenArrayClass<char>> genlist = new GenListClass<GenArrayClass<char>> ();
2445                         Serialize (genlist);
2446                         Assert.AreEqual (Infoset ("<GenListClassOfGenArrayClassOfChar xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist></somelist></GenListClassOfGenArrayClassOfChar>"), WriterText);
2447
2448                         GenArrayClass<char> genarr1 = new GenArrayClass<char> ();
2449                         genarr1.arr[0] = 'a';
2450                         genarr1.arr[1] = 'b';
2451                         genlist.somelist.Add (genarr1);
2452                         GenArrayClass<char> genarr2 = new GenArrayClass<char> ();
2453                         genarr2.arr[0] = 'd';
2454                         genarr2.arr[1] = 'e';
2455                         genarr2.arr[2] = 'f';
2456                         genlist.somelist.Add (genarr2);
2457
2458                         Serialize (genlist);
2459                         Assert.AreEqual (Infoset ("<GenListClassOfGenArrayClassOfChar xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist><GenArrayClassOfChar><arr><char>97</char><char>98</char><char>0</char></arr></GenArrayClassOfChar><GenArrayClassOfChar><arr><char>100</char><char>101</char><char>102</char></arr></GenArrayClassOfChar></somelist></GenListClassOfGenArrayClassOfChar>"), WriterText);
2460                 }
2461
2462                 [Test]
2463                 public void TestSerializeGenTwoClassCharDouble ()
2464                 {
2465                         GenTwoClass<char, double> gentwo = new GenTwoClass<char, double> ();
2466                         Serialize (gentwo);
2467                         Assert.AreEqual (Infoset ("<GenTwoClassOfCharDouble xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something1>0</something1><something2>0</something2></GenTwoClassOfCharDouble>"), WriterText);
2468
2469                         gentwo.something1 = 'a';
2470                         gentwo.something2 = 2.2;
2471
2472                         Serialize (gentwo);
2473                         Assert.AreEqual (Infoset ("<GenTwoClassOfCharDouble xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something1>97</something1><something2>2.2</something2></GenTwoClassOfCharDouble>"), WriterText);
2474                 }
2475
2476                 [Test]
2477                 public void TestSerializeGenDerivedClassDecimalShort ()
2478                 {
2479                         GenDerivedClass<decimal, short> derived = new GenDerivedClass<decimal, short> ();
2480                         Serialize (derived);
2481                         Assert.AreEqual (Infoset ("<GenDerivedClassOfDecimalInt16 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something2>0</something2><another1>0</another1><another2>0</another2></GenDerivedClassOfDecimalInt16>"), WriterText);
2482
2483                         derived.something1 = "Value1";
2484                         derived.something2 = 1;
2485                         derived.another1 = 1.1M;
2486                         derived.another2 = -22;
2487
2488                         Serialize (derived);
2489                         Assert.AreEqual (Infoset ("<GenDerivedClassOfDecimalInt16 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something1>Value1</something1><something2>1</something2><another1>1.1</another1><another2>-22</another2></GenDerivedClassOfDecimalInt16>"), WriterText);
2490                 }
2491
2492                 [Test]
2493                 public void TestSerializeGenDerivedSecondClassByteUlong ()
2494                 {
2495                         GenDerived2Class<byte, ulong> derived2 = new GenDerived2Class<byte, ulong> ();
2496                         Serialize (derived2);
2497                         Assert.AreEqual (Infoset ("<GenDerived2ClassOfByteUInt64 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something1>0</something1><something2>0</something2><another1>0</another1><another2>0</another2></GenDerived2ClassOfByteUInt64>"), WriterText);
2498
2499                         derived2.something1 = 1;
2500                         derived2.something2 = 222;
2501                         derived2.another1 = 111;
2502                         derived2.another2 = 222222;
2503
2504                         Serialize (derived2);
2505                         Assert.AreEqual (Infoset ("<GenDerived2ClassOfByteUInt64 xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><something1>1</something1><something2>222</something2><another1>111</another1><another2>222222</another2></GenDerived2ClassOfByteUInt64>"), WriterText);
2506                 }
2507
2508                 [Test]
2509                 public void TestSerializeGenNestedClass ()
2510                 {
2511                         GenNestedClass<string, int>.InnerClass<bool> nested =
2512                                 new GenNestedClass<string, int>.InnerClass<bool> ();
2513                         Serialize (nested);
2514                         Assert.AreEqual (Infoset ("<InnerClassOfStringInt32Boolean xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><inner>0</inner><something>false</something></InnerClassOfStringInt32Boolean>"), WriterText);
2515
2516                         nested.inner = 5;
2517                         nested.something = true;
2518
2519                         Serialize (nested);
2520                         Assert.AreEqual (Infoset ("<InnerClassOfStringInt32Boolean xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><inner>5</inner><something>true</something></InnerClassOfStringInt32Boolean>"), WriterText);
2521                 }
2522
2523                 [Test]
2524                 public void TestSerializeGenListClassListNested ()
2525                 {
2526                         GenListClass<GenListClass<GenNestedClass<int, int>.InnerClass<string>>> genlist =
2527                                 new GenListClass<GenListClass<GenNestedClass<int, int>.InnerClass<string>>> ();
2528                         Serialize (genlist);
2529                         Assert.AreEqual (Infoset ("<GenListClassOfGenListClassOfInnerClassOfInt32Int32String xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist></somelist></GenListClassOfGenListClassOfInnerClassOfInt32Int32String>"), WriterText);
2530
2531                         GenListClass<GenNestedClass<int, int>.InnerClass<string>> inlist1 =
2532                                 new GenListClass<GenNestedClass<int, int>.InnerClass<string>> ();
2533                         GenNestedClass<int, int>.InnerClass<string> inval1 = new GenNestedClass<int, int>.InnerClass<string> ();
2534                         inval1.inner = 1;
2535                         inval1.something = "ONE";
2536                         inlist1.somelist.Add (inval1);
2537                         GenNestedClass<int, int>.InnerClass<string> inval2 = new GenNestedClass<int, int>.InnerClass<string> ();
2538                         inval2.inner = 2;
2539                         inval2.something = "TWO";
2540                         inlist1.somelist.Add (inval2);
2541                         GenListClass<GenNestedClass<int, int>.InnerClass<string>> inlist2 =
2542                                 new GenListClass<GenNestedClass<int, int>.InnerClass<string>> ();
2543                         GenNestedClass<int, int>.InnerClass<string> inval3 = new GenNestedClass<int, int>.InnerClass<string> ();
2544                         inval3.inner = 30;
2545                         inval3.something = "THIRTY";
2546                         inlist2.somelist.Add (inval3);
2547                         genlist.somelist.Add (inlist1);
2548                         genlist.somelist.Add (inlist2);
2549
2550                         Serialize (genlist);
2551                         Assert.AreEqual (Infoset ("<GenListClassOfGenListClassOfInnerClassOfInt32Int32String xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><somelist><GenListClassOfInnerClassOfInt32Int32String><somelist><InnerClassOfInt32Int32String><inner>1</inner><something>ONE</something></InnerClassOfInt32Int32String><InnerClassOfInt32Int32String><inner>2</inner><something>TWO</something></InnerClassOfInt32Int32String></somelist></GenListClassOfInnerClassOfInt32Int32String><GenListClassOfInnerClassOfInt32Int32String><somelist><InnerClassOfInt32Int32String><inner>30</inner><something>THIRTY</something></InnerClassOfInt32Int32String></somelist></GenListClassOfInnerClassOfInt32Int32String></somelist></GenListClassOfGenListClassOfInnerClassOfInt32Int32String>"), WriterText);
2552                 }
2553
2554                 public enum Myenum { one, two, three, four, five, six };
2555                 [Test]
2556                 public void TestSerializeGenArrayClassEnum ()
2557                 {
2558                         GenArrayClass<Myenum> genarr = new GenArrayClass<Myenum> ();
2559                         Serialize (genarr);
2560                         Assert.AreEqual (Infoset ("<GenArrayClassOfMyenum xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><arr><Myenum>one</Myenum><Myenum>one</Myenum><Myenum>one</Myenum></arr></GenArrayClassOfMyenum>"), WriterText);
2561
2562                         genarr.arr[0] = Myenum.one;
2563                         genarr.arr[1] = Myenum.three;
2564                         genarr.arr[2] = Myenum.five;
2565
2566                         Serialize (genarr);
2567                         Assert.AreEqual (Infoset ("<GenArrayClassOfMyenum xmlns:xsd='http://www.w3.org/2001/XMLSchema' xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'><arr><Myenum>one</Myenum><Myenum>three</Myenum><Myenum>five</Myenum></arr></GenArrayClassOfMyenum>"), WriterText);
2568                 }
2569
2570                 [Test]
2571                 public void TestSerializeGenArrayStruct ()
2572                 {
2573                         GenArrayClass<GenSimpleStruct<uint>> genarr = new GenArrayClass<GenSimpleStruct<uint>> ();
2574                         Serialize (genarr);
2575                         Assert.AreEqual ("<:GenArrayClassOfGenSimpleStructOfUInt32 http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:arr><:GenSimpleStructOfUInt32><:something>0</></><:GenSimpleStructOfUInt32><:something>0</></><:GenSimpleStructOfUInt32><:something>0</></></></>", WriterText);
2576
2577                         GenSimpleStruct<uint> genstruct = new GenSimpleStruct<uint> ();
2578                         genstruct.something = 111;
2579                         genarr.arr[0] = genstruct;
2580                         genstruct.something = 222;
2581                         genarr.arr[1] = genstruct;
2582                         genstruct.something = 333;
2583                         genarr.arr[2] = genstruct;
2584
2585                         Serialize (genarr);
2586                         Assert.AreEqual ("<:GenArrayClassOfGenSimpleStructOfUInt32 http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:arr><:GenSimpleStructOfUInt32><:something>111</></><:GenSimpleStructOfUInt32><:something>222</></><:GenSimpleStructOfUInt32><:something>333</></></></>", WriterText);
2587                 }
2588
2589                 [Test]
2590                 public void TestSerializeGenArrayList ()
2591                 {
2592                         GenArrayClass<GenListClass<string>> genarr = new GenArrayClass<GenListClass<string>> ();
2593                         Serialize (genarr);
2594                         Assert.AreEqual ("<:GenArrayClassOfGenListClassOfString http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:arr><:GenListClassOfString http://www.w3.org/2001/XMLSchema-instance:nil='true'></><:GenListClassOfString http://www.w3.org/2001/XMLSchema-instance:nil='true'></><:GenListClassOfString http://www.w3.org/2001/XMLSchema-instance:nil='true'></></></>", WriterText);
2595
2596                         GenListClass<string> genlist1 = new GenListClass<string> ();
2597                         genlist1.somelist.Add ("list1-val1");
2598                         genlist1.somelist.Add ("list1-val2");
2599                         genarr.arr[0] = genlist1;
2600                         GenListClass<string> genlist2 = new GenListClass<string> ();
2601                         genlist2.somelist.Add ("list2-val1");
2602                         genlist2.somelist.Add ("list2-val2");
2603                         genlist2.somelist.Add ("list2-val3");
2604                         genlist2.somelist.Add ("list2-val4");
2605                         genarr.arr[1] = genlist2;
2606                         GenListClass<string> genlist3 = new GenListClass<string> ();
2607                         genlist3.somelist.Add ("list3val");
2608                         genarr.arr[2] = genlist3;
2609
2610                         Serialize (genarr);
2611                         Assert.AreEqual ("<:GenArrayClassOfGenListClassOfString http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:arr><:GenListClassOfString><:somelist><:string>list1-val1</><:string>list1-val2</></></><:GenListClassOfString><:somelist><:string>list2-val1</><:string>list2-val2</><:string>list2-val3</><:string>list2-val4</></></><:GenListClassOfString><:somelist><:string>list3val</></></></></>", WriterText);
2612                 }
2613
2614                 [Test]
2615                 public void TestSerializeGenComplexStruct ()
2616                 {
2617                         GenComplexStruct<int, string> complex = new GenComplexStruct<int, string> (0);
2618                         Serialize (complex);
2619                         Assert.AreEqual ("<:GenComplexStructOfInt32String http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:something>0</><:simpleclass><:something>0</></><:simplestruct><:something>0</></><:listclass><:somelist></></><:arrayclass><:arr><:int>0</><:int>0</><:int>0</></></><:twoclass><:something1>0</></><:derivedclass><:something2>0</><:another1>0</></><:derived2><:something1>0</><:another1>0</></><:nestedouter><:outer>0</></><:nestedinner><:something>0</></></>", WriterText);
2620
2621                         complex.something = 123;
2622                         complex.simpleclass.something = 456;
2623                         complex.simplestruct.something = 789;
2624                         GenListClass<int> genlist = new GenListClass<int> ();
2625                         genlist.somelist.Add (100);
2626                         genlist.somelist.Add (200);
2627                         complex.listclass = genlist;
2628                         GenArrayClass<int> genarr = new GenArrayClass<int> ();
2629                         genarr.arr[0] = 11;
2630                         genarr.arr[1] = 22;
2631                         genarr.arr[2] = 33;
2632                         complex.arrayclass = genarr;
2633                         complex.twoclass.something1 = 10;
2634                         complex.twoclass.something2 = "Ten";
2635                         complex.derivedclass.another1 = 1;
2636                         complex.derivedclass.another2 = "one";
2637                         complex.derivedclass.something1 = "two";
2638                         complex.derivedclass.something2 = 2;
2639                         complex.derived2.another1 = 3;
2640                         complex.derived2.another2 = "three";
2641                         complex.derived2.something1 = 4;
2642                         complex.derived2.something2 = "four";
2643                         complex.nestedouter.outer = 5;
2644                         complex.nestedinner.inner = "six";
2645                         complex.nestedinner.something = 6;
2646
2647                         Serialize (complex);
2648                         Assert.AreEqual ("<:GenComplexStructOfInt32String http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:something>123</><:simpleclass><:something>456</></><:simplestruct><:something>789</></><:listclass><:somelist><:int>100</><:int>200</></></><:arrayclass><:arr><:int>11</><:int>22</><:int>33</></></><:twoclass><:something1>10</><:something2>Ten</></><:derivedclass><:something1>two</><:something2>2</><:another1>1</><:another2>one</></><:derived2><:something1>4</><:something2>four</><:another1>3</><:another2>three</></><:nestedouter><:outer>5</></><:nestedinner><:inner>six</><:something>6</></></>", WriterText);
2649                 }
2650
2651                 [Test] // bug #80759
2652                 public void HasNullableField ()
2653                 {
2654                         Bug80759 foo = new Bug80759 ();
2655                         foo.Test = "BAR";
2656                         foo.NullableInt = 10;
2657
2658                         XmlSerializer serializer = new XmlSerializer (typeof (Bug80759));
2659
2660                         MemoryStream stream = new MemoryStream ();
2661
2662                         serializer.Serialize (stream, foo);
2663                         stream.Position = 0;
2664                         foo = (Bug80759) serializer.Deserialize (stream);
2665                 }
2666
2667                 [Test] // bug #80759, with fieldSpecified.
2668                 [ExpectedException (typeof (InvalidOperationException))]
2669                 [Category ("NotWorking")]
2670                 public void HasFieldSpecifiedButIrrelevant ()
2671                 {
2672                         Bug80759_2 foo = new Bug80759_2 ();
2673                         foo.Test = "BAR";
2674                         foo.NullableInt = 10;
2675
2676                         XmlSerializer serializer = new XmlSerializer (typeof (Bug80759_2));
2677
2678                         MemoryStream stream = new MemoryStream ();
2679
2680                         serializer.Serialize (stream, foo);
2681                         stream.Position = 0;
2682                         foo = (Bug80759_2) serializer.Deserialize (stream);
2683                 }
2684
2685                 [Test]
2686                 public void HasNullableField2 ()
2687                 {
2688                         Bug80759 foo = new Bug80759 ();
2689                         foo.Test = "BAR";
2690                         foo.NullableInt = 10;
2691
2692                         XmlSerializer serializer = new XmlSerializer (typeof (Bug80759));
2693
2694                         MemoryStream stream = new MemoryStream ();
2695
2696                         serializer.Serialize (stream, foo);
2697                         stream.Position = 0;
2698                         foo = (Bug80759) serializer.Deserialize (stream);
2699
2700                         Assert.AreEqual ("BAR", foo.Test, "#1");
2701                         Assert.AreEqual (10, foo.NullableInt, "#2");
2702
2703                         foo.NullableInt = null;
2704                         stream = new MemoryStream ();
2705                         serializer.Serialize (stream, foo);
2706                         stream.Position = 0;
2707                         foo = (Bug80759) serializer.Deserialize (stream);
2708
2709                         Assert.AreEqual ("BAR", foo.Test, "#3");
2710                         Assert.IsNull (foo.NullableInt, "#4");
2711                 }
2712
2713                 [Test]
2714                 public void SupportPrivateCtorOnly ()
2715                 {
2716                         XmlSerializer xs =
2717                                 new XmlSerializer (typeof (PrivateCtorOnly));
2718                         StringWriter sw = new StringWriter ();
2719                         xs.Serialize (sw, PrivateCtorOnly.Instance);
2720                         xs.Deserialize (new StringReader (sw.ToString ()));
2721                 }
2722
2723                 [Test]
2724                 public void XmlSchemaProviderQNameBecomesRootName ()
2725                 {
2726                         xs = new XmlSerializer (typeof (XmlSchemaProviderQNameBecomesRootNameType));
2727                         Serialize (new XmlSchemaProviderQNameBecomesRootNameType ());
2728                         Assert.AreEqual (Infoset ("<foo />"), WriterText);
2729                         xs.Deserialize (new StringReader ("<foo/>"));
2730                 }
2731
2732                 [Test]
2733                 public void XmlSchemaProviderQNameBecomesRootName2 ()
2734                 {
2735                         string xml = "<XmlSchemaProviderQNameBecomesRootNameType2 xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><Foo><foo /></Foo></XmlSchemaProviderQNameBecomesRootNameType2>";
2736                         xs = new XmlSerializer (typeof (XmlSchemaProviderQNameBecomesRootNameType2));
2737                         Serialize (new XmlSchemaProviderQNameBecomesRootNameType2 ());
2738                         Assert.AreEqual (Infoset (xml), WriterText);
2739                         xs.Deserialize (new StringReader (xml));
2740                 }
2741
2742                 [Test]
2743                 public void XmlAnyElementForObjects () // bug #553032
2744                 {
2745                         new XmlSerializer (typeof (XmlAnyElementForObjectsType));
2746                 }
2747
2748                 [Test]
2749                 [ExpectedException (typeof (InvalidOperationException))]
2750                 public void XmlAnyElementForObjects2 () // bug #553032-2
2751                 {
2752                         new XmlSerializer (typeof (XmlAnyElementForObjectsType)).Serialize (TextWriter.Null, new XmlAnyElementForObjectsType ());
2753                 }
2754
2755
2756                 public class Bug2893 {
2757                         public Bug2893 ()
2758                         {                       
2759                                 Contents = new XmlDataDocument();
2760                         }
2761                         
2762                         [XmlAnyElement("Contents")]
2763                         public XmlNode Contents;
2764                 }
2765
2766                 // Bug Xamarin #2893
2767                 [Test]
2768                 public void XmlAnyElementForXmlNode ()
2769                 {
2770                         var obj = new Bug2893 ();
2771                         XmlSerializer mySerializer = new XmlSerializer(typeof(Bug2893));
2772                         XmlWriterSettings settings = new XmlWriterSettings();
2773
2774                         var xsn = new XmlSerializerNamespaces();
2775                         xsn.Add(string.Empty, string.Empty);
2776
2777                         byte[] buffer = new byte[2048];
2778                         var ms = new MemoryStream(buffer);
2779                         using (var xw = XmlWriter.Create(ms, settings))
2780                         {
2781                                 mySerializer.Serialize(xw, obj, xsn);
2782                                 xw.Flush();
2783                         }
2784
2785                         mySerializer.Serialize(ms, obj);
2786                 }
2787
2788                 [Test]
2789                 public void XmlRootOverridesSchemaProviderQName ()
2790                 {
2791                         var obj = new XmlRootOverridesSchemaProviderQNameType ();
2792
2793                         XmlSerializer xs = new XmlSerializer (obj.GetType ());
2794
2795                         var sw = new StringWriter ();
2796                         using (XmlWriter xw = XmlWriter.Create (sw))
2797                                 xs.Serialize (xw, obj);
2798                         Assert.IsTrue (sw.ToString ().IndexOf ("foo") > 0, "#1");
2799                 }
2800
2801                 public class AnotherArrayListType
2802                 {
2803                         [XmlAttribute]
2804                         public string one = "aaa";
2805                         [XmlAttribute]
2806                         public string another = "bbb";
2807                 }
2808
2809                 public class DerivedArrayListType : AnotherArrayListType
2810                 {
2811
2812                 }
2813
2814                 public class ClassWithArrayList
2815                 {
2816                         [XmlElement (Type = typeof(int), ElementName = "int_elem")]
2817                         [XmlElement (Type = typeof(string), ElementName = "string_elem")]
2818                         [XmlElement (Type = typeof(AnotherArrayListType), ElementName = "another_elem")]
2819                         [XmlElement (Type = typeof(DerivedArrayListType), ElementName = "derived_elem")]
2820                         public ArrayList list;
2821                 }
2822
2823                 public class ClassWithArray
2824                 {
2825                         [XmlElement (Type = typeof(int), ElementName = "int_elem")]
2826                         [XmlElement (Type = typeof(string), ElementName = "string_elem")]
2827                         [XmlElement (Type = typeof(AnotherArrayListType), ElementName = "another_elem")]
2828                         [XmlElement (Type = typeof(DerivedArrayListType), ElementName = "derived_elem")]
2829                         public object[] list;
2830
2831                 }
2832
2833                 [Test]
2834                 public void MultipleXmlElementAttributesOnArrayList()
2835                 {
2836                         var test = new ClassWithArrayList();
2837
2838                         test.list = new ArrayList();
2839                         test.list.Add(3);
2840                         test.list.Add("apepe");
2841                         test.list.Add(new AnotherArrayListType());
2842                         test.list.Add(new DerivedArrayListType());
2843
2844                         Serialize(test);
2845                         var expected_text = "<:ClassWithArrayList http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:int_elem>3</><:string_elem>apepe</><:another_elem :another='bbb' :one='aaa'></><:derived_elem :another='bbb' :one='aaa'></></>";
2846
2847                         Assert.AreEqual(WriterText, expected_text, WriterText);
2848                 }
2849
2850                 [Test]
2851                 public void MultipleXmlElementAttributesOnArray()
2852                 {
2853                         var test = new ClassWithArray();
2854
2855                         test.list = new object[] { 3, "apepe", new AnotherArrayListType(), new DerivedArrayListType() };
2856
2857                         Serialize(test);
2858                         var expected_text = "<:ClassWithArray http://www.w3.org/2000/xmlns/:xsd='http://www.w3.org/2001/XMLSchema' http://www.w3.org/2000/xmlns/:xsi='http://www.w3.org/2001/XMLSchema-instance'><:int_elem>3</><:string_elem>apepe</><:another_elem :another='bbb' :one='aaa'></><:derived_elem :another='bbb' :one='aaa'></></>";
2859
2860                         Assert.AreEqual(WriterText, expected_text, WriterText);
2861                 }
2862
2863
2864                 #endregion //GenericsSeralizationTests
2865                 #region XmlInclude on abstract class tests (Bug #18558)
2866                 [Test]
2867                 public void TestSerializeIntermediateType ()
2868                 {
2869                         string expectedXml = "<ContainerTypeForTest xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><XmlIntermediateType intermediate=\"false\"/></ContainerTypeForTest>";
2870                         var obj = new ContainerTypeForTest();
2871                         obj.MemberToUseInclude = new IntermediateTypeForTest ();
2872                         Serialize (obj);
2873                         Assert.AreEqual (Infoset (expectedXml), WriterText, "Serialized Output : " + WriterText);
2874                 }
2875
2876                 [Test]
2877                 public void TestSerializeSecondType ()
2878                 {
2879                         string expectedXml = "<ContainerTypeForTest xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\"><XmlSecondType intermediate=\"false\"/></ContainerTypeForTest>";
2880                         var obj = new ContainerTypeForTest();
2881                         obj.MemberToUseInclude = new SecondDerivedTypeForTest ();
2882                         Serialize (obj);
2883                         Assert.AreEqual (Infoset (expectedXml), WriterText, "Serialized Output : " + WriterText);
2884                 }
2885                 #endregion
2886                 public class XmlArrayOnInt
2887                 {
2888                         [XmlArray]
2889                         public int Bogus;
2890                 }
2891
2892                 public class XmlArrayUnqualifiedWithNamespace
2893                 {
2894                         [XmlArray (Namespace = "", Form = XmlSchemaForm.Unqualified)]
2895                         public ArrayList Sane = new ArrayList ();
2896                 }
2897
2898                 public class XmlArrayItemUnqualifiedWithNamespace
2899                 {
2900                         [XmlArrayItem ("foo", Namespace = "", Form = XmlSchemaForm.Unqualified)]
2901                         public ArrayList Sane = new ArrayList ();
2902                 }
2903
2904                 [XmlRoot (Namespace = "urn:foo")]
2905                 public class XmlArrayOnArrayList
2906                 {
2907                         [XmlArray (Form = XmlSchemaForm.Unqualified)]
2908                         public ArrayList Sane = new ArrayList ();
2909                 }
2910
2911                 [XmlRoot (Namespace = "urn:foo")]
2912                 public class XmlArrayOnArray
2913                 {
2914                         [XmlArray (Form = XmlSchemaForm.Unqualified)]
2915                         public string[] Sane = new string[] { "foo", "bar" };
2916
2917                         [XmlArray (Form = XmlSchemaForm.Unqualified)]
2918                         public ArrayItemInXmlArray[] Mids =
2919                                 new ArrayItemInXmlArray[] { new ArrayItemInXmlArray () };
2920                 }
2921
2922                 [XmlType (Namespace = "urn:gyabo")]
2923                 public class ArrayItemInXmlArray
2924                 {
2925                         [XmlArray (Form = XmlSchemaForm.Unqualified)]
2926                         public string[] Whee = new string[] { "foo", "bar" };
2927                 }
2928
2929                 [XmlRoot ("Base64Binary")]
2930                 public class Base64Binary
2931                 {
2932                         [XmlAttribute (DataType = "base64Binary")]
2933                         public byte [] Data = new byte [] {1, 2, 3};
2934                 }
2935
2936                 [XmlRoot ("HexBinary")]
2937                 public class HexBinary
2938                 {
2939                         [XmlAttribute (DataType = "hexBinary")]
2940                         public byte[] Data = new byte[] { 1, 2, 3 };
2941                 }
2942
2943                 [XmlRoot ("PrivateCtorOnly")]
2944                 public class PrivateCtorOnly
2945                 {
2946                         public static PrivateCtorOnly Instance = new PrivateCtorOnly ();
2947                         private PrivateCtorOnly ()
2948                         {
2949                         }
2950                 }
2951
2952                 public class CDataTextNodesType
2953                 {
2954                         public CDataTextNodesInternal foo;
2955                 }
2956
2957                 public class CDataTextNodesInternal
2958                 {
2959                         [XmlText]
2960                         public string Value;
2961                 }
2962
2963                 public class InvalidTypeContainer
2964                 {
2965                         [XmlElement (DataType = "invalid")]
2966                         public string InvalidTypeItem = "aaa";
2967                 }
2968
2969                 public class TimeSpanContainer1
2970                 {
2971                         [XmlElement (DataType = "duration")]
2972                         public string StringDuration = "aaa";
2973                 }
2974
2975                 public class TimeSpanContainer2
2976                 {
2977                         [XmlElement (DataType = "duration")]
2978                         public TimeSpan StringDuration = TimeSpan.FromSeconds (1);
2979                 }
2980
2981                 public class Bug80759
2982                 {
2983                         public string Test;
2984                         public int? NullableInt;
2985                 }
2986
2987                 public class Bug80759_2
2988                 {
2989                         public string Test;
2990                         public int? NullableInt;
2991
2992                         [XmlIgnore]
2993                         public bool NullableIntSpecified {
2994                                 get { return NullableInt.HasValue; }
2995                         }
2996                 }
2997
2998                 [XmlSchemaProvider ("GetXsdType")]
2999                 public class XmlSchemaProviderQNameBecomesRootNameType : IXmlSerializable
3000                 {
3001                         public XmlSchema GetSchema ()
3002                         {
3003                                 return null;
3004                         }
3005
3006                         public void ReadXml (XmlReader reader)
3007                         {
3008                                 reader.Skip ();
3009                         }
3010
3011                         public void WriteXml (XmlWriter writer)
3012                         {
3013                         }
3014
3015                         public static XmlQualifiedName GetXsdType (XmlSchemaSet xss)
3016                         {
3017                                 if (xss.Count == 0) {
3018                                         XmlSchema xs = new XmlSchema ();
3019                                         XmlSchemaComplexType ct = new XmlSchemaComplexType ();
3020                                         ct.Name = "foo";
3021                                         xs.Items.Add (ct);
3022                                         xss.Add (xs);
3023                                 }
3024                                 return new XmlQualifiedName ("foo");
3025                         }
3026                 }
3027
3028                 public class XmlSchemaProviderQNameBecomesRootNameType2
3029                 {
3030                         [XmlArrayItem (typeof (XmlSchemaProviderQNameBecomesRootNameType))]
3031                         public object [] Foo = new object [] {new XmlSchemaProviderQNameBecomesRootNameType ()};
3032                 }
3033
3034                 public class XmlAnyElementForObjectsType
3035                 {
3036                         [XmlAnyElement]
3037                         public object [] arr = new object [] {3,4,5};
3038                 }
3039
3040                 [XmlRoot ("foo")]
3041                 [XmlSchemaProvider ("GetSchema")]
3042                 public class XmlRootOverridesSchemaProviderQNameType : IXmlSerializable
3043                 {
3044                         public static XmlQualifiedName GetSchema (XmlSchemaSet xss)
3045                         {
3046                                 var xs = new XmlSchema ();
3047                                 var xse = new XmlSchemaComplexType () { Name = "bar" };
3048                                 xs.Items.Add (xse);
3049                                 xss.Add (xs);
3050                                 return new XmlQualifiedName ("bar");
3051                         }
3052
3053                         XmlSchema IXmlSerializable.GetSchema ()
3054                         {
3055                                 return null;
3056                         }
3057
3058                         void IXmlSerializable.ReadXml (XmlReader reader)
3059                         {
3060                         }
3061                         void IXmlSerializable.WriteXml (XmlWriter writer)
3062                         {
3063                         }
3064                 }
3065
3066
3067                 void CDataTextNodes_BadNode (object s, XmlNodeEventArgs e)
3068                 {
3069                         Assert.Fail ();
3070                 }
3071
3072                 // Helper methods
3073
3074                 public static string Infoset (string sx)
3075                 {
3076                         XmlDocument doc = new XmlDocument ();
3077                         doc.LoadXml (sx);
3078                         StringBuilder sb = new StringBuilder ();
3079                         GetInfoset (doc.DocumentElement, sb);
3080                         return sb.ToString ();
3081                 }
3082
3083                 public static string Infoset (XmlNode nod)
3084                 {
3085                         StringBuilder sb = new StringBuilder ();
3086                         GetInfoset (nod, sb);
3087                         return sb.ToString ();
3088                 }
3089
3090                 static void GetInfoset (XmlNode nod, StringBuilder sb)
3091                 {
3092                         switch (nod.NodeType) {
3093                         case XmlNodeType.Attribute:
3094                                 if (nod.LocalName == "xmlns" && nod.NamespaceURI == "http://www.w3.org/2000/xmlns/") return;
3095                                 sb.Append (" " + nod.NamespaceURI + ":" + nod.LocalName + "='" + nod.Value + "'");
3096                                 break;
3097
3098                         case XmlNodeType.Element:
3099                                 XmlElement elem = (XmlElement) nod;
3100                                 sb.Append ("<" + elem.NamespaceURI + ":" + elem.LocalName);
3101
3102                                 ArrayList ats = new ArrayList ();
3103                                 foreach (XmlAttribute at in elem.Attributes)
3104                                         ats.Add (at.LocalName + " " + at.NamespaceURI);
3105
3106                                 ats.Sort ();
3107
3108                                 foreach (string name in ats) {
3109                                         string[] nn = name.Split (' ');
3110                                         GetInfoset (elem.Attributes[nn[0], nn[1]], sb);
3111                                 }
3112
3113                                 sb.Append (">");
3114                                 foreach (XmlNode cn in elem.ChildNodes)
3115                                         GetInfoset (cn, sb);
3116                                 sb.Append ("</>");
3117                                 break;
3118
3119                         default:
3120                                 sb.Append (nod.OuterXml);
3121                                 break;
3122                         }
3123                 }
3124
3125                 static XmlTypeMapping CreateSoapMapping (Type type)
3126                 {
3127                         SoapReflectionImporter importer = new SoapReflectionImporter ();
3128                         return importer.ImportTypeMapping (type);
3129                 }
3130
3131                 static XmlTypeMapping CreateSoapMapping (Type type, SoapAttributeOverrides ao)
3132                 {
3133                         SoapReflectionImporter importer = new SoapReflectionImporter (ao);
3134                         return importer.ImportTypeMapping (type);
3135                 }
3136
3137                 static XmlTypeMapping CreateSoapMapping (Type type, SoapAttributeOverrides ao, string defaultNamespace)
3138                 {
3139                         SoapReflectionImporter importer = new SoapReflectionImporter (ao, defaultNamespace);
3140                         return importer.ImportTypeMapping (type);
3141                 }
3142
3143                 [XmlSchemaProvider (null, IsAny = true)]
3144                 public class AnySchemaProviderClass : IXmlSerializable {
3145
3146                         public string Text;
3147
3148                         void IXmlSerializable.WriteXml (XmlWriter writer)
3149                         {
3150                                 writer.WriteElementString ("text", Text);
3151                         }
3152
3153                         void IXmlSerializable.ReadXml (XmlReader reader)
3154                         {
3155                                 Text = reader.ReadElementString ("text");
3156                         }
3157
3158                         XmlSchema IXmlSerializable.GetSchema ()
3159                         {
3160                                 return null;
3161                         }
3162                 }
3163
3164                 [Test]
3165                 public void SerializeAnySchemaProvider ()
3166                 {
3167                         string expected = "<?xml version=\"1.0\" encoding=\"utf-16\"?>" +
3168                                 Environment.NewLine + "<text>test</text>";
3169
3170                         var ser = new XmlSerializer (typeof (AnySchemaProviderClass));
3171
3172                         var obj = new AnySchemaProviderClass {
3173                                 Text = "test",
3174                         };
3175
3176                         using (var t = new StringWriter ()) {
3177                                 ser.Serialize (t, obj);
3178                                 Assert.AreEqual (expected, t.ToString ());
3179                         }
3180                 }
3181
3182                 [Test]
3183                 public void DeserializeAnySchemaProvider ()
3184                 {
3185                         string expected = "<?xml version=\"1.0\" encoding=\"utf-16\"?>" +
3186                                 Environment.NewLine + "<text>test</text>";
3187
3188                         var ser = new XmlSerializer (typeof (AnySchemaProviderClass));
3189
3190                         using (var t = new StringReader (expected)) {
3191                                 var obj = (AnySchemaProviderClass) ser.Deserialize (t);
3192                                 Assert.AreEqual ("test", obj.Text);
3193                         }
3194                 }
3195
3196                 public class SubNoParameterlessConstructor : NoParameterlessConstructor
3197                 {
3198                         public SubNoParameterlessConstructor ()
3199                                 : base ("")
3200                         {
3201                         }
3202                 }
3203
3204                 public class NoParameterlessConstructor
3205                 {
3206                         [XmlElement ("Text")]
3207                         public string Text;
3208
3209                         public NoParameterlessConstructor (string parameter)
3210                         {
3211                         }
3212                 }
3213
3214                 [Test]
3215                 public void BaseClassWithoutParameterlessConstructor ()
3216                 {
3217                         var ser = new XmlSerializer (typeof (SubNoParameterlessConstructor));
3218
3219                         var obj = new SubNoParameterlessConstructor {
3220                                 Text = "test",
3221                         };
3222
3223                         using (var w = new StringWriter ()) {
3224                                 ser.Serialize (w, obj);
3225                                 using (var r = new StringReader ( w.ToString ())) {
3226                                         var desObj = (SubNoParameterlessConstructor) ser.Deserialize (r);
3227                                         Assert.AreEqual (obj.Text, desObj.Text);
3228                                 }
3229                         }
3230                 }
3231
3232                 public class ClassWithXmlAnyElement
3233                 {
3234                         [XmlAnyElement ("Contents")]
3235                         public XmlNode Contents;
3236                 }
3237
3238                 [Test] // bug #3211
3239                 public void TestClassWithXmlAnyElement ()
3240                 {
3241                         var d = new XmlDocument ();
3242                         var e = d.CreateElement ("Contents");
3243                         e.AppendChild (d.CreateElement ("SomeElement"));
3244
3245                         var c = new ClassWithXmlAnyElement {
3246                                 Contents = e,
3247                         };
3248
3249                         var ser = new XmlSerializer (typeof (ClassWithXmlAnyElement));
3250                         using (var sw = new StringWriter ())
3251                                 ser.Serialize (sw, c);
3252                 }
3253
3254                 [Test]
3255                 public void ClassWithImplicitlyConvertibleElement ()
3256                 {
3257                         var ser = new XmlSerializer (typeof (ObjectWithElementRequiringImplicitCast));
3258
3259                         var obj = new ObjectWithElementRequiringImplicitCast ("test");
3260
3261                         using (var w = new StringWriter ()) {
3262                                 ser.Serialize (w, obj);
3263                                 using (var r = new StringReader ( w.ToString ())) {
3264                                         var desObj = (ObjectWithElementRequiringImplicitCast) ser.Deserialize (r);
3265                                         Assert.AreEqual (obj.Object.Text, desObj.Object.Text);
3266                                 }
3267                         }
3268                 }
3269
3270                 public class ClassWithOptionalMethods
3271                 {
3272                         private readonly bool shouldSerializeX;
3273                         private readonly bool xSpecified;
3274
3275                         [XmlAttribute]
3276                         public int X { get; set; }
3277
3278                         public bool ShouldSerializeX () { return shouldSerializeX; }
3279
3280                         public bool XSpecified
3281                         {
3282                                 get { return xSpecified; }
3283                         }
3284
3285                         public ClassWithOptionalMethods ()
3286                         {
3287                         }
3288
3289                         public ClassWithOptionalMethods (int x, bool shouldSerializeX, bool xSpecified)
3290                         {
3291                                 this.X = x;
3292                                 this.shouldSerializeX = shouldSerializeX;
3293                                 this.xSpecified = xSpecified;
3294                         }
3295                 }
3296
3297                 [Test]
3298                 public void OptionalMethods ()
3299                 {
3300                         var ser = new XmlSerializer (typeof (ClassWithOptionalMethods));
3301
3302                         var expectedValueWithoutX = Infoset ("<?xml version=\"1.0\" encoding=\"utf-16\"?>" + Environment.NewLine +
3303                                 "<ClassWithOptionalMethods xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" />");
3304
3305                         var expectedValueWithX = Infoset ("<?xml version=\"1.0\" encoding=\"utf-16\"?>" + Environment.NewLine +
3306                                 "<ClassWithOptionalMethods xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" X=\"11\" />");
3307
3308                         using (var t = new StringWriter ()) {
3309                                 var obj = new ClassWithOptionalMethods (11, false, false);
3310                                 ser.Serialize (t, obj);
3311                                 Assert.AreEqual (expectedValueWithoutX, Infoset (t.ToString ()));
3312                         }
3313
3314                         using (var t = new StringWriter ()) {
3315                                 var obj = new ClassWithOptionalMethods (11, true, false);
3316                                 ser.Serialize (t, obj);
3317                                 Assert.AreEqual (expectedValueWithoutX, Infoset (t.ToString ()));
3318                         }
3319
3320                         using (var t = new StringWriter ()) {
3321                                 var obj = new ClassWithOptionalMethods (11, false, true);
3322                                 ser.Serialize (t, obj);
3323                                 Assert.AreEqual (expectedValueWithoutX, Infoset (t.ToString ()));
3324                         }
3325
3326                         using (var t = new StringWriter ()) {
3327                                 var obj = new ClassWithOptionalMethods (11, true, true);
3328                                 ser.Serialize (t, obj);
3329                                 Assert.AreEqual (expectedValueWithX, Infoset (t.ToString ()));
3330                         }
3331                 }
3332
3333                 public class ClassWithShouldSerializeGeneric
3334                 {
3335                         [XmlAttribute]
3336                         public int X { get; set; }
3337
3338                         public bool ShouldSerializeX<T> () { return false; }
3339                 }
3340
3341                 [Test]
3342                 [Category("NotDotNet")]
3343                 public void ShouldSerializeGeneric ()
3344                 {
3345                         var ser = new XmlSerializer (typeof (ClassWithShouldSerializeGeneric));
3346
3347                         var expectedValueWithX = Infoset ("<?xml version=\"1.0\" encoding=\"utf-16\"?>" + Environment.NewLine +
3348                                 "<ClassWithShouldSerializeGeneric xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\" X=\"11\" />");
3349
3350                         using (var t = new StringWriter ()) {
3351                                 var obj = new ClassWithShouldSerializeGeneric { X = 11 };
3352                                 ser.Serialize (t, obj);
3353                                 Assert.AreEqual (expectedValueWithX, Infoset (t.ToString ()));
3354                         }
3355                 }
3356
3357                 [Test]
3358                 public void NullableArrayItems ()
3359                 {
3360                         var ser = new XmlSerializer (typeof (ObjectWithNullableArrayItems));
3361
3362                         var obj = new ObjectWithNullableArrayItems ();
3363                         obj.Elements = new List <SimpleClass> ();
3364                         obj.Elements.Add (new SimpleClass { something = "Hello" });
3365                         obj.Elements.Add (null);
3366                         obj.Elements.Add (new SimpleClass { something = "World" });
3367
3368                         using (var w = new StringWriter ()) {
3369                                 ser.Serialize (w, obj);
3370                                 using (var r = new StringReader ( w.ToString ())) {
3371                                         var desObj = (ObjectWithNullableArrayItems) ser.Deserialize (r);
3372                                         Assert.IsNull (desObj.Elements [1]);
3373                                 }
3374                         }
3375                 }
3376
3377                 [Test]
3378                 public void NonNullableArrayItems ()
3379                 {
3380                         var ser = new XmlSerializer (typeof (ObjectWithNonNullableArrayItems));
3381
3382                         var obj = new ObjectWithNonNullableArrayItems ();
3383                         obj.Elements = new List <SimpleClass> ();
3384                         obj.Elements.Add (new SimpleClass { something = "Hello" });
3385                         obj.Elements.Add (null);
3386                         obj.Elements.Add (new SimpleClass { something = "World" });
3387
3388                         using (var w = new StringWriter ()) {
3389                                 ser.Serialize (w, obj);
3390                                 using (var r = new StringReader ( w.ToString ())) {
3391                                         var desObj = (ObjectWithNonNullableArrayItems) ser.Deserialize (r);
3392                                         Assert.IsNotNull (desObj.Elements [1]);
3393                                 }
3394                         }
3395                 }
3396
3397                 [Test]
3398                 public void NotSpecifiedNullableArrayItems ()
3399                 {
3400                         var ser = new XmlSerializer (typeof (ObjectWithNotSpecifiedNullableArrayItems));
3401
3402                         var obj = new ObjectWithNotSpecifiedNullableArrayItems ();
3403                         obj.Elements = new List <SimpleClass> ();
3404                         obj.Elements.Add (new SimpleClass { something = "Hello" });
3405                         obj.Elements.Add (null);
3406                         obj.Elements.Add (new SimpleClass { something = "World" });
3407
3408                         using (var w = new StringWriter ()) {
3409                                 ser.Serialize (w, obj);
3410                                 using (var r = new StringReader ( w.ToString ())) {
3411                                         var desObj = (ObjectWithNotSpecifiedNullableArrayItems) ser.Deserialize (r);
3412                                         Assert.IsNull (desObj.Elements [1]);
3413                                 }
3414                         }
3415                 }
3416
3417                 private static void TestClassWithDefaultTextNotNullAux (string value, string expected)
3418                 {
3419                         var obj = new ClassWithDefaultTextNotNull (value);
3420                         var ser = new XmlSerializer (typeof (ClassWithDefaultTextNotNull));
3421
3422                         using (var mstream = new MemoryStream ())
3423                         using (var writer = new XmlTextWriter (mstream, Encoding.ASCII)) {
3424                                 ser.Serialize (writer, obj);
3425
3426                                 mstream.Seek (0, SeekOrigin.Begin);
3427                                 using (var reader = new XmlTextReader (mstream)) {
3428                                         var result = (ClassWithDefaultTextNotNull) ser.Deserialize (reader);
3429                                         Assert.AreEqual (expected, result.Value);
3430                                 }
3431                         }
3432                 }
3433
3434                 [Test]
3435                 public void TestClassWithDefaultTextNotNull ()
3436                 {
3437                         TestClassWithDefaultTextNotNullAux ("my_text", "my_text");
3438                         TestClassWithDefaultTextNotNullAux ("", ClassWithDefaultTextNotNull.DefaultValue);
3439                         TestClassWithDefaultTextNotNullAux (null, ClassWithDefaultTextNotNull.DefaultValue);
3440                 }
3441         }
3442
3443         // Test generated serialization code.
3444         public class XmlSerializerGeneratorTests : XmlSerializerTests {
3445
3446                 private FieldInfo backgroundGeneration;
3447                 private FieldInfo generationThreshold;
3448                 private FieldInfo generatorFallback;
3449
3450                 private bool backgroundGenerationOld;
3451                 private int generationThresholdOld;
3452                 private bool generatorFallbackOld;
3453
3454                 [SetUp]
3455                 public void SetUp ()
3456                 {
3457                         // Make sure XmlSerializer static constructor is called
3458                         XmlSerializer.FromTypes (new Type [] {});
3459
3460                         const BindingFlags binding = BindingFlags.Static | BindingFlags.NonPublic;
3461                         backgroundGeneration = typeof (XmlSerializer).GetField ("backgroundGeneration", binding);
3462                         generationThreshold = typeof (XmlSerializer).GetField ("generationThreshold", binding);
3463                         generatorFallback = typeof (XmlSerializer).GetField ("generatorFallback", binding);
3464
3465                         if (backgroundGeneration == null)
3466                                 Assert.Ignore ("Unable to access field backgroundGeneration");
3467                         if (generationThreshold == null)
3468                                 Assert.Ignore ("Unable to access field generationThreshold");
3469                         if (generatorFallback == null)
3470                                 Assert.Ignore ("Unable to access field generatorFallback");
3471
3472                         backgroundGenerationOld = (bool) backgroundGeneration.GetValue (null);
3473                         generationThresholdOld = (int) generationThreshold.GetValue (null);
3474                         generatorFallbackOld = (bool) generatorFallback.GetValue (null);
3475
3476                         backgroundGeneration.SetValue (null, false);
3477                         generationThreshold.SetValue (null, 0);
3478                         generatorFallback.SetValue (null, false);
3479                 }
3480
3481                 [TearDown]
3482                 public void TearDown ()
3483                 {
3484                         if (backgroundGeneration == null || generationThreshold == null || generatorFallback == null)
3485                                 return;
3486
3487                         backgroundGeneration.SetValue (null, backgroundGenerationOld);
3488                         generationThreshold.SetValue (null, generationThresholdOld);
3489                         generatorFallback.SetValue (null, generatorFallbackOld);
3490                 }
3491         }
3492
3493 #region XmlInclude on abstract class test classes
3494
3495         [XmlType]
3496         public class ContainerTypeForTest
3497         {
3498                 [XmlElement ("XmlFirstType", typeof (FirstDerivedTypeForTest))]
3499                 [XmlElement ("XmlIntermediateType", typeof (IntermediateTypeForTest))]
3500                 [XmlElement ("XmlSecondType", typeof (SecondDerivedTypeForTest))]
3501                 public AbstractTypeForTest MemberToUseInclude { get; set; }
3502         }
3503
3504         [XmlInclude (typeof (FirstDerivedTypeForTest))]
3505         [XmlInclude (typeof (IntermediateTypeForTest))]
3506         [XmlInclude (typeof (SecondDerivedTypeForTest))]
3507         public abstract class AbstractTypeForTest
3508         {
3509         }
3510
3511         public class IntermediateTypeForTest : AbstractTypeForTest
3512         {
3513                 [XmlAttribute (AttributeName = "intermediate")]
3514                 public bool IntermediateMember { get; set; }
3515         }
3516
3517         public class FirstDerivedTypeForTest : AbstractTypeForTest
3518         {
3519                 public string FirstMember { get; set; }
3520         }
3521
3522         public class SecondDerivedTypeForTest : IntermediateTypeForTest
3523         {
3524                 public string SecondMember { get; set; }
3525         }
3526 #endregion
3527
3528 }