-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathContentTypeTests.cs
More file actions
67 lines (56 loc) · 1.87 KB
/
ContentTypeTests.cs
File metadata and controls
67 lines (56 loc) · 1.87 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
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);
}
[Fact]
public async Task MirrorTest_ShouldReflectXml()
{
var args = new[]
{
"post", $"{_fixture.HttpUrl}/Mirror", "--xml=root", "foo=bar", "lorem=ipsum"
};
var result = await Https.ExecuteAsync(args);
var expected = new XDocument(
new XElement(
"root",
new XElement("foo", "bar"),
new XElement("lorem", "ipsum")
)
).ToString();
var actual = XDocument.Load(
new StreamReader(result.StdOut)
).ToString();
Assert.Equal(expected, actual);
}
}
}