1 write to LogFolderPath
IIS.FunctionalTests (1)
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISFunctionalTestBase.cs (1)
24LogFolderPath = Path.Combine(Path.GetTempPath(), Guid.NewGuid().ToString());
18 references to LogFolderPath
IIS.FunctionalTests (18)
src\Servers\IIS\IIS\test\Common.FunctionalTests\FrebTests.cs (3)
120parameters.EnableFreb("Verbose", LogFolderPath); 122Directory.CreateDirectory(LogFolderPath); 144var folderPath = Helpers.GetFrebFolder(LogFolderPath, result);
src\Servers\IIS\IIS\test\Common.FunctionalTests\Infrastructure\IISFunctionalTestBase.cs (3)
89return Helpers.ReadAllTextFromFile(Helpers.GetExpectedLogName(deploymentResult, LogFolderPath), Logger); 95if (Directory.Exists(LogFolderPath)) 97Directory.Delete(LogFolderPath, true);
src\Servers\IIS\IIS\test\Common.FunctionalTests\LoggingTests.cs (6)
67deploymentParameters.EnableLogging(LogFolderPath); 75var contents = Helpers.ReadAllTextFromFile(Helpers.GetExpectedLogName(deploymentResult, LogFolderPath), Logger); 205var logFolderPath = LogFolderPath + "\\彡⾔"; 227deploymentParameters.EnableLogging(LogFolderPath); 234Assert.Single(Directory.GetFiles(LogFolderPath), Helpers.GetExpectedLogName(deploymentResult, LogFolderPath));
src\Servers\IIS\IIS\test\IIS.Shared.FunctionalTests\StdOutRedirectionTests.cs (6)
62deploymentParameters.EnableLogging(LogFolderPath); 73var contents = Helpers.ReadAllTextFromFile(Helpers.GetExpectedLogName(deploymentResult, LogFolderPath), Logger); 94deploymentParameters.EnableLogging(LogFolderPath); 103var fileInDirectory = Directory.GetFiles(LogFolderPath).Single(); 147deploymentParameters.EnableLogging(LogFolderPath); 156var fileInDirectory = Directory.GetFiles(LogFolderPath).First();