Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Bockover <abock@xamarin.com>2015-12-20 19:03:38 +0300
committerRodrigo Kumpera <kumpera@gmail.com>2016-01-14 23:24:11 +0300
commitb8ca425234e011df15f0ad000a0ea60d8eb8b64e (patch)
tree6e37e18461de2cb604a81d3ee863f72115de1e12
parent121891d92367147157f122eab6fce426931209d0 (diff)
XmlObjectSerialier: fix ISerializable (bxc#37171)
The shim/bridge between Mono and the RS implementation of XmlObjectSerializer, DataContractSerializer, etc. did not properly invoke the constructor required by ISerializable, as it completely omitted passing the populated SerializationInfo object. Fixes https://bugzilla.xamarin.com/show_bug.cgi?id=37171
-rw-r--r--mcs/class/System.Runtime.Serialization/ReferenceSources/XmlFormatReaderGenerator_static.cs4
-rw-r--r--mcs/class/System.Runtime.Serialization/System.Runtime.Serialization_test.dll.sources1
-rw-r--r--mcs/class/System.Runtime.Serialization/Test/System.Runtime.Serialization/DataContractSerializerTest_ISerializable.cs114
3 files changed, 117 insertions, 2 deletions
diff --git a/mcs/class/System.Runtime.Serialization/ReferenceSources/XmlFormatReaderGenerator_static.cs b/mcs/class/System.Runtime.Serialization/ReferenceSources/XmlFormatReaderGenerator_static.cs
index 8b81beca399..e22f68af423 100644
--- a/mcs/class/System.Runtime.Serialization/ReferenceSources/XmlFormatReaderGenerator_static.cs
+++ b/mcs/class/System.Runtime.Serialization/ReferenceSources/XmlFormatReaderGenerator_static.cs
@@ -181,8 +181,8 @@ namespace System.Runtime.Serialization
void ReadISerializable (ClassDataContract classContract)
{
ConstructorInfo ctor = classContract.GetISerializableConstructor ();
- context.ReadSerializationInfo (xmlReader, classContract.UnderlyingType);
- ctor.Invoke (objectLocal, new object [] {context.GetStreamingContext ()});
+ var info = context.ReadSerializationInfo (xmlReader, classContract.UnderlyingType);
+ ctor.Invoke (objectLocal, new object [] {info, context.GetStreamingContext ()});
}
void ReadClass (ClassDataContract classContract)
diff --git a/mcs/class/System.Runtime.Serialization/System.Runtime.Serialization_test.dll.sources b/mcs/class/System.Runtime.Serialization/System.Runtime.Serialization_test.dll.sources
index 5df6b308e7f..66f577c33a8 100644
--- a/mcs/class/System.Runtime.Serialization/System.Runtime.Serialization_test.dll.sources
+++ b/mcs/class/System.Runtime.Serialization/System.Runtime.Serialization_test.dll.sources
@@ -10,6 +10,7 @@ System.Runtime.Serialization/DataContractResolverTest.cs
System.Runtime.Serialization/DataContractSerializerTest_DuplicateQName.cs
System.Runtime.Serialization/DataContractSerializerTest_NullableWithDictionary.cs
System.Runtime.Serialization/DataContractSerializerTest_InvalidCharacters.cs
+System.Runtime.Serialization/DataContractSerializerTest_ISerializable.cs
System.Runtime.Serialization/DataContractSerializerTest.cs
System.Runtime.Serialization/KnownTypeAttributeTest.cs
System.Runtime.Serialization/XmlObjectSerializerTest.cs
diff --git a/mcs/class/System.Runtime.Serialization/Test/System.Runtime.Serialization/DataContractSerializerTest_ISerializable.cs b/mcs/class/System.Runtime.Serialization/Test/System.Runtime.Serialization/DataContractSerializerTest_ISerializable.cs
new file mode 100644
index 00000000000..59ff632c423
--- /dev/null
+++ b/mcs/class/System.Runtime.Serialization/Test/System.Runtime.Serialization/DataContractSerializerTest_ISerializable.cs
@@ -0,0 +1,114 @@
+//
+// DataContractSerializerTest_ISerializable.cs
+//
+// Author:
+// Aaron Bockover <abock@xamarin.com>
+//
+// Copyright 2015 Xamarin Inc. All rights reserved.
+//
+// Permission is hereby granted, free of charge, to any person obtaining
+// a copy of this software and associated documentation files (the
+// "Software"), to deal in the Software without restriction, including
+// without limitation the rights to use, copy, modify, merge, publish,
+// distribute, sublicense, and/or sell copies of the Software, and to
+// permit persons to whom the Software is furnished to do so, subject to
+// the following conditions:
+//
+// The above copyright notice and this permission notice shall be
+// included in all copies or substantial portions of the Software.
+//
+// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+// EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+// MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+// NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+// LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+using System;
+using System.IO;
+using System.Runtime.Serialization;
+using System.Xml;
+
+using NUnit.Framework;
+
+namespace MonoTests.System.Runtime.Serialization
+{
+ [TestFixture]
+ public class DataContractSerializerTest_ISerializable
+ {
+ [Serializable]
+ sealed class TestClassISerializable : ISerializable
+ {
+ public string Foo { get; }
+
+ public TestClassISerializable (string foo)
+ {
+ Foo = foo;
+ }
+
+ TestClassISerializable (SerializationInfo info, StreamingContext context)
+ {
+ Foo = info.GetString ("foo");
+ }
+
+ void ISerializable.GetObjectData (SerializationInfo info, StreamingContext context)
+ {
+ info.AddValue ("foo", Foo);
+ }
+ }
+
+ // Tests that the ISerializable constructor is properly invoked, which
+ // regressed when integrating MS Reference Source DCS, et. al.:
+ // https://bugzilla.xamarin.com/show_bug.cgi?id=37171
+ [Test]
+ public void TestISerializableCtor ()
+ {
+ var serializer = new DataContractSerializer (
+ typeof(TestClassISerializable),
+ new DataContractSerializerSettings {
+ DataContractResolver = new Resolver ()
+ }
+ );
+
+ var stream = new MemoryStream ();
+
+ var expected = new TestClassISerializable ("hello world");
+ serializer.WriteObject (stream, expected);
+
+ stream.Flush ();
+ stream.Position = 0;
+
+ var actual = (TestClassISerializable)serializer.ReadObject (stream);
+
+ Assert.AreEqual (expected.Foo, actual.Foo, "#DCS_ISer_Ctor");
+ }
+
+ // Resolver to force DCS to serialize any type, ensuring the ISerializable
+ // path will be taken for objects implementing that interface
+ class Resolver : DataContractResolver
+ {
+ public override Type ResolveName (string typeName, string typeNamespace,
+ Type declaredType, DataContractResolver knownTypeResolver)
+ {
+ return Type.GetType (typeNamespace == null
+ ? typeName
+ : typeNamespace + "." + typeName
+ );
+ }
+
+ public override bool TryResolveType (Type type, Type declaredType,
+ DataContractResolver knownTypeResolver,
+ out XmlDictionaryString typeName,
+ out XmlDictionaryString typeNamespace)
+ {
+ var name = type.FullName;
+ var namesp = type.Namespace;
+ name = name.Substring (type.Namespace.Length + 1);
+ typeName = new XmlDictionaryString (XmlDictionary.Empty, name, 0);
+ typeNamespace = new XmlDictionaryString (XmlDictionary.Empty, namesp, 0);
+ return true;
+ }
+ }
+ }
+}