示例#1
0
            public void ShouldNotRemoveOnlyRelativePart(string value)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                path.FullPath.ShouldBe("/");
            }
示例#2
0
            public void ShouldRemoveTrailingSlashes(string value, string expected)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                Assert.AreEqual(expected, path.FullPath);
            }
示例#3
0
            public void WillTrimWhiteSpaceFromPath()
            {
                // Given, When
                TestPath path = new TestPath(" shaders/basic ");

                // Then
                Assert.AreEqual("shaders/basic", path.FullPath);
            }
示例#4
0
            public void ShouldNotPrependSlashForRootedPath()
            {
                // Given, When
                TestPath path = new TestPath("C:/shaders/basic");

                // Then
                path.FullPath.ShouldBe("C:\\shaders/basic");
            }
示例#5
0
            public void WillNotRemoveWhiteSpaceWithinPath()
            {
                // Given, When
                TestPath path = new TestPath("my awesome shaders/basic");

                // Then
                Assert.AreEqual("my awesome shaders/basic", path.FullPath);
            }
示例#6
0
            public void CurrentDirectoryReturnsEmptyPath()
            {
                // Given, When
                TestPath path = new TestPath("./");

                // Then
                Assert.AreEqual(string.Empty, path.FullPath);
            }
示例#7
0
            public void WillNormalizePathSeparators()
            {
                // Given, When
                TestPath path = new TestPath("shaders\\basic");

                // Then
                Assert.AreEqual("shaders/basic", path.FullPath);
            }
示例#8
0
            public void ShouldReturnWhetherOrNotAPathIsRelativeOnWindows(string fullPath, bool expected)
            {
                // Given, When
                var path = new TestPath(fullPath);

                // Then
                Assert.AreEqual(expected, path.IsRelative);
            }
示例#9
0
            public void Should_Return_The_Full_Path()
            {
                // Given, When
                var path = new TestPath("temp/hello");

                // Then
                Assert.AreEqual("temp/hello", path.ToString());
            }
示例#10
0
            public void ShouldReturnProvider(string provider, string pathName, string expectedProvider)
            {
                // Given, W
                TestPath path = new TestPath(provider, pathName);

                // Then
                Assert.AreEqual(expectedProvider, path.Provider);
            }
示例#11
0
            public void ShouldTrimWhiteSpaceFromPathAndLeaveSpaces()
            {
                // Given, When
                TestPath path = new TestPath("\t\r\nshaders/basic ");

                // Then
                Assert.AreEqual("shaders/basic ", path.FullPath);
            }
示例#12
0
        public void TestParse2()
        {
            var path = TestPath.Get(@"Parser/MissingTargetsAttribute.csproj");

            new Action(() => _parser.Parse(path))
            .ShouldThrow <ParseException>()
            .WithMessage("error  : The required attribute \"Name\" is empty or missing from the element <Target>.");
        }
示例#13
0
            public void ShouldRemoveTrailingSlashes(string value, string expected)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                path.FullPath.ShouldBe(expected);
            }
示例#14
0
            public void ShouldNotRemoveWhiteSpaceWithinPath()
            {
                // Given, When
                TestPath path = new TestPath("my awesome shaders/basic");

                // Then
                path.FullPath.ShouldBe("my awesome shaders/basic");
            }
示例#15
0
            public void ShouldReturnStringRepresentation(string path, string expected)
            {
                // Given, When
                TestPath testPath = new TestPath(path);

                // Then
                testPath.ToString().ShouldBe(expected);
            }
示例#16
0
            public void ShouldNormalizePathSeparators()
            {
                // Given, When
                TestPath path = new TestPath("shaders\\basic");

                // Then
                path.FullPath.ShouldBe("shaders/basic");
            }
示例#17
0
            public void ShouldNotRemoveSingleTrailingSlash(string value)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                Assert.AreEqual("/", path.FullPath);
            }
示例#18
0
            public void ShouldTrimWhiteSpaceFromPathAndLeaveSpaces()
            {
                // Given, When
                TestPath path = new TestPath("\t\r\nshaders/basic ");

                // Then
                path.FullPath.ShouldBe("shaders/basic ");
            }
示例#19
0
            public void ShouldNotRemoveOnlyRelativePart(string value)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                Assert.AreEqual("/", path.FullPath);
            }
示例#20
0
            public void ShouldRemoveRelativePrefix(string value, string expected)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                Assert.AreEqual(expected, path.FullPath);
            }
示例#21
0
            public void ShouldSetProviderIfGivenOnlyScheme()
            {
                // Given, When
                TestPath path = new TestPath("foo", "/a/b");

                // Then
                Assert.AreEqual(new Uri("foo:"), path.FileProvider);
            }
示例#22
0
            public void ExplicitNullProviderShouldStayNull()
            {
                // Given, When
                TestPath testPath = new TestPath((Uri)null, "/a/b/c", PathKind.Absolute);

                // Then
                Assert.IsNull(testPath.FileProvider);
            }
示例#23
0
            public void UnspecifiedProviderShouldUseDefault()
            {
                // Given, When
                TestPath testPath = new TestPath("/a/b/c", PathKind.Absolute);

                // Then
                Assert.AreEqual(new Uri("file:///"), testPath.FileProvider);
            }
示例#24
0
            public void ShouldRemoveRelativePrefix(string value, string expected)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                path.FullPath.ShouldBe(expected);
            }
示例#25
0
            public void ShouldNotRemoveSingleTrailingSlash(string value)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                path.FullPath.ShouldBe("/");
            }
示例#26
0
            public void CurrentDirectoryReturnsDot()
            {
                // Given, When
                TestPath path = new TestPath("./");

                // Then
                Assert.AreEqual(".", path.FullPath);
            }
示例#27
0
            public void CurrentDirectoryReturnsDot()
            {
                // Given, When
                TestPath path = new TestPath("./");

                // Then
                Assert.AreEqual(".", path.FullPath);
            }
示例#28
0
            public void ShouldReturnWhetherOrNotAPathIsRelativeOnWindows(string fullPath, bool expected)
            {
                // Given, When
                TestPath path = new TestPath(fullPath);

                // Then
                path.IsRelative.ShouldBe(expected);
            }
示例#29
0
            public void ShouldNormalizePathSeparators()
            {
                // Given, When
                TestPath path = new TestPath("shaders\\basic");

                // Then
                Assert.AreEqual("shaders/basic", path.FullPath);
            }
示例#30
0
            public void CurrentDirectoryReturnsDot()
            {
                // Given, When
                TestPath path = new TestPath("./");

                // Then
                path.FullPath.ShouldBe(".");
            }
示例#31
0
            public void ShouldReturnStringRepresentation(string provider, string path, string expected)
            {
                // Given, When
                TestPath testPath = new TestPath(provider == null ? null : new Uri(provider), path);

                // Then
                Assert.AreEqual(expected, testPath.ToString());
            }
示例#32
0
            public void ShouldReturnFullPath()
            {
                // Given, When
                const string expected = "shaders/basic";
                TestPath     path     = new TestPath(expected);

                // Then
                Assert.AreEqual(expected, path.FullPath);
            }
示例#33
0
            public void ShouldReturnProvider(string provider, string pathName, string expectedProvider)
            {
                // Given, W
                TestPath path = new TestPath(provider, pathName);

                // Then
                Assert.AreEqual(expectedProvider == null ? null : new Uri(expectedProvider), path.FileProvider);
            }
示例#34
0
            public void UnspecifiedProviderShouldUseDefault()
            {
                // Given, When
                TestPath testPath = new TestPath("/a/b/c", PathKind.Absolute);

                // Then
                Assert.AreEqual(new Uri("file:///"), testPath.FileProvider);
            }
示例#35
0
            public void ShouldReturnFullPath()
            {
                // Given, When
                const string expected = "shaders/basic";
                TestPath path = new TestPath(expected);

                // Then
                Assert.AreEqual(expected, path.FullPath);
            }
示例#36
0
            public void ShouldReturnSegmentsOfPath(string pathName)
            {
                // Given, When
                TestPath path = new TestPath(pathName);

                // Then
                Assert.AreEqual(2, path.Segments.Length);
                Assert.AreEqual("Hello", path.Segments[0]);
                Assert.AreEqual("World", path.Segments[1]);
            }
示例#37
0
            public void ShouldReturnDottedRootForExplicitRelativePath(string fullPath)
            {
                // Given
                TestPath path = new TestPath(fullPath, PathKind.Relative);

                // When
                DirectoryPath root = path.Root;

                // Then
                Assert.AreEqual(".", root.FullPath);
            }
示例#38
0
            public void ShouldReturnRootPath(string fullPath, string expected)
            {
                // Given
                TestPath path = new TestPath(fullPath);

                // When
                DirectoryPath root = path.Root;

                // Then
                Assert.AreEqual(expected, root.FullPath);
            }
示例#39
0
            public void ShouldReturnWhetherOrNotAPathIsRelativeOnWindows(string fullPath, bool expected)
            {
                // Given, When
                TestPath path = new TestPath(fullPath);

                // Then
                Assert.AreEqual(expected, path.IsRelative);
            }
示例#40
0
            public void ShouldReturnStringRepresentation(string provider, string path, string expected)
            {
                // Given, When
                TestPath testPath = new TestPath(provider == null ? null : new Uri(provider), path);

                // Then
                Assert.AreEqual(expected, testPath.ToString());
            }
示例#41
0
            public void ShouldTrimWhiteSpaceFromPath()
            {
                // Given, When
                TestPath path = new TestPath(" shaders/basic ");

                // Then
                Assert.AreEqual("shaders/basic", path.FullPath);
            }
示例#42
0
            public void ShouldNotRemoveWhiteSpaceWithinPath()
            {
                // Given, When
                TestPath path = new TestPath("my awesome shaders/basic");

                // Then
                Assert.AreEqual("my awesome shaders/basic", path.FullPath);
            }
示例#43
0
            public void ShouldUsePathAsFullPathIfNoPathInString()
            {
                // Given, When
                TestPath testPath = new TestPath("foo:");

                // Then
                Assert.AreEqual(null, testPath.FileProvider);
                Assert.AreEqual("foo:/", testPath.FullPath); // The slash is appended w/ assumption this is a file path
            }
示例#44
0
            public void ShouldSetUriAsRelativePathIfNoLeftPart(string path)
            {
                // Given, When
                TestPath testPath = new TestPath(new Uri(path, UriKind.Relative));

                // Then
                Assert.AreEqual(null, testPath.FileProvider);
                Assert.AreEqual(path, testPath.FullPath);
                Assert.IsTrue(testPath.IsRelative);
            }
示例#45
0
            public void ShouldSetRootPathIfOnlyRootInUri(string path)
            {
                // Given, When
                TestPath testPath = new TestPath(new Uri(path));

                // Then
                Assert.AreEqual(new Uri(path), testPath.FileProvider);
                Assert.AreEqual("/", testPath.FullPath);
            }
示例#46
0
            public void ShouldSetNullProviderForFirstCharDelimiter()
            {
                // Given, When
                TestPath path = new TestPath("|foo://a/b/c");

                // Then
                Assert.AreEqual(null, path.FileProvider);
                Assert.AreEqual("foo://a/b/c", path.FullPath);
            }
示例#47
0
            public void ExplicitNullProviderShouldStayNull()
            {
                // Given, When
                TestPath testPath = new TestPath((Uri)null, "/a/b/c", PathKind.Absolute);

                // Then
                Assert.IsNull(testPath.FileProvider);
            }
示例#48
0
            public void ShouldNotRemoveOnlyRelativePart(string value)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                Assert.AreEqual("/", path.FullPath);
            }
示例#49
0
            public void ShouldSplitUriPathWithDelimiter()
            {
                // Given, When
                TestPath path = new TestPath(new Uri("foo:///a/b|c/d/e"));

                // Then
                Assert.AreEqual(new Uri("foo:///a/b"), path.FileProvider);
                Assert.AreEqual("c/d/e", path.FullPath);
                Assert.IsTrue(path.IsAbsolute);
            }
示例#50
0
            public void ShouldNotRemoveSingleTrailingSlash(string value)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                Assert.AreEqual("/", path.FullPath);
            }
示例#51
0
            public void ShouldSetProviderIfGivenOnlyScheme()
            {
                // Given, When
                TestPath path = new TestPath("foo", "/a/b");

                // Then
                Assert.AreEqual(new Uri("foo:"), path.FileProvider);
            }
示例#52
0
            public void ShouldRemoveTrailingSlashes(string value, string expected)
            {
                // Given, When
                TestPath path = new TestPath((Uri)null, value);

                // Then
                Assert.AreEqual(expected, path.FullPath);
            }
示例#53
0
            public void ShouldRemoveRelativePrefix(string value, string expected)
            {
                // Given, When
                TestPath path = new TestPath(value);

                // Then
                Assert.AreEqual(expected, path.FullPath);
            }