-
Notifications
You must be signed in to change notification settings - Fork 446
/
Copy pathUriValueTest.cs
78 lines (62 loc) · 3.19 KB
/
UriValueTest.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
using System;
using WebApiClientCore.Internals;
using Xunit;
namespace WebApiClientCore.Test.Internals
{
public class UriValueTest
{
[Fact]
public void AddQueryTest()
{
var uriValue = new UriValue("http://www.webapiclient.com");
uriValue = uriValue.AddQuery("a", "a");
Assert.Equal("http://www.webapiclient.com/?a=a", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path");
uriValue = uriValue.AddQuery("a", "a");
Assert.Equal("http://www.webapiclient.com/path?a=a", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path/");
uriValue = uriValue.AddQuery("a", "a");
Assert.Equal("http://www.webapiclient.com/path/?a=a", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path/?");
uriValue = uriValue.AddQuery("a", "a");
Assert.Equal("http://www.webapiclient.com/path/?a=a", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path?x=1");
uriValue = uriValue.AddQuery("a", "a");
Assert.Equal("http://www.webapiclient.com/path?x=1&a=a", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path?x=1&");
uriValue = uriValue.AddQuery("a", "a");
Assert.Equal("http://www.webapiclient.com/path?x=1&a=a", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path?x=1&");
uriValue = uriValue.AddQuery("a", "我");
Assert.Equal($"http://www.webapiclient.com/path?x=1&a={Uri.EscapeDataString("我")}", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path/?x=1&");
uriValue = uriValue.AddQuery("a", "我");
Assert.True(uriValue.ToString() == $"http://www.webapiclient.com/path/?x=1&a={Uri.EscapeDataString("我")}");
}
[Fact]
public void ReplaceTest()
{
var uriValue = new UriValue("http://www.webapiclient.com");
uriValue.Replace("a", "a", out var replaced);
Assert.False(replaced);
uriValue = new UriValue("http://www.webapiclient.com/path/?x={x}&y={Y}");
uriValue = uriValue.Replace("x", "x", out replaced);
Assert.True(replaced);
Assert.Equal("http://www.webapiclient.com/path/?x=x&y={Y}", uriValue.ToString());
uriValue = new UriValue("http://www.webapiclient.com/path/?x={x}&y={Y}");
uriValue = uriValue.Replace("y", "y", out replaced);
Assert.True(replaced);
Assert.Equal("http://www.webapiclient.com/path/?x={x}&y=y", uriValue.ToString());
}
[Fact]
public void ToUriTest()
{
var uriValue = new UriValue("http://www.webapiclient.com");
var uri = uriValue.ToUri();
Assert.Equal(new Uri("http://www.webapiclient.com"), uri);
uriValue = new UriValue(new Uri("http://www.webapiclient.com"));
uri = uriValue.ToUri();
Assert.Equal(new Uri("http://www.webapiclient.com"), uri);
}
}
}