[4490] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[9456] | 3 | * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[4490] | 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;
|
---|
[7947] | 24 | using System.IO;
|
---|
[4490] | 25 | using System.Linq;
|
---|
| 26 | using System.Reflection;
|
---|
| 27 | using System.Text;
|
---|
| 28 | using HeuristicLab.PluginInfrastructure;
|
---|
| 29 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
| 30 |
|
---|
[9764] | 31 | namespace HeuristicLab.Tests {
|
---|
[4490] | 32 | [TestClass]
|
---|
| 33 | public class PluginDependenciesTest {
|
---|
| 34 | private static Dictionary<Assembly, Type> loadedPlugins;
|
---|
| 35 | private static Dictionary<string, string> pluginNames;
|
---|
[7947] | 36 | private static Dictionary<string, Assembly> pluginFilesToPluginLookup = new Dictionary<string, Assembly>();
|
---|
[4490] | 37 |
|
---|
| 38 | // Use ClassInitialize to run code before running the first test in the class
|
---|
| 39 | [ClassInitialize]
|
---|
| 40 | public static void MyClassInitialize(TestContext testContext) {
|
---|
[7947] | 41 | loadedPlugins = PluginLoader.Assemblies.Where(PluginLoader.IsPluginAssembly).ToDictionary(a => a, GetPluginFromAssembly);
|
---|
[4632] | 42 | pluginNames = loadedPlugins.ToDictionary(a => a.Key.GetName().FullName, a => GetPluginName(a.Value));
|
---|
| 43 |
|
---|
[7947] | 44 | foreach (Assembly pluginAssembly in loadedPlugins.Keys) {
|
---|
| 45 | Type pluginType = GetPluginFromAssembly(pluginAssembly);
|
---|
| 46 | var pluginFileAttributes = Attribute.GetCustomAttributes(pluginType, false).OfType<PluginFileAttribute>();
|
---|
| 47 | foreach (var pluginFileAttribute in pluginFileAttributes) {
|
---|
| 48 | string fillNameWithoutExtension = Path.GetFileNameWithoutExtension(pluginFileAttribute.FileName);
|
---|
| 49 | pluginFilesToPluginLookup.Add(fillNameWithoutExtension, pluginAssembly);
|
---|
| 50 | }
|
---|
| 51 | }
|
---|
[4490] | 52 | }
|
---|
| 53 |
|
---|
| 54 | [TestMethod]
|
---|
[9783] | 55 | [TestCategory("General")]
|
---|
| 56 | [TestCategory("Essential")]
|
---|
| 57 | [TestProperty("Time", "short")]
|
---|
[4490] | 58 | public void CheckReferenceAssembliesForPluginDependencies() {
|
---|
| 59 | StringBuilder errorMessage = new StringBuilder();
|
---|
| 60 | foreach (Assembly pluginAssembly in loadedPlugins.Keys) {
|
---|
| 61 | Type plugin = loadedPlugins[pluginAssembly];
|
---|
[7947] | 62 | Dictionary<string, PluginDependencyAttribute> pluginDependencies = Attribute.GetCustomAttributes(plugin, false).OfType<PluginDependencyAttribute>().ToDictionary(a => a.Dependency);
|
---|
| 63 |
|
---|
| 64 | foreach (AssemblyName referencedAssemblyName in pluginAssembly.GetReferencedAssemblies()) {
|
---|
| 65 | if (IsPluginAssemblyName(referencedAssemblyName)) {
|
---|
| 66 | if (!pluginDependencies.ContainsKey(pluginNames[referencedAssemblyName.FullName]))
|
---|
| 67 | errorMessage.AppendLine("Missing dependency in plugin " + plugin + " to referenced plugin " + pluginNames[referencedAssemblyName.FullName] + ".");
|
---|
| 68 | } else { //no plugin assembly => test if the assembly is delivered by another plugin
|
---|
| 69 | if (pluginFilesToPluginLookup.ContainsKey(referencedAssemblyName.Name)) {
|
---|
| 70 | string containingPluginFullName = pluginFilesToPluginLookup[referencedAssemblyName.Name].FullName;
|
---|
| 71 | if (containingPluginFullName != pluginAssembly.FullName && !pluginDependencies.ContainsKey(pluginNames[containingPluginFullName]))
|
---|
| 72 | errorMessage.AppendLine("Missing dependency in plugin " + plugin + " to plugin " + pluginNames[containingPluginFullName] + " due to a reference to " + referencedAssemblyName.FullName + ".");
|
---|
| 73 | }
|
---|
[4490] | 74 | }
|
---|
[7947] | 75 | }
|
---|
[4490] | 76 | }
|
---|
| 77 | Assert.IsTrue(errorMessage.Length == 0, errorMessage.ToString());
|
---|
| 78 | }
|
---|
| 79 |
|
---|
| 80 | [TestMethod]
|
---|
[9783] | 81 | [TestCategory("General")]
|
---|
| 82 | [TestCategory("Essential")]
|
---|
| 83 | [TestProperty("Time", "short")]
|
---|
[4490] | 84 | public void CheckPluginDependenciesForReferencedAssemblies() {
|
---|
| 85 | StringBuilder errorMessage = new StringBuilder();
|
---|
| 86 | foreach (Assembly pluginAssembly in loadedPlugins.Keys) {
|
---|
| 87 | Type plugin = loadedPlugins[pluginAssembly];
|
---|
[7947] | 88 | Dictionary<PluginDependencyAttribute, string> pluginDependencies = Attribute.GetCustomAttributes(plugin, false).OfType<PluginDependencyAttribute>().ToDictionary(a => a, a => a.Dependency);
|
---|
[4490] | 89 |
|
---|
| 90 | foreach (PluginDependencyAttribute attribute in pluginDependencies.Keys) {
|
---|
| 91 | string pluginDependencyName = pluginDependencies[attribute];
|
---|
[7948] | 92 |
|
---|
| 93 | if (pluginDependencyName == "HeuristicLab.MathJax") continue; //is never referenced as this plugin contains HTML files
|
---|
[7947] | 94 | var referencedPluginAssemblies = pluginAssembly.GetReferencedAssemblies().Where(IsPluginAssemblyName);
|
---|
| 95 | if (referencedPluginAssemblies.Any(a => pluginNames[a.FullName] == pluginDependencyName)) continue;
|
---|
| 96 |
|
---|
| 97 | var referencedNonPluginAssemblies = pluginAssembly.GetReferencedAssemblies().Where(a => !IsPluginAssemblyName(a));
|
---|
[8164] | 98 | bool found = (from referencedNonPluginAssembly in referencedNonPluginAssemblies
|
---|
| 99 | select referencedNonPluginAssembly.Name into assemblyName
|
---|
[7947] | 100 | where pluginFilesToPluginLookup.ContainsKey(assemblyName)
|
---|
| 101 | select GetPluginFromAssembly(pluginFilesToPluginLookup[assemblyName]) into pluginType
|
---|
| 102 | select GetPluginName(pluginType)).Any(pluginName => pluginName == pluginDependencyName);
|
---|
| 103 |
|
---|
| 104 | if (!found) errorMessage.AppendLine("Unnecessary plugin dependency in " + GetPluginName(plugin) + " to " + pluginDependencyName + ".");
|
---|
[4490] | 105 | }
|
---|
| 106 | }
|
---|
| 107 | Assert.IsTrue(errorMessage.Length == 0, errorMessage.ToString());
|
---|
| 108 | }
|
---|
| 109 |
|
---|
| 110 | private static Type GetPluginFromAssembly(Assembly assembly) {
|
---|
[9783] | 111 | return assembly.GetExportedTypes().FirstOrDefault(t => typeof(IPlugin).IsAssignableFrom(t) && !t.IsAbstract && !t.IsInterface);
|
---|
[4490] | 112 | }
|
---|
[7947] | 113 |
|
---|
[4490] | 114 | private static string GetPluginName(Type plugin) {
|
---|
| 115 | string name = string.Empty;
|
---|
| 116 | PluginAttribute pluginAttribute = (PluginAttribute)Attribute.GetCustomAttribute(plugin, typeof(PluginAttribute));
|
---|
| 117 | if (pluginAttribute != null)
|
---|
| 118 | name = pluginAttribute.Name;
|
---|
| 119 | return name;
|
---|
| 120 | }
|
---|
[7947] | 121 |
|
---|
| 122 | private static bool IsPluginAssemblyName(AssemblyName assemblyName) {
|
---|
| 123 | return pluginNames.ContainsKey(assemblyName.FullName);
|
---|
| 124 | }
|
---|
[4490] | 125 | }
|
---|
| 126 | }
|
---|