Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Tests/HeuristicLab.Persistence.Attic/PersistenceConsistencyChecks.cs @ 17165

Last change on this file since 17165 was 17165, checked in by gkronber, 5 years ago

#2520: merged r17019 from trunk to stable

File size: 1.3 KB
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using HEAL.Attic;
5using Microsoft.VisualStudio.TestTools.UnitTesting;
6
7namespace HeuristicLab.Tests.Persistence.Attic {
8  [TestClass]
9  public class PersistenceConsistencyChecks {
10    [TestCategory("Persistence.Attic")]
11    [TestCategory("Essential")]
12    [TestProperty("Time", "short")]
13    [TestMethod]
14    public void CheckDuplicateGUIDs() {
15      // easy to produce duplicate GUIDs with copy&paste
16      var dict = new Dictionary<Guid, string>();
17      var duplicates = new Dictionary<string, string>();
18      // using AppDomain instead of ApplicationManager so that NonDiscoverableTypes are also checked
19      foreach (Type type in AppDomain.CurrentDomain.GetAssemblies().SelectMany(x => x.GetTypes())) {
20        var attr = StorableTypeAttribute.GetStorableTypeAttribute(type);
21        if (attr == null)
22          continue;
23
24        foreach (var guid in attr.Guids) {
25          if (!dict.ContainsKey(guid)) {
26            dict.Add(guid, type.FullName);
27          } else {
28            duplicates.Add(type.FullName, dict[guid]);
29          }
30        }
31      }
32
33      foreach (var kvp in duplicates) {
34        Console.WriteLine($"{kvp.Key} has same GUID as {kvp.Value}");
35      }
36
37      if (duplicates.Any()) Assert.Fail("Duplicate GUIDs found.");
38    }
39  }
40}
Note: See TracBrowser for help on using the repository browser.