[Retry(5)] // TODO make this test non-flaky. public void Detect_Legacy_Plugin_File_List() { string filePath = _typeLoader.GetTypesListFilePath(); string fileDir = Path.GetDirectoryName(filePath); Directory.CreateDirectory(fileDir); File.WriteAllText(filePath, @"<?xml version=""1.0"" encoding=""utf-8""?> <plugins> <baseType type=""umbraco.interfaces.ICacheRefresher""> <add type=""umbraco.macroCacheRefresh, umbraco, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null"" /> </baseType> </plugins>"); Assert.IsEmpty(_typeLoader.ReadCache()); // uber-legacy cannot be read File.Delete(filePath); File.WriteAllText(filePath, @"<?xml version=""1.0"" encoding=""utf-8""?> <plugins> <baseType type=""umbraco.interfaces.ICacheRefresher"" resolutionType=""FindAllTypes""> <add type=""umbraco.macroCacheRefresh, umbraco, Version=6.0.0.0, Culture=neutral, PublicKeyToken=null"" /> </baseType> </plugins>"); Assert.IsEmpty(_typeLoader.ReadCache()); // legacy cannot be read File.Delete(filePath); File.WriteAllText(filePath, @"IContentFinder MyContentFinder AnotherContentFinder "); Assert.IsNotNull(_typeLoader.ReadCache()); // works }