This repository has been archived by the owner on Aug 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 26
/
XmlSerializableConstraint.cs
86 lines (73 loc) · 2.68 KB
/
XmlSerializableConstraint.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
// ****************************************************************
// Copyright 2008, Charlie Poole
// This is free software licensed under the NUnit license. You may
// obtain a copy of the license at http://nunit.org
// ****************************************************************
using System;
using System.IO;
using System.Xml.Serialization;
namespace NUnit.Framework.Constraints
{
/// <summary>
/// XmlSerializableConstraint tests whether
/// an object is serializable in XML format.
/// </summary>
public class XmlSerializableConstraint : Constraint
{
private XmlSerializer serializer;
/// <summary>
/// Test whether the constraint is satisfied by a given value
/// </summary>
/// <param name="actual">The value to be tested</param>
/// <returns>True for success, false for failure</returns>
public override bool Matches(object actual)
{
this.actual = actual;
if (actual == null)
throw new ArgumentException();
MemoryStream stream = new MemoryStream();
try
{
serializer = new XmlSerializer(actual.GetType());
serializer.Serialize(stream, actual);
stream.Seek(0, SeekOrigin.Begin);
object value = serializer.Deserialize(stream);
return value != null;
}
catch (NotSupportedException)
{
return false;
}
catch (InvalidOperationException)
{
return false;
}
}
/// <summary>
/// Write the constraint description to a MessageWriter
/// </summary>
/// <param name="writer">The writer on which the description is displayed</param>
public override void WriteDescriptionTo(MessageWriter writer)
{
writer.Write("xml serializable");
}
/// <summary>
/// Write the actual value for a failing constraint test to a
/// MessageWriter. The default implementation simply writes
/// the raw value of actual, leaving it to the writer to
/// perform any formatting.
/// </summary>
/// <param name="writer">The writer on which the actual value is displayed</param>
public override void WriteActualValueTo(MessageWriter writer)
{
writer.Write("<{0}>", actual.GetType().Name);
}
/// <summary>
/// Returns the string representation of this constraint
/// </summary>
protected override string GetStringRepresentation()
{
return "<xmlserializable>";
}
}
}