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 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427
|
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Net.Http.Formatting;
using System.IO;
using System.Net.Http.Headers;
using System.Runtime.Serialization;
using Xunit;
namespace System.Net.Formatting.Tests
{
// Tests for ensuring the serializers behave consistently in various cases.
// This is important for conneg.
public class SerializerConsistencyTests
{
[Fact]
public void PartialContract()
{
var c = new PartialDataContract { PropertyWithAttribute = "one", PropertyWithoutAttribute = "false" };
SerializerConsistencyHepers.Test(c);
}
[Fact]
public void ClassWithFields()
{
var c1 = new ClassWithFields { Property = "prop" };
c1.SetField("field");
SerializerConsistencyHepers.Test(c1);
}
[Fact(Skip = "failing")]
public void ClassWithIenumerable()
{
var widget = new ClassWithIenumerable { Property = "something" };
SerializerConsistencyHepers.Test(widget); // XML fails to serialize
}
[Fact(Skip = "failing")]
public void ClassWithIenumerableAndDataContract()
{
var widget = new ClassWithIenumerable2 { Property = "something" };
SerializerConsistencyHepers.Test(widget); // XML fails to serialize
}
[Fact(Skip = "failing")]
public void TestAnonymousType()
{
var anonymous = new { X = 10, Y = 15 };
SerializerConsistencyHepers.Test(anonymous); // XML fails to write anonymous types
}
[Fact]
public void PrivateProperty()
{
var source2 = new PrivateProperty { FirstName = "John", LastName = "Smith" };
source2.SetItem("shoes");
SerializerConsistencyHepers.Test(source2);
}
[Fact]
public void NormalClass()
{
var source = new NormalClass { FirstName = "John", LastName = "Smith", Item = "Socks" };
SerializerConsistencyHepers.Test(source);
}
[Fact(Skip = "failing")]
public void DerivedProperties()
{
// If the static type is the base object, will we see the runtime type and pick derived properties
BaseClass source = new DerivedClass { Property = "base", DerivedProperty = "derived" };
source.SetField("private");
SerializerConsistencyHepers.Test(source, typeof(BaseClass));
}
[Fact]
public void InheritedProperties()
{
// Will we pick up inherited properties from a base object?
BaseClass source = new DerivedClass { Property = "base", DerivedProperty = "derived" };
source.SetField("private");
SerializerConsistencyHepers.Test(source, typeof(DerivedClass));
}
[Fact(Skip = "failing")]
public void NewPropertiesHideBaseClass()
{
DerivedClassWithNew source = new DerivedClassWithNew { Property = "derived" };
BaseClass baseClass = (BaseClass)source;
baseClass.Property = "base";
SerializerConsistencyHepers.Test(source, typeof(DerivedClassWithNew));
}
[Fact]
public void NullEmptyWhitespaceString()
{
NormalClass source = new NormalClass { FirstName = string.Empty, LastName = null, Item = " " };
SerializerConsistencyHepers.Test(source);
}
[Fact]
public void Dictionary()
{
var dict = new Dictionary<string, int>();
dict["one"] = 1;
dict["two"] = 2;
SerializerConsistencyHepers.Test(dict);
}
[Fact]
public void Array()
{
string[] array = new string[] { "First", "Second", "Last" };
SerializerConsistencyHepers.Test(array);
}
[Fact]
public void ArrayInterfaces()
{
string[] array = new string[] { "First", "Second", "Last" };
SerializerConsistencyHepers.Test(array, typeof(IList<string>));
SerializerConsistencyHepers.Test(array, typeof(ICollection<string>));
SerializerConsistencyHepers.Test(array, typeof(IEnumerable<string>));
}
[Fact(Skip = "failing")]
public void LinqDirect()
{
var l = from i in Enumerable.Range(1, 10) where i > 5 select i * i;
// Write as the derived runtime type, but then read back as just an IEnumerable.
SerializerConsistencyHepers.Test(l, tSourceWrite: l.GetType(), tSourceRead: typeof(IEnumerable<int>));
}
[Fact]
public void Linq()
{
var l = from i in Enumerable.Range(1, 10) where i > 5 select i * i;
// Runtime type of a linq expression is some derived Linq type which we can't deserialize to.
// So explicitly call out IEnumerable<T>
SerializerConsistencyHepers.Test(l, typeof(IEnumerable<int>));
}
[Fact]
public void StaticProps()
{
ClassWithStaticProperties source = new ClassWithStaticProperties();
SerializerConsistencyHepers.Test(source);
}
[Fact(Skip = "failing")]
public void ExplicitInterfaceProps()
{
ClassWithExplicitInterface source = new ClassWithExplicitInterface { PublicProp = "public" };
Interface1 i1 = source;
i1.Foo = "interface!";
SerializerConsistencyHepers.Test(source);
SerializerConsistencyHepers.Test(source, typeof(Interface1));
}
}
// public class, public properties
public class NormalClass
{
public string FirstName { get; set; }
public string LastName { get; set; }
public string Item { get; set; }
}
public class ClassWithStaticProperties
{
public string InstanceProp { get; set; }
public static string StaticProp
{
get
{
Assert.True(false, "serializers should never call static properties");
return string.Empty;
}
set
{
Assert.True(false, "serializers should never call static properties");
throw new InvalidOperationException(); // assert already threw
}
}
}
public interface Interface1
{
string Foo { get; set; }
}
public class ClassWithExplicitInterface : Interface1
{
private string _value;
public string PublicProp { get; set; }
string Interface1.Foo
{
get
{
return _value;
}
set
{
_value = value; ;
}
}
}
[DataContract]
public class PartialDataContract
{
[DataMember]
public string PropertyWithAttribute { get; set; }
// no attribute here
public string PropertyWithoutAttribute { get; set; }
}
public class PrivateProperty // with private field
{
public string FirstName { get; set; }
public string LastName { get; set; }
private string Item { get; set; }
public void SetItem(string item)
{
this.Item = item;
}
}
public class ClassWithFields
{
public string Property { get; set; }
private string Field;
public void SetField(string field)
{
this.Field = field;
}
}
public class BaseClass
{
private string PrivateField;
public string Property { get; set; }
public void SetField(string field)
{
PrivateField = field;
}
}
public class DerivedClass : BaseClass
{
public string DerivedProperty { get; set; }
}
public class DerivedClassWithNew : BaseClass
{
// shadows base class property
public new string Property { get; set; }
}
// Does a serializer see this implements IEnumerable? And does it treat it specially?
public class ClassWithIenumerable2 : IEnumerable<string>
{
public string Property { get; set; }
public IEnumerator<string> GetEnumerator()
{
return GetEnumeratorWorker();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumeratorWorker();
}
private IEnumerator<string> GetEnumeratorWorker()
{
string[] vals = new string[] { "First", "Second", "Third" };
IEnumerable<string> e = vals;
return e.GetEnumerator();
}
}
// Enumerable, decorated with [DataContract] attributes.
[DataContract]
public class ClassWithIenumerable : IEnumerable<string>
{
[DataMember]
public string Property { get; set; }
public IEnumerator<string> GetEnumerator()
{
return GetEnumeratorWorker();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return GetEnumeratorWorker();
}
private IEnumerator<string> GetEnumeratorWorker()
{
string[] vals = new string[] { "First", "Second", "Third" };
IEnumerable<string> e = vals;
return e.GetEnumerator();
}
}
// Helpers for performing consistency checks with the serializers.
class SerializerConsistencyHepers
{
// Exercise the various serialization paths to verify that the default serializers behave consistently.
public static void Test(object source)
{
Type tSource = source.GetType();
Test(source, tSource);
}
// Allow explicitly passing in the type that gets passed to the serializer.
// The expectation is that the type can be read and written with both serializers.
public static void Test(object source, Type tSource)
{
Test(source, tSource, tSource);
}
// tSourceWrite - the type we use for the initial write. This can be specific, and a 1-way serializable type (eg, a linq expression).
// tSourceRead - the type that we read back as. This should be more general because we need to instantiate it.
public static void Test(object source, Type tSourceWrite, Type tSourceRead)
{
// Apply consistency chceks. This interleaves the results between the formatters.
// It doesn't actually matter specifically what the formatter does, it just matters that they're consistent.
// This will test various transitions between C#->JSON, JSON->C#, C#->XML, and XML->C#.
// We can't compare C# objects, but we can compare the textual representation from XML and JSON.
MediaTypeFormatter xmlFormatter = new MediaTypeFormatterCollection().XmlFormatter;
MediaTypeFormatter jsonFor = new MediaTypeFormatterCollection().JsonFormatter;
MemoryStream blobJson = Write(source, tSourceWrite, jsonFor); // C# --> JSON
MemoryStream blobXml = Write(source, tSourceWrite, xmlFormatter); // C# --> XML
object obj2 = Read(blobJson, tSourceRead, jsonFor); // C# --> JSON --> C#
object obj1 = Read(blobXml, tSourceRead, xmlFormatter); // C# --> XML --> C#
// We were able to round trip the source object through both formatters.
// Now see if the resulting object is the same.
// Check C# --> XML --> C#
var blobXml2 = Write(obj1, tSourceRead, xmlFormatter); // C# --> XML --> C# --> XML
var blobJson2 = Write(obj1, tSourceRead, jsonFor); // C# --> XML --> C# --> JSON
// Ensure that C#->XMl and C#->XML->C#->XML give us the same result..
Compare(blobXml, blobXml2);
// Ensure that C#->Json and C#->XML->C#->Json give us the same result
Compare(blobJson, blobJson2);
// Check C# --> JSON --> C#
var blobXml3 = Write(obj2, tSourceRead, xmlFormatter); // C# --> JSON --> C# --> XML
var blobJson3 = Write(obj2, tSourceRead, jsonFor); // C# --> JSON --> C# --> JSON
// Ensure that C#->XML and C#->JSON->C#->XML are the same
Compare(blobXml, blobXml3);
// Ensure that C#->JSon and C#->JSON->C#->JSON are the same.
Compare(blobJson, blobJson3);
}
// Compare if 2 streams have the same contents.
private static void Compare(MemoryStream ms1, MemoryStream ms2)
{
string s1 = ToString(ms1);
string s2 = ToString(ms2);
Assert.Equal(s1, s2);
}
// Given a memory stream (which is representing a textual serialization format), get the string.
private static string ToString(MemoryStream ms)
{
byte[] b = ms.GetBuffer();
return System.Text.Encoding.UTF8.GetString(b, 0, (int)ms.Length);
}
private static object Read(MemoryStream ms, Type tSource, MediaTypeFormatter formatter)
{
bool f = formatter.CanReadType(tSource);
Assert.True(f);
object o = formatter.ReadFromStreamAsync(tSource, ms, contentHeaders : null, formatterLogger : null).Result;
Assert.True(tSource.IsAssignableFrom(o.GetType()));
return o;
}
private static MemoryStream Write(object obj, Type tSource, MediaTypeFormatter formatter)
{
bool f = formatter.CanWriteType(tSource);
Assert.True(f);
MemoryStream ms = new MemoryStream();
formatter.WriteToStreamAsync(tSource, obj, ms, contentHeaders:null, transportContext: null).Wait();
ms.Position = 0;
return ms;
}
}
}
|