/Release/Tests/Common/TestUtilities/TestData.cs

http://pytools.codeplex.com · C# · 144 lines · 105 code · 17 blank · 22 comment · 10 complexity · ea19106d983951a8c94df7eff14b8731 MD5 · raw file

  1. /* ****************************************************************************
  2. *
  3. * Copyright (c) Microsoft Corporation.
  4. *
  5. * This source code is subject to terms and conditions of the Apache License, Version 2.0. A
  6. * copy of the license can be found in the License.html file at the root of this distribution. If
  7. * you cannot locate the Apache License, Version 2.0, please send an email to
  8. * vspython@microsoft.com. By using this source code in any fashion, you are agreeing to be bound
  9. * by the terms of the Apache License, Version 2.0.
  10. *
  11. * You must not remove this notice, or any other, from this software.
  12. *
  13. * ***************************************************************************/
  14. using System;
  15. using System.Collections.Generic;
  16. using System.Diagnostics;
  17. using System.IO;
  18. using System.Linq;
  19. using System.Text;
  20. using Microsoft.PythonTools;
  21. namespace TestUtilities {
  22. public static class TestData {
  23. const string BinariesAltSourcePath = @"Binaries";
  24. const string BinariesSourcePath = @"Binaries\" +
  25. #if DEBUG
  26. @"Debug" +
  27. #else
  28. @"Release" +
  29. #endif
  30. #if DEV11
  31. @"11.0";
  32. #else
  33. @"10.0";
  34. #endif
  35. const string BinariesOutPath = "";
  36. const string DataAltSourcePath = @"TestData";
  37. const string DataSourcePath = @"Release\Tests\Common\TestData";
  38. const string DataOutPath = @"TestData";
  39. private static string GetSolutionDir() {
  40. var dir = Path.GetDirectoryName((typeof(TestData)).Assembly.Location);
  41. while (!string.IsNullOrEmpty(dir) && Directory.Exists(dir) && !File.Exists(Path.Combine(dir, "PythonTools.sln")) && !File.Exists(Path.Combine(dir, "Run.bat"))) {
  42. dir = Path.GetDirectoryName(dir);
  43. }
  44. return dir ?? "";
  45. }
  46. private static void CopyFiles(string sourceDir, string destDir) {
  47. sourceDir = sourceDir.TrimEnd('\\');
  48. destDir = destDir.TrimEnd('\\');
  49. try {
  50. Directory.CreateDirectory(destDir);
  51. } catch (IOException) {
  52. }
  53. var newDirectories = new HashSet<string>(from d in Directory.EnumerateDirectories(sourceDir, "*", SearchOption.AllDirectories)
  54. where d.StartsWith(sourceDir)
  55. select d.Substring(sourceDir.Length + 1), StringComparer.OrdinalIgnoreCase);
  56. newDirectories.ExceptWith(from d in Directory.EnumerateDirectories(destDir, "*", SearchOption.AllDirectories)
  57. where d.StartsWith(destDir)
  58. select d.Substring(destDir.Length + 1));
  59. foreach (var newDir in newDirectories.OrderBy(i => i.Length).Select(i => Path.Combine(destDir, i))) {
  60. try {
  61. Directory.CreateDirectory(newDir);
  62. } catch {
  63. Debug.WriteLine("Failed to create directory " + newDir);
  64. }
  65. }
  66. var newFiles = new HashSet<string>(from f in Directory.EnumerateFiles(sourceDir, "*", SearchOption.AllDirectories)
  67. where f.StartsWith(sourceDir)
  68. select f.Substring(sourceDir.Length + 1), StringComparer.OrdinalIgnoreCase);
  69. newFiles.ExceptWith(from f in Directory.EnumerateFiles(destDir, "*", SearchOption.AllDirectories)
  70. where f.StartsWith(destDir)
  71. select f.Substring(destDir.Length + 1));
  72. foreach (var newFile in newFiles) {
  73. var copyFrom = Path.Combine(sourceDir, newFile);
  74. var copyTo = Path.Combine(destDir, newFile);
  75. try {
  76. File.Copy(copyFrom, copyTo);
  77. File.SetAttributes(copyTo, FileAttributes.Normal);
  78. } catch {
  79. Debug.WriteLine("Failed to copy " + copyFrom + " to " + copyTo);
  80. }
  81. }
  82. }
  83. public static void Deploy(string dataSourcePath = null) {
  84. var sourceRoot = GetSolutionDir();
  85. var deployRoot = Path.GetDirectoryName((typeof(TestData)).Assembly.Location);
  86. var binSource = Path.Combine(sourceRoot, BinariesSourcePath);
  87. if (!Directory.Exists(binSource)) {
  88. binSource = Path.Combine(sourceRoot, BinariesAltSourcePath);
  89. if (!Directory.Exists(binSource)) {
  90. Debug.Fail("Could not find location of test binaries.");
  91. }
  92. }
  93. var binDest = Path.Combine(deployRoot, BinariesOutPath);
  94. if (binSource == binDest) {
  95. Debug.Fail("Select the default.testsettings file before running tests.");
  96. }
  97. var dataSource = Path.Combine(sourceRoot, dataSourcePath ?? DataSourcePath);
  98. if (!Directory.Exists(dataSource)) {
  99. dataSource = Path.Combine(sourceRoot, DataAltSourcePath);
  100. if (!Directory.Exists(dataSource)) {
  101. Debug.Fail("Could not find location of test data.");
  102. }
  103. }
  104. CopyFiles(binSource, binDest);
  105. CopyFiles(dataSource, Path.Combine(deployRoot, DataOutPath));
  106. }
  107. /// <summary>
  108. /// Returns the full path to the deployed file.
  109. /// </summary>
  110. public static string GetPath(string relativePath) {
  111. var testRoot = Path.GetDirectoryName((typeof(TestData)).Assembly.Location);
  112. return CommonUtils.GetAbsoluteFilePath(testRoot, relativePath);
  113. }
  114. /// <summary>
  115. /// Opens a FileStream for a file from the current deployment.
  116. /// </summary>
  117. public static FileStream Open(string relativePath, FileMode mode = FileMode.Open, FileAccess access = FileAccess.Read, FileShare share = FileShare.Read) {
  118. return new FileStream(GetPath(relativePath), mode, access, share);
  119. }
  120. /// <summary>
  121. /// Opens a StreamReader for a file from the current deployment.
  122. /// </summary>
  123. public static StreamReader Read(string relativePath, Encoding encoding = null) {
  124. return new StreamReader(GetPath(relativePath), encoding ?? Encoding.Default);
  125. }
  126. }
  127. }