[NUI] Rebase develnui (DevelNUI only patches --> master) (#3910)
[platform/core/csapi/tizenfx.git] / test / Tizen.NUI.Devel.Tests.Ubuntu / nunit.framework / Constraints / XmlSerializableConstraint.cs
1 // ***********************************************************************
2 // Copyright (c) 2008 Charlie Poole
3 //
4 // Permission is hereby granted, free of charge, to any person obtaining
5 // a copy of this software and associated documentation files (the
6 // "Software"), to deal in the Software without restriction, including
7 // without limitation the rights to use, copy, modify, merge, publish,
8 // distribute, sublicense, and/or sell copies of the Software, and to
9 // permit persons to whom the Software is furnished to do so, subject to
10 // the following conditions:
11 // 
12 // The above copyright notice and this permission notice shall be
13 // included in all copies or substantial portions of the Software.
14 // 
15 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
19 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
20 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
21 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 // ***********************************************************************
23 #define PORTABLE
24 #define TIZEN
25 #define NUNIT_FRAMEWORK
26 #define NUNITLITE
27 #define NET_4_5
28 #define PARALLEL
29 #if !SILVERLIGHT && !PORTABLE
30 using System;
31 using System.IO;
32 using System.Xml.Serialization;
33
34 namespace NUnit.Framework.Constraints
35 {
36     /// <summary>
37     /// XmlSerializableConstraint tests whether 
38     /// an object is serializable in xml format.
39     /// </summary>
40     public class XmlSerializableConstraint : Constraint
41     {
42         private XmlSerializer serializer;
43
44         /// <summary>
45         /// Gets text describing a constraint
46         /// </summary>
47         public override string Description
48         {
49             get { return "xml serializable"; }
50         }
51
52         /// <summary>
53         /// Test whether the constraint is satisfied by a given value
54         /// </summary>
55         /// <param name="actual">The value to be tested</param>
56         /// <returns>True for success, false for failure</returns>
57         public override ConstraintResult ApplyTo<TActual>(TActual actual)
58         {
59             if(actual == null)
60                 throw new ArgumentNullException("actual");
61
62             MemoryStream stream = new MemoryStream();
63
64             bool succeeded = false;
65
66             try
67             {
68                 serializer = new XmlSerializer(actual.GetType());
69
70                 serializer.Serialize(stream, actual);
71
72                 stream.Seek(0, SeekOrigin.Begin);
73
74                 succeeded = serializer.Deserialize(stream) != null;
75             }
76             catch (NotSupportedException)
77             {
78                 // Ignore and return failure
79             }
80             catch (InvalidOperationException)
81             {
82                 // Ignore and return failure
83             }
84
85             return new ConstraintResult(this, actual.GetType(), succeeded);
86         }
87
88         /// <summary>
89         /// Returns the string representation of this constraint
90         /// </summary>
91         protected override string GetStringRepresentation()
92         {
93             return "<xmlserializable>";
94         }
95     }
96 }
97 #endif