[6889] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[7259] | 3 | * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[6889] | 4 | *
|
---|
| 5 | * This file is part of HeuristicLab.
|
---|
| 6 | *
|
---|
| 7 | * HeuristicLab is free software: you can redistribute it and/or modify
|
---|
| 8 | * it under the terms of the GNU General Public License as published by
|
---|
| 9 | * the Free Software Foundation, either version 3 of the License, or
|
---|
| 10 | * (at your option) any later version.
|
---|
| 11 | *
|
---|
| 12 | * HeuristicLab is distributed in the hope that it will be useful,
|
---|
| 13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
| 15 | * GNU General Public License for more details.
|
---|
| 16 | *
|
---|
| 17 | * You should have received a copy of the GNU General Public License
|
---|
| 18 | * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 19 | */
|
---|
| 20 | #endregion
|
---|
| 21 |
|
---|
| 22 | using System;
|
---|
| 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
| 26 | using HeuristicLab.Core;
|
---|
| 27 | using HeuristicLab.Optimization;
|
---|
| 28 | using HeuristicLab.Persistence.Default.Xml;
|
---|
| 29 | using HeuristicLab.PluginInfrastructure;
|
---|
| 30 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
| 31 |
|
---|
| 32 | namespace HeuristicLab_33.Tests {
|
---|
| 33 | /// <summary>
|
---|
| 34 | /// Summary description for DeepCloneableCloningTest
|
---|
| 35 | /// </summary>
|
---|
| 36 | [TestClass]
|
---|
| 37 | public class DeepCloneableCloningTest {
|
---|
| 38 |
|
---|
[6921] | 39 | [ClassInitialize]
|
---|
| 40 | public static void MyClassInitialize(TestContext testContext) {
|
---|
| 41 | PluginLoader.Assemblies.Any();
|
---|
| 42 | }
|
---|
| 43 |
|
---|
[6889] | 44 | public DeepCloneableCloningTest() {
|
---|
| 45 | excludedTypes = new HashSet<Type>();
|
---|
| 46 | excludedTypes.Add(typeof(HeuristicLab.Problems.DataAnalysis.Dataset));
|
---|
| 47 | excludedTypes.Add(typeof(HeuristicLab.Problems.TravelingSalesman.DistanceMatrix));
|
---|
| 48 | excludedTypes.Add(typeof(HeuristicLab.Problems.DataAnalysis.ClassificationEnsembleSolution));
|
---|
| 49 | excludedTypes.Add(typeof(HeuristicLab.Problems.DataAnalysis.RegressionEnsembleSolution));
|
---|
[6921] | 50 |
|
---|
| 51 | foreach (var symbolType in ApplicationManager.Manager.GetTypes(typeof(HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.Symbol)))
|
---|
| 52 | excludedTypes.Add(symbolType);
|
---|
| 53 | foreach (var grammarType in ApplicationManager.Manager.GetTypes(typeof(HeuristicLab.Encodings.SymbolicExpressionTreeEncoding.SymbolicExpressionGrammarBase)))
|
---|
| 54 | excludedTypes.Add(grammarType);
|
---|
[6889] | 55 | }
|
---|
| 56 |
|
---|
| 57 | private TestContext testContextInstance;
|
---|
| 58 | private readonly HashSet<Type> excludedTypes;
|
---|
| 59 |
|
---|
| 60 | /// <summary>
|
---|
| 61 | ///Gets or sets the test context which provides
|
---|
| 62 | ///information about and functionality for the current test run.
|
---|
| 63 | ///</summary>
|
---|
| 64 | public TestContext TestContext {
|
---|
| 65 | get {
|
---|
| 66 | return testContextInstance;
|
---|
| 67 | }
|
---|
| 68 | set {
|
---|
| 69 | testContextInstance = value;
|
---|
| 70 | }
|
---|
| 71 | }
|
---|
| 72 |
|
---|
| 73 | #region Additional test attributes
|
---|
| 74 | //
|
---|
| 75 | // You can use the following additional attributes as you write your tests:
|
---|
| 76 | //
|
---|
| 77 | // Use ClassInitialize to run code before running the first test in the class
|
---|
| 78 | // [ClassInitialize()]
|
---|
| 79 | // public static void MyClassInitialize(TestContext testContext) { }
|
---|
| 80 | //
|
---|
| 81 | // Use ClassCleanup to run code after all tests in a class have run
|
---|
| 82 | // [ClassCleanup()]
|
---|
| 83 | // public static void MyClassCleanup() { }
|
---|
| 84 | //
|
---|
| 85 | // Use TestInitialize to run code before running each test
|
---|
| 86 | // [TestInitialize()]
|
---|
| 87 | // public void MyTestInitialize() { }
|
---|
| 88 | //
|
---|
| 89 | // Use TestCleanup to run code after each test has run
|
---|
| 90 | // [TestCleanup()]
|
---|
| 91 | // public void MyTestCleanup() { }
|
---|
| 92 | //
|
---|
| 93 | #endregion
|
---|
| 94 |
|
---|
| 95 | [TestMethod]
|
---|
[6915] | 96 | [DeploymentItem(@"HeuristicLab-3.3\Resources\SamplesExperimentFinished.hl")]
|
---|
[6889] | 97 | public void TestCloningFinishedExperiment() {
|
---|
| 98 | Experiment experiment = (Experiment)XmlParser.Deserialize("SamplesExperimentFinished.hl");
|
---|
| 99 |
|
---|
| 100 | Experiment clone = (Experiment)experiment.Clone(new Cloner());
|
---|
| 101 | var intersections = CheckTotalInequality(experiment, clone).Where(x => x.GetType().FullName.StartsWith("HeuristicLab"));
|
---|
| 102 |
|
---|
| 103 | Assert.IsTrue(ProcessEqualObjects(experiment, intersections));
|
---|
| 104 | }
|
---|
| 105 |
|
---|
| 106 | [TestMethod]
|
---|
| 107 | public void TestCloningAllDeepCloneables() {
|
---|
| 108 | PluginLoader.Assemblies.ToArray();
|
---|
| 109 | bool success = true;
|
---|
| 110 | foreach (Type deepCloneableType in ApplicationManager.Manager.GetTypes(typeof(IDeepCloneable))) {
|
---|
| 111 | // skip types that explicitely choose not to deep-clone every member
|
---|
| 112 | if (excludedTypes.Contains(deepCloneableType)) continue;
|
---|
| 113 | // test only types contained in HL plugin assemblies
|
---|
| 114 | if (!PluginLoader.Assemblies.Contains(deepCloneableType.Assembly)) continue;
|
---|
| 115 | // test only instantiable types
|
---|
| 116 | if (deepCloneableType.IsAbstract || !deepCloneableType.IsClass) continue;
|
---|
| 117 |
|
---|
| 118 | IDeepCloneable item = null;
|
---|
| 119 | try {
|
---|
| 120 | item = (IDeepCloneable)Activator.CreateInstance(deepCloneableType, nonPublic: false);
|
---|
[6921] | 121 | }
|
---|
| 122 | catch { continue; } // no default constructor
|
---|
[6889] | 123 |
|
---|
[8046] | 124 | IDeepCloneable clone = null;
|
---|
| 125 | try {
|
---|
| 126 | clone = (IDeepCloneable)item.Clone(new Cloner());
|
---|
| 127 | } catch (Exception e) {
|
---|
[8052] | 128 | TestContext.WriteLine(Environment.NewLine + deepCloneableType.FullName + ":");
|
---|
| 129 | TestContext.WriteLine("ERROR! " + e.GetType().Name + @" was thrown during cloning.
|
---|
| 130 | All IDeepCloneable items with a default constructor should be cloneable when using that constructor!");
|
---|
[8046] | 131 | success = false;
|
---|
| 132 | continue;
|
---|
| 133 | }
|
---|
[6889] | 134 | var intersections = CheckTotalInequality(item, clone).Where(x => x.GetType().FullName.StartsWith("HeuristicLab"));
|
---|
| 135 | if (!intersections.Any()) continue;
|
---|
| 136 |
|
---|
| 137 | if (!ProcessEqualObjects(item, intersections))
|
---|
| 138 | success = false;
|
---|
| 139 | }
|
---|
| 140 | Assert.IsTrue(success, "There are potential errors in deep cloning objects.");
|
---|
| 141 | }
|
---|
| 142 |
|
---|
| 143 | private IEnumerable<object> CheckTotalInequality(object original, object clone) {
|
---|
[7467] | 144 | var originalObjects = new HashSet<object>(original.GetObjectGraphObjects(excludeStaticMembers: true).Where(x => !x.GetType().IsValueType), new ReferenceEqualityComparer());
|
---|
| 145 | var clonedObjects = new HashSet<object>(clone.GetObjectGraphObjects(excludeStaticMembers: true).Where(x => !x.GetType().IsValueType), new ReferenceEqualityComparer());
|
---|
[6889] | 146 |
|
---|
| 147 | return originalObjects.Intersect(clonedObjects);
|
---|
| 148 | }
|
---|
| 149 |
|
---|
| 150 | private bool ProcessEqualObjects(IDeepCloneable item, IEnumerable<object> intersections) {
|
---|
| 151 | bool success = true;
|
---|
| 152 | TestContext.WriteLine(Environment.NewLine + item.GetType().FullName + ":");
|
---|
| 153 | foreach (object o in intersections) {
|
---|
| 154 | string typeName = o.GetType().FullName;
|
---|
| 155 | if (excludedTypes.Contains(o.GetType())) {
|
---|
[6921] | 156 | //TestContext.WriteLine("Skipping excluded type " + typeName);
|
---|
[6889] | 157 | } else if (o is IDeepCloneable) {
|
---|
| 158 | string info = (o is IItem) ? ((IItem)o).ItemName + ((o is INamedItem) ? ", " + ((INamedItem)o).Name : String.Empty) : String.Empty;
|
---|
| 159 | TestContext.WriteLine("POTENTIAL ERROR! A DEEPCLONEABLE WAS NOT DEEP CLONED (" + info + "): " + typeName);
|
---|
| 160 | success = false;
|
---|
| 161 | } else
|
---|
| 162 | TestContext.WriteLine("WARNING: An object of type " + typeName + " is referenced in the original and in the clone.");
|
---|
| 163 | }
|
---|
| 164 | return success;
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
| 167 | }
|
---|