#region CPL License /* Nuclex Framework Copyright (C) 2002-2010 Nuclex Development Labs This library is free software; you can redistribute it and/or modify it under the terms of the IBM Common Public License as published by the IBM Corporation; either version 1.0 of the License, or (at your option) any later version. This library is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the IBM Common Public License for more details. You should have received a copy of the IBM Common Public License along with this library */ #endregion #if UNITTEST using System; using System.Collections.Generic; using NUnit.Framework; namespace Nuclex.Support.Cloning { /// Unit Test for the reflection-based cloner [TestFixture] internal class ReflectionClonerTest : CloneFactoryTest { /// Initializes a new unit test suite for the reflection cloner public ReflectionClonerTest() { this.cloneFactory = new ReflectionCloner(); } /// Verifies that cloning a null object simply returns null [Test] public void CloningNullYieldsNull() { Assert.IsNull(this.cloneFactory.DeepFieldClone(null)); Assert.IsNull(this.cloneFactory.DeepPropertyClone(null)); Assert.IsNull(this.cloneFactory.ShallowFieldClone(null)); Assert.IsNull(this.cloneFactory.ShallowPropertyClone(null)); } /// Verifies that clones of primitive types can be created [Test] public void PrimitiveTypesCanBeCloned() { int original = 12345; int clone = this.cloneFactory.ShallowFieldClone(original); Assert.AreEqual(original, clone); } /// Verifies that shallow clones of arrays can be made [Test] public void ShallowClonesOfArraysCanBeMade() { var original = new TestReferenceType[] { new TestReferenceType() { TestField = 123, TestProperty = 456 } }; TestReferenceType[] clone = this.cloneFactory.ShallowFieldClone(original); Assert.AreSame(original[0], clone[0]); } /// Verifies that deep clones of arrays can be made [Test] public void DeepClonesOfArraysCanBeMade() { var original = new TestReferenceType[] { new TestReferenceType() { TestField = 123, TestProperty = 456 } }; TestReferenceType[] clone = this.cloneFactory.DeepFieldClone(original); Assert.AreNotSame(original[0], clone[0]); Assert.AreEqual(original[0].TestField, clone[0].TestField); Assert.AreEqual(original[0].TestProperty, clone[0].TestProperty); } /// Verifies that deep clones of a generic list can be made [Test] public void GenericListsCanBeCloned() { var original = new List(new int[] { 1, 2, 3, 4, 5, 6, 7, 8, 9 }); List clone = this.cloneFactory.DeepFieldClone(original); CollectionAssert.AreEqual(original, clone); } /// Verifies that deep clones of a generic dictionary can be made [Test] public void GenericDictionariesCanBeCloned() { var original = new Dictionary(); original.Add(1, "one"); Dictionary clone = this.cloneFactory.DeepFieldClone(original); Assert.AreEqual("one", clone[1]); } /// /// Verifies that a field-based shallow clone of a value type can be performed /// [Test] public void ShallowFieldBasedClonesOfValueTypesCanBeMade() { HierarchicalValueType original = CreateValueType(); HierarchicalValueType clone = this.cloneFactory.ShallowFieldClone(original); VerifyClone(ref original, ref clone, isDeepClone: false, isPropertyBasedClone: false); } /// /// Verifies that a field-based shallow clone of a reference type can be performed /// [Test] public void ShallowFieldBasedClonesOfReferenceTypesCanBeMade() { HierarchicalReferenceType original = CreateReferenceType(); HierarchicalReferenceType clone = this.cloneFactory.ShallowFieldClone(original); VerifyClone(original, clone, isDeepClone: false, isPropertyBasedClone: false); } /// /// Verifies that a field-based deep clone of a value type can be performed /// [Test] public void DeepFieldBasedClonesOfValueTypesCanBeMade() { HierarchicalValueType original = CreateValueType(); HierarchicalValueType clone = this.cloneFactory.DeepFieldClone(original); VerifyClone(ref original, ref clone, isDeepClone: true, isPropertyBasedClone: false); } /// /// Verifies that a field-based deep clone of a reference type can be performed /// [Test] public void DeepFieldBasedClonesOfReferenceTypesCanBeMade() { HierarchicalReferenceType original = CreateReferenceType(); HierarchicalReferenceType clone = this.cloneFactory.DeepFieldClone(original); VerifyClone(original, clone, isDeepClone: true, isPropertyBasedClone: false); } /// /// Verifies that a property-based shallow clone of a value type can be performed /// [Test] public void ShallowPropertyBasedClonesOfValueTypesCanBeMade() { HierarchicalValueType original = CreateValueType(); HierarchicalValueType clone = this.cloneFactory.ShallowPropertyClone(original); VerifyClone(ref original, ref clone, isDeepClone: false, isPropertyBasedClone: true); } /// /// Verifies that a property-based shallow clone of a reference type can be performed /// [Test] public void ShallowPropertyBasedClonesOfReferenceTypesCanBeMade() { HierarchicalReferenceType original = CreateReferenceType(); HierarchicalReferenceType clone = this.cloneFactory.ShallowPropertyClone(original); VerifyClone(original, clone, isDeepClone: false, isPropertyBasedClone: true); } /// /// Verifies that a property-based deep clone of a value type can be performed /// [Test] public void DeepPropertyBasedClonesOfValueTypesCanBeMade() { HierarchicalValueType original = CreateValueType(); HierarchicalValueType clone = this.cloneFactory.DeepPropertyClone(original); VerifyClone(ref original, ref clone, isDeepClone: true, isPropertyBasedClone: true); } /// /// Verifies that a property-based deep clone of a reference type can be performed /// [Test] public void DeepPropertyBasedClonesOfReferenceTypesCanBeMade() { HierarchicalReferenceType original = CreateReferenceType(); HierarchicalReferenceType clone = this.cloneFactory.DeepPropertyClone(original); VerifyClone(original, clone, isDeepClone: true, isPropertyBasedClone: true); } /// Clone factory being tested private ICloneFactory cloneFactory; } } // namespace Nuclex.Support.Cloning #endif // UNITTEST