-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContentTypeTests.cs
More file actions
111 lines (92 loc) · 3.11 KB
/
ContentTypeTests.cs
File metadata and controls
111 lines (92 loc) · 3.11 KB
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
using System.IO;
using System.Threading.Tasks;
using System.Xml.Linq;
using Xunit;
namespace Https.Tests
{
[Collection(nameof(WebHostFixture))]
public class ContentTypeTests
{
readonly WebHostFixture _fixture;
public ContentTypeTests(WebHostFixture fixture) =>
_fixture = fixture;
[Fact]
public async Task MirrorTest_ShouldReflectFormUrlEncoded()
{
var args = new[]
{
"post", $"{_fixture.HttpUrl}/Mirror", "--form", "foo=bar", "lorem=ipsum"
};
var result = await Https.ExecuteAsync(args);
var actual = new StreamReader(result.StdOut).ReadToEnd();
Assert.Equal("foo=bar&lorem=ipsum", actual);
}
[Fact]
public async Task MirrorTest_ShouldReflectJson()
{
var args = new[]
{
"post", $"{_fixture.HttpUrl}/Mirror", "--json", "foo=bar", "lorem=ipsum"
};
var result = await Https.ExecuteAsync(args);
var actual = new StreamReader(result.StdOut).ReadToEnd();
Assert.Equal("{\"foo\":\"bar\",\"lorem\":\"ipsum\"}", actual);
}
static async Task RunXmlTestAsync(string[] args, XDocument expected)
{
var result = await Https.ExecuteAsync(args);
var actual = XDocument.Load(
new StreamReader(result.StdOut)
).ToString();
Assert.Equal(expected.ToString(), actual);
}
[Fact]
public async Task MirrorTest_ShouldReflectXmlWithDefaultRootElementName()
{
var args = new[]
{
"post", $"{_fixture.HttpUrl}/Mirror", "--xml", "foo=bar", "lorem=ipsum"
};
var expected = new XDocument(
new XElement(
"xml",
new XElement("foo", "bar"),
new XElement("lorem", "ipsum")
)
);
await RunXmlTestAsync(args, expected);
}
[Fact]
public async Task MirrorTest_ShouldReflectXmlWithEmptyRootElementName()
{
var args = new[]
{
"post", $"{_fixture.HttpUrl}/Mirror", "--xml= ", "foo=bar", "lorem=ipsum"
};
var expected = new XDocument(
new XElement(
"xml",
new XElement("foo", "bar"),
new XElement("lorem", "ipsum")
)
);
await RunXmlTestAsync(args, expected);
}
[Fact]
public async Task MirrorTest_ShouldReflectXmlWithRootElementName()
{
var args = new[]
{
"post", $"{_fixture.HttpUrl}/Mirror", "--xml=root", "foo=bar", "lorem=ipsum"
};
var expected = new XDocument(
new XElement(
"root",
new XElement("foo", "bar"),
new XElement("lorem", "ipsum")
)
);
await RunXmlTestAsync(args, expected);
}
}
}