#region License // Copyright (c) 2007 James Newton-King // // 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. #endregion using System; using System.Collections.Generic; using System.ComponentModel; using System.Reflection; using Newtonsoft.Json.Serialization; using Newtonsoft.Json.Tests.TestObjects; #if DNXCORE50 using Xunit; using Test = Xunit.FactAttribute; using Assert = Newtonsoft.Json.Tests.XUnitAssert; #else using NUnit.Framework; #endif #if NET20 using Newtonsoft.Json.Utilities.LinqBridge; #else using System.Linq; #endif namespace Newtonsoft.Json.Tests.Serialization { [TestFixture] public class ConstructorHandlingTests : TestFixtureBase { [Test] public void UsePrivateConstructorIfThereAreMultipleConstructorsWithParametersAndNothingToFallbackTo() { string json = @"{Name:""Name!""}"; var c = JsonConvert.DeserializeObject(json); Assert.AreEqual("Name!", c.Name); } [Test] public void SuccessWithPrivateConstructorAndAllowNonPublic() { string json = @"{Name:""Name!""}"; PrivateConstructorTestClass c = JsonConvert.DeserializeObject(json, new JsonSerializerSettings { ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor }); Assert.IsNotNull(c); Assert.AreEqual("Name!", c.Name); } [Test] public void FailWithPrivateConstructorPlusParameterizedAndDefault() { ExceptionAssert.Throws(() => { string json = @"{Name:""Name!""}"; PrivateConstructorWithPublicParameterizedConstructorTestClass c = JsonConvert.DeserializeObject(json); }); } [Test] public void SuccessWithPrivateConstructorPlusParameterizedAndAllowNonPublic() { string json = @"{Name:""Name!""}"; PrivateConstructorWithPublicParameterizedConstructorTestClass c = JsonConvert.DeserializeObject(json, new JsonSerializerSettings { ConstructorHandling = ConstructorHandling.AllowNonPublicDefaultConstructor }); Assert.IsNotNull(c); Assert.AreEqual("Name!", c.Name); Assert.AreEqual(1, c.Age); } [Test] public void SuccessWithPublicParameterizedConstructor() { string json = @"{Name:""Name!""}"; var c = JsonConvert.DeserializeObject(json); Assert.IsNotNull(c); Assert.AreEqual("Name!", c.Name); } [Test] public void SuccessWithPublicParameterizedConstructorWhenParameterIsNotAProperty() { string json = @"{nameParameter:""Name!""}"; PublicParameterizedConstructorWithNonPropertyParameterTestClass c = JsonConvert.DeserializeObject(json); Assert.IsNotNull(c); Assert.AreEqual("Name!", c.Name); } [Test] public void SuccessWithPublicParameterizedConstructorWhenParameterRequiresAConverter() { string json = @"{nameParameter:""Name!""}"; PublicParameterizedConstructorRequiringConverterTestClass c = JsonConvert.DeserializeObject(json, new NameContainerConverter()); Assert.IsNotNull(c); Assert.AreEqual("Name!", c.Name.Value); } [Test] public void SuccessWithPublicParameterizedConstructorWhenParameterRequiresAConverterWithParameterAttribute() { string json = @"{nameParameter:""Name!""}"; PublicParameterizedConstructorRequiringConverterWithParameterAttributeTestClass c = JsonConvert.DeserializeObject(json); Assert.IsNotNull(c); Assert.AreEqual("Name!", c.Name.Value); } [Test] public void SuccessWithPublicParameterizedConstructorWhenParameterRequiresAConverterWithPropertyAttribute() { string json = @"{name:""Name!""}"; PublicParameterizedConstructorRequiringConverterWithPropertyAttributeTestClass c = JsonConvert.DeserializeObject(json); Assert.IsNotNull(c); Assert.AreEqual("Name!", c.Name.Value); } [Test] public void SuccessWithPublicParameterizedConstructorWhenParameterNameConflictsWithPropertyName() { string json = @"{name:""1""}"; PublicParameterizedConstructorWithPropertyNameConflict c = JsonConvert.DeserializeObject(json); Assert.IsNotNull(c); Assert.AreEqual(1, c.Name); } [Test] public void PublicParameterizedConstructorWithPropertyNameConflictWithAttribute() { string json = @"{name:""1""}"; PublicParameterizedConstructorWithPropertyNameConflictWithAttribute c = JsonConvert.DeserializeObject(json); Assert.IsNotNull(c); Assert.AreEqual(1, c.Name); } public class ConstructorParametersRespectDefaultValueAttributes { [DefaultValue("parameter1_default")] public string Parameter1 { get; private set; } [DefaultValue("parameter2_default")] public string Parameter2 { get; private set; } [DefaultValue("parameter3_default")] public string Parameter3 { get; set; } [DefaultValue("parameter4_default")] public string Parameter4 { get; set; } public ConstructorParametersRespectDefaultValueAttributes(string parameter1, string parameter2, string parameter3) { Parameter1 = parameter1; Parameter2 = parameter2; Parameter3 = parameter3; } } [Test] public void ConstructorParametersRespectDefaultValueTest_Attrbutes() { var testObject = JsonConvert.DeserializeObject("{'Parameter2':'value!'}", new JsonSerializerSettings() { DefaultValueHandling = DefaultValueHandling.Populate }); Assert.AreEqual("parameter1_default", testObject.Parameter1); Assert.AreEqual("value!", testObject.Parameter2); Assert.AreEqual("parameter3_default", testObject.Parameter3); Assert.AreEqual("parameter4_default", testObject.Parameter4); } [Test] public void ConstructorParametersRespectDefaultValueTest() { var testObject = JsonConvert.DeserializeObject("{}", new JsonSerializerSettings() { ContractResolver = ConstructorParameterDefaultStringValueContractResolver.Instance }); Assert.AreEqual("Default Value", testObject.Parameter1); Assert.AreEqual("Default Value", testObject.Parameter2); } public class ConstructorParametersRespectDefaultValue { public const string DefaultValue = "Default Value"; public string Parameter1 { get; private set; } public string Parameter2 { get; private set; } public ConstructorParametersRespectDefaultValue(string parameter1, string parameter2) { Parameter1 = parameter1; Parameter2 = parameter2; } } public class ConstructorParameterDefaultStringValueContractResolver : DefaultContractResolver { public static new ConstructorParameterDefaultStringValueContractResolver Instance = new ConstructorParameterDefaultStringValueContractResolver(); protected override IList CreateProperties(Type type, MemberSerialization memberSerialization) { var properties = base.CreateProperties(type, memberSerialization); foreach (var property in properties.Where(p => p.PropertyType == typeof(string))) { property.DefaultValue = ConstructorParametersRespectDefaultValue.DefaultValue; property.DefaultValueHandling = DefaultValueHandling.Populate; } return properties; } } } }