-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathHttpPathTest.cs
57 lines (46 loc) · 1.58 KB
/
HttpPathTest.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
using System;
using Xunit;
namespace WebApiClientCore.Test
{
public class HttpPathTest
{
[Fact]
public void NullHttpPathTest()
{
var path = HttpPath.Create(null);
Uri? input = null;
var output = path.MakeUri(input);
Assert.Null(output);
input = new Uri("http://a.com");
output = path.MakeUri(input);
Assert.Equal(input, output);
input = new Uri("/aa/bb", UriKind.Relative);
output = path.MakeUri(input);
Assert.Equal(input, output);
}
[Fact]
public void RelativePathTest()
{
var value = new Uri("/x", UriKind.Relative);
var path = HttpPath.Create(value.OriginalString);
var output = path.MakeUri(null);
Assert.Equal(value, output);
output = path.MakeUri(new Uri("/a/b", UriKind.Relative));
Assert.Equal(value, output);
output = path.MakeUri(new Uri("http://a.com/a/b"));
Assert.Equal(new Uri("http://a.com/x"), output);
}
[Fact]
public void AbsolutePathTest()
{
var value = new Uri("http://a.com/x");
var path = HttpPath.Create(value.OriginalString);
var output = path.MakeUri(null);
Assert.Equal(value, output);
output = path.MakeUri(new Uri("/a/b", UriKind.Relative));
Assert.Equal(value, output);
output = path.MakeUri(new Uri("http://a.com/a/b"));
Assert.Equal(value, output);
}
}
}