public void FormatsPath() { var builder = new HttpUrlBuilder("http://localhost"); builder.WithPath("foo/{0}", "bar"); Assert.Equal("/foo/bar", builder.ToUri().AbsolutePath); }
public void DoesNotEncodeThePathSeperator() { var builder = new HttpUrlBuilder("http://localhost"); builder.WithPath("foo/bar"); Assert.Equal("/foo/bar", builder.ToUri().AbsolutePath); }
public void EncodesPath(string path, string expectedPath) { var builder = new HttpUrlBuilder("http://localhost"); builder.WithPath(path); Assert.Equal(expectedPath, builder.ToUri().AbsolutePath); }
public void EncodesPathArguments() { var builder = new HttpUrlBuilder("http://localhost"); builder.WithPath("foo/{0}", "bar#bar"); Assert.Equal("/foo/bar%23bar", builder.ToUri().AbsolutePath); }
public void OverwritesExistingPath(string url) { var builder = new HttpUrlBuilder(url); builder.WithPath("foo/bar"); Assert.Equal("/foo/bar", builder.ToUri().AbsolutePath); }