From dba4e783fe02b7dec5ca2eb08e9c64cb05785938 Mon Sep 17 00:00:00 2001 From: JamesNK Date: Fri, 5 Mar 2010 09:20:29 +0000 Subject: -Build -Tests --- .../Utilities/LateBoundDelegateFactoryTests.cs | 94 ++++++++++++++++++++++ 1 file changed, 94 insertions(+) create mode 100644 Src/Newtonsoft.Json.Tests/Utilities/LateBoundDelegateFactoryTests.cs (limited to 'Src/Newtonsoft.Json.Tests/Utilities') diff --git a/Src/Newtonsoft.Json.Tests/Utilities/LateBoundDelegateFactoryTests.cs b/Src/Newtonsoft.Json.Tests/Utilities/LateBoundDelegateFactoryTests.cs new file mode 100644 index 0000000..5309065 --- /dev/null +++ b/Src/Newtonsoft.Json.Tests/Utilities/LateBoundDelegateFactoryTests.cs @@ -0,0 +1,94 @@ +#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 + +#if !PocketPC && !SILVERLIGHT +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using NUnit.Framework; +using Newtonsoft.Json.Utilities; +using Newtonsoft.Json.Tests.TestObjects; + +namespace Newtonsoft.Json.Tests.Utilities +{ + public class LateBoundDelegateFactoryTests : TestFixtureBase + { + [Test] + [ExpectedException(typeof(InvalidCastException), ExpectedMessage = "Unable to cast object of type 'Newtonsoft.Json.Tests.TestObjects.Person' to type 'Newtonsoft.Json.Tests.TestObjects.Movie'.")] + public void CreateGetWithBadObjectTarget() + { + Person p = new Person(); + p.Name = "Hi"; + + Func setter = LateBoundDelegateFactory.CreateGet(typeof(Movie).GetProperty("Name")); + + setter(p); + } + + [Test] + [ExpectedException(typeof(InvalidCastException), ExpectedMessage = "Unable to cast object of type 'Newtonsoft.Json.Tests.TestObjects.Person' to type 'Newtonsoft.Json.Tests.TestObjects.Movie'.")] + public void CreateSetWithBadObjectTarget() + { + Person p = new Person(); + Movie m = new Movie(); + + Action setter = LateBoundDelegateFactory.CreateSet(typeof(Movie).GetProperty("Name")); + + setter(m, "Hi"); + + Assert.AreEqual(m.Name, "Hi"); + + setter(p, "Hi"); + } + + [Test] + [ExpectedException(typeof(InvalidCastException), ExpectedMessage = "Specified cast is not valid.")] + public void CreateSetWithBadTarget() + { + object structTest = new StructTest(); + + Action setter = LateBoundDelegateFactory.CreateSet(typeof(StructTest).GetProperty("StringProperty")); + + setter(structTest, "Hi"); + + Assert.AreEqual("Hi", ((StructTest)structTest).StringProperty); + + setter(new TimeSpan(), "Hi"); + } + + [Test] + [ExpectedException(typeof(InvalidCastException), ExpectedMessage = "Unable to cast object of type 'System.Version' to type 'System.String'.")] + public void CreateSetWithBadObjectValue() + { + Movie m = new Movie(); + + Action setter = LateBoundDelegateFactory.CreateSet(typeof(Movie).GetProperty("Name")); + + setter(m, new Version()); + } + } +} +#endif \ No newline at end of file -- cgit v1.2.3