public void AddCircularRoot()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\Circular"))
     {
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         File.Create(Path.Combine(temp.DirPath, "foo.rs")).Close();
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         tracker.AddRootModule(Path.Combine(temp.DirPath, "foo.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(0, reached.Count);
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         using (var stream = File.Open(Path.Combine(temp.DirPath, "foo.rs"), FileMode.CreateNew))
         {
             using (var textStream = new StreamWriter(stream))
             {
                 textStream.Write("mod bar;");
             }
         }
         var diff = tracker.Reparse(Path.Combine(temp.DirPath, "foo.rs"));
         // Return check
         Assert.AreEqual(2, diff.Added.Count);
         Assert.AreEqual(0, diff.Removed.Count);
         // Model check
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
     }
 }
 public void EscapedPaths()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularNested"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(1, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "in\\foo.rs"));
     }
 }
 public void EscapedPaths()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularNested"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(1, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "in\\foo.rs"));
     }
 }
        private static void ModelCheck(ModuleTracker t, string root, params string[] additionalRoots)
        {
#if TEST // Dirty hack
            ModuleTracker model = new ModuleTracker(root);
            foreach (string r in additionalRoots)
                model.AddRootModule(r);
            model.ExtractReachableAndMakeIncremental();
            Assert.True(t.IsEquivalnet(model));
#endif
        }
        private static void ModelCheck(ModuleTracker t, string root, params string[] additionalRoots)
        {
#if TEST // Dirty hack
            ModuleTracker model = new ModuleTracker(root);
            foreach (string r in additionalRoots)
            {
                model.AddRootModule(r);
            }
            model.ExtractReachableAndMakeIncremental();
            Assert.True(t.IsEquivalnet(model));
#endif
        }
 public void NonIncrRootRemoval()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularMultiRoot"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "lib.rs"));
         tracker.AddRootModule(Path.Combine(temp.DirPath, "foo.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(1, reached.Count);
         HashSet <string> orphans = tracker.DowngradeModule(Path.Combine(temp.DirPath, "foo.rs")).Orphans;
         Assert.AreEqual(2, orphans.Count);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "lib.rs"));
     }
 }
Beispiel #7
0
        /// <summary>
        /// Notifies the module that it has be initialized.
        /// </summary>
        public void Initialize()
        {
            OnInitializing();

            OnRegisterViewsAndTypes();

            OnInitialized();

            if (ModuleTracker != null)
            {
                ModuleTracker.RecordModuleInitialized(ModuleName);
            }
        }
 public void CircularAddUnroot()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularAdd"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(0, reached.Count);
         HashSet <string> added = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "foo.rs"));
         CollectionAssert.Contains(added, Path.Combine(temp.DirPath, "bar.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
         var rem = tracker.DowngradeModule(Path.Combine(temp.DirPath, "foo.rs"));
         CollectionAssert.Contains(rem.Orphans, Path.Combine(temp.DirPath, "foo.rs"));
         CollectionAssert.Contains(rem.Orphans, Path.Combine(temp.DirPath, "bar.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
     }
 }
 public void ChainedRemoval()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\SimpleChain"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "foo.rs"));
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "baz.rs"));
         var res = tracker.DeleteModule(Path.Combine(temp.DirPath, "foo.rs"));
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         Assert.AreEqual(1, res.Orphans.Count);
         CollectionAssert.Contains(res.Orphans, Path.Combine(temp.DirPath, "baz.rs"));
     }
 }
Beispiel #10
0
 public void ChainedRemoval()
 {
     using(TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\SimpleChain"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "foo.rs"));
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "baz.rs"));
         var res = tracker.DeleteModule(Path.Combine(temp.DirPath, "foo.rs"));
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         Assert.AreEqual(1, res.Orphans.Count);
         CollectionAssert.Contains(res.Orphans, Path.Combine(temp.DirPath, "baz.rs"));
     }
 }
 public void CircularHard()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\Circular"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(0, reached.Count);
         var added = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(2, added.Count);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
         var del = tracker.DeleteModule(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(3, del.Orphans.Count);
         Assert.False(del.IsReferenced);
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
     }
 }
 public void ExplicitlyAddRemoveExisting()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularDowngrade"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         HashSet <string> added = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(0, added.Count);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
         var del = tracker.DeleteModule(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(1, del.Orphans.Count);
         Assert.True(del.IsReferenced);
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
     }
 }
Beispiel #13
0
 public void CircularAddRemove()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularAdd"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(0, reached.Count);
         HashSet<string> added = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "foo.rs"));
         CollectionAssert.Contains(added, Path.Combine(temp.DirPath, "bar.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
         var rem = tracker.DeleteModule(Path.Combine(temp.DirPath, "foo.rs"));
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(2, rem.Orphans.Count);
         CollectionAssert.Contains(rem.Orphans, Path.Combine(temp.DirPath, "bar.rs"));
         CollectionAssert.Contains(rem.Orphans, Path.Combine(temp.DirPath, "foo.rs"));
         Assert.False(rem.IsReferenced);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
     }
 }
Beispiel #14
0
        /// <summary>
        /// Notifies the module that it has be initialized.
        /// </summary>
        public void Initialize()
        {
            if (_initialized)
            {
                return;
            }

            _initialized = true;

            OnInitializing();

            OnRegisterViewsAndTypes();

            OnInitialized();

            if (ModuleTracker != null)
            {
                ModuleTracker.RecordModuleInitialized(ModuleName);
            }
        }
 public void ClearCircularRoot()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\Circular"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         tracker.AddRootModule(Path.Combine(temp.DirPath, "foo.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "baz.rs"));
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "bar.rs"));
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         File.Create(Path.Combine(temp.DirPath, "foo.rs")).Close();
         var diff = tracker.Reparse(Path.Combine(temp.DirPath, "foo.rs"));
         // Return check
         Assert.AreEqual(0, diff.Added.Count);
         Assert.AreEqual(2, diff.Removed.Count);
         // Model check
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
     }
 }
 public void ResolveToAlreadyExisting()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\ResolveNonAuthImport"))
     {
         // main file points to bar/mod.rs. project gets loaded
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(1, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, @"bar\mod.rs"));
         // in the mean time bar.rs gets created
         File.Create(Path.Combine(temp.DirPath, "bar.rs")).Close();
         // newly added baz.rs should import existing bar\mod.rs
         // instead of touching the disk
         var rootAdd = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "baz.rs"));
         Assert.AreEqual(0, rootAdd.Count);
         // WARNING: Dont ModelCheck(...) incrementally created ModTracker with the fresh ones.
         // In this one case mod name resolution will be slightly different.
         // It is working as indended.
     }
 }
 public void UpgradeAndDowngrade()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularConnected"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         tracker.AddRootModule(Path.Combine(temp.DirPath, "foo.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "baz.rs"));
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "bar.rs"));
         var res = tracker.DowngradeModule(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         tracker.UpgradeModule(Path.Combine(temp.DirPath, "baz.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "baz.rs"));
         res = tracker.DowngradeModule(Path.Combine(temp.DirPath, "baz.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         Assert.AreEqual(0, res.Orphans.Count);
         Assert.True(res.IsReferenced);
     }
 }
Beispiel #18
0
 public void ExplicitlyAddUnrootExisting()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularDowngrade"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         HashSet<string> added = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(0, added.Count);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
         var unr = tracker.DowngradeModule(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(0, unr.Orphans.Count);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         var del = tracker.DeleteModule(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(1, del.Orphans.Count);
         Assert.True(del.IsReferenced);
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
     }
 }
Beispiel #19
0
 public void RemoveZombie()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\SimpleChain"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         File.Delete(Path.Combine(temp.DirPath, "baz.rs"));
         using (var stream = File.Open(Path.Combine(temp.DirPath, "foo.rs"), FileMode.CreateNew))
         {
             using (var textStream = new StreamWriter(stream))
             {
                 textStream.Write("mod bar;");
             }
         }
         var diff = tracker.Reparse(Path.Combine(temp.DirPath, "foo.rs"));
         // Return check
         Assert.AreEqual(1, diff.Added.Count);
         Assert.AreEqual(1, diff.Removed.Count);
         // Model check
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         using (var stream = File.Open(Path.Combine(temp.DirPath, "foo.rs"), FileMode.CreateNew))
         {
             using (var textStream = new StreamWriter(stream))
             {
                 textStream.Write("mod baz;");
             }
         }
         diff = tracker.Reparse(Path.Combine(temp.DirPath, "foo.rs"));
         // Return check
         Assert.AreEqual(1, diff.Added.Count);
         Assert.AreEqual(1, diff.Removed.Count);
         // Model check
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
     }
 }
Beispiel #20
0
 public void ClearCircularRoot()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\Circular"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         tracker.AddRootModule(Path.Combine(temp.DirPath, "foo.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "baz.rs"));
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "bar.rs"));
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         File.Create(Path.Combine(temp.DirPath, "foo.rs")).Close();
         var diff = tracker.Reparse(Path.Combine(temp.DirPath, "foo.rs"));
         // Return check
         Assert.AreEqual(0, diff.Added.Count);
         Assert.AreEqual(2, diff.Removed.Count);
         // Model check
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
     }
 }
Beispiel #21
0
 public void UpgradeAndDowngrade()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularConnected"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         tracker.AddRootModule(Path.Combine(temp.DirPath, "foo.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(2, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "baz.rs"));
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, "bar.rs"));
         var res = tracker.DowngradeModule(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         tracker.UpgradeModule(Path.Combine(temp.DirPath, "baz.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "baz.rs"));
         res = tracker.DowngradeModule(Path.Combine(temp.DirPath, "baz.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
         Assert.AreEqual(0, res.Orphans.Count);
         Assert.True(res.IsReferenced);
     }
 }
Beispiel #22
0
 public void ResolveToAlreadyExisting()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\ResolveNonAuthImport"))
     {
         // main file points to bar/mod.rs. project gets loaded
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(1, reached.Count);
         CollectionAssert.Contains(reached, Path.Combine(temp.DirPath, @"bar\mod.rs"));
         // in the mean time bar.rs gets created
         File.Create(Path.Combine(temp.DirPath, "bar.rs")).Close();
         // newly added baz.rs should import existing bar\mod.rs
         // instead of touching the disk
         var rootAdd = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "baz.rs"));
         Assert.AreEqual(0, rootAdd.Count);
         // WARNING: Dont ModelCheck(...) incrementally created ModTracker with the fresh ones.
         // In this one case mod name resolution will be slightly different.
         // It is working as indended.
     }
 }
Beispiel #23
0
 public void CircularHard()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\Circular"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "main.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(0, reached.Count);
         var added = tracker.AddRootModuleIncremental(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(2, added.Count);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"), Path.Combine(temp.DirPath, "foo.rs"));
         var del = tracker.DeleteModule(Path.Combine(temp.DirPath, "foo.rs"));
         Assert.AreEqual(3, del.Orphans.Count);
         Assert.False(del.IsReferenced);
         File.Delete(Path.Combine(temp.DirPath, "foo.rs"));
         ModelCheck(tracker, Path.Combine(temp.DirPath, "main.rs"));
     }
 }
Beispiel #24
0
 protected void ReloadCore()
 {
     this.UserConfig = new UserProjectConfig(this);
     string outputType = GetProjectProperty(ProjectFileConstants.OutputType, true);
     string entryPoint = GetCrateFileNodePath(outputType);
     containsEntryPoint = GetCrateFileNode(outputType) != null;
     ModuleTracker = new ModuleTracker(entryPoint);
     base.Reload();
     // This project for some reason doesn't include entrypoint node, add it
     if (!containsEntryPoint)
     {
         HierarchyNode parent = this.CreateFolderNodes(Path.GetDirectoryName(entryPoint), true);
         TrackedFileNode node = (TrackedFileNode)this.CreateFileNode(entryPoint);
         node.IsEntryPoint = true;
         parent.AddChild(node);
     }
     MarkEntryPointFolders(outputType);
     foreach (string file in ModuleTracker.ExtractReachableAndMakeIncremental())
     {
         HierarchyNode parent = this.CreateFolderNodes(Path.GetDirectoryName(file), false);
         parent.AddChild(CreateUntrackedNode(file));
     }
 }
Beispiel #25
0
 protected void ReloadCore(out int canceled)
 {
     string manifestPath = fs.Path.GetFullPath(fs.Path.Combine(this.ProjectFolder, this.BuildProject.GetPropertyValue("ManifestPath")));
     ManifestFile manifestFile = ManifestFile.Create(fs, manifestPath, LoadManifest);
     if(manifestFile.Path != null)
         this.BuildProject.SetProperty("ManifestPath", CommonUtils.GetRelativeFilePath(this.ProjectFolder, manifestFile.Path));
     if (manifestFile.Manifest == null)
     {
         canceled = 1;
         return;
     }
     this.Manifest = manifestFile;
     this.UserConfig = new UserProjectConfig(this);
     string outputType = GetProjectProperty(ProjectFileConstants.OutputType, true);
     string entryPoint = GetCrateFileNodePath(outputType);
     containsEntryPoint = GetCrateFileNode(outputType) != null;
     ModuleTracker = new ModuleTracker(entryPoint);
     base.Reload(out canceled);
     // This project for some reason doesn't include entrypoint node, add it
     if (!containsEntryPoint)
     {
         HierarchyNode parent = this.CreateFolderNodes(fs.Path.GetDirectoryName(entryPoint), true);
         TrackedFileNode node = (TrackedFileNode)this.CreateFileNode(entryPoint);
         node.IsEntryPoint = true;
         parent.AddChild(node);
     }
     MarkEntryPointFolders(outputType);
     foreach (string file in ModuleTracker.ExtractReachableAndMakeIncremental())
     {
         HierarchyNode parent = this.CreateFolderNodes(fs.Path.GetDirectoryName(file), false);
         parent.AddChild(CreateUntrackedNode(file));
     }
 }
Beispiel #26
0
 public void NonIncrRootRemoval()
 {
     using (TemporaryDirectory temp = Utils.LoadResourceDirectory(@"Internal\CircularMultiRoot"))
     {
         var tracker = new ModuleTracker(Path.Combine(temp.DirPath, "lib.rs"));
         tracker.AddRootModule(Path.Combine(temp.DirPath, "foo.rs"));
         var reached = tracker.ExtractReachableAndMakeIncremental();
         Assert.AreEqual(1, reached.Count);
         HashSet<string> orphans = tracker.DowngradeModule(Path.Combine(temp.DirPath, "foo.rs")).Orphans;
         Assert.AreEqual(2, orphans.Count);
         ModelCheck(tracker, Path.Combine(temp.DirPath, "lib.rs"));
     }
 }