TestDirectoryUtils.cs 895 B

12345678910111213141516171819202122232425
  1. using System;
  2. using System.IO;
  3. using System.Reflection;
  4. using Xunit;
  5. namespace Tede.Data.Tests.Utils
  6. {
  7. public class TestDirectoryUtils
  8. {
  9. [Fact]
  10. public void TestGetParentPath()
  11. {
  12. var codeBaseUrl = new Uri(Assembly.GetExecutingAssembly().CodeBase);
  13. var codeBasePath = Uri.UnescapeDataString(codeBaseUrl.AbsolutePath);
  14. var dirPath = Path.GetDirectoryName(codeBasePath);
  15. var binDirectoryPath = DirectoryUtils.GetParentPath(DirectoryUtils.GetParentPath(dirPath));
  16. Assert.Equal("Bin", PathUtils.GetDirectoryName(binDirectoryPath, false), StringComparer.OrdinalIgnoreCase);
  17. var testsDirectoryPath = DirectoryUtils.GetParentPath(binDirectoryPath, 2);
  18. Assert.Equal("tests", PathUtils.GetDirectoryName(testsDirectoryPath, false), StringComparer.OrdinalIgnoreCase);
  19. }
  20. }
  21. }