We're being flagged because a couple of the templates target online sources by default so deleting those test directories when complete.
This commit is contained in:
parent
99646c6d3d
commit
58e2d4ce17
1 changed files with 14 additions and 2 deletions
|
@ -246,6 +246,12 @@ namespace EndToEnd.Tests
|
||||||
//check if the template created files
|
//check if the template created files
|
||||||
Assert.True(directory.Exists);
|
Assert.True(directory.Exists);
|
||||||
Assert.True(directory.EnumerateFileSystemInfos().Any());
|
Assert.True(directory.EnumerateFileSystemInfos().Any());
|
||||||
|
|
||||||
|
// delete test directory for some tests so we aren't leaving behind non-compliant nuget files
|
||||||
|
if (templateName.Equals("nugetconfig"))
|
||||||
|
{
|
||||||
|
directory.Delete(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
[WindowsOnlyTheory]
|
[WindowsOnlyTheory]
|
||||||
|
@ -329,7 +335,7 @@ namespace EndToEnd.Tests
|
||||||
public void ItCanCreateTemplateWithDefaultFramework(string templateName)
|
public void ItCanCreateTemplateWithDefaultFramework(string templateName)
|
||||||
{
|
{
|
||||||
string framework = DetectExpectedDefaultFramework(templateName);
|
string framework = DetectExpectedDefaultFramework(templateName);
|
||||||
TestTemplateCreateAndBuild(templateName, build: false, framework: framework);
|
TestTemplateCreateAndBuild(templateName, build: false, framework: framework, deleteTestDirectory: true);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
|
@ -415,7 +421,7 @@ namespace EndToEnd.Tests
|
||||||
throw new Exception("Unsupported version of SDK");
|
throw new Exception("Unsupported version of SDK");
|
||||||
}
|
}
|
||||||
|
|
||||||
private static void TestTemplateCreateAndBuild(string templateName, bool build = true, bool selfContained = false, string language = "", string framework = "")
|
private static void TestTemplateCreateAndBuild(string templateName, bool build = true, bool selfContained = false, string language = "", string framework = "", bool deleteTestDirectory = false)
|
||||||
{
|
{
|
||||||
DirectoryInfo directory = TestAssets.CreateTestDirectory(identifier: string.IsNullOrWhiteSpace(language) ? templateName : $"{templateName}[{language}]");
|
DirectoryInfo directory = TestAssets.CreateTestDirectory(identifier: string.IsNullOrWhiteSpace(language) ? templateName : $"{templateName}[{language}]");
|
||||||
string projectDirectory = directory.FullName;
|
string projectDirectory = directory.FullName;
|
||||||
|
@ -468,6 +474,12 @@ namespace EndToEnd.Tests
|
||||||
.Execute(buildArgs)
|
.Execute(buildArgs)
|
||||||
.Should().Pass();
|
.Should().Pass();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// delete test directory for some tests so we aren't leaving behind non-compliant package files
|
||||||
|
if (deleteTestDirectory)
|
||||||
|
{
|
||||||
|
directory.Delete(true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue