-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMethodTests.cs
More file actions
54 lines (47 loc) · 1.63 KB
/
MethodTests.cs
File metadata and controls
54 lines (47 loc) · 1.63 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
using System.IO;
using System.Net.Http;
using System.Threading.Tasks;
using System.Xml.Linq;
using Xunit;
namespace Https.Tests
{
[Collection(nameof(WebHostFixture))]
public class MethodTests
{
readonly WebHostFixture _fixture;
public MethodTests(WebHostFixture fixture) =>
_fixture = fixture;
[Fact]
public async Task MethodTest_ShouldHandleHead()
{
var args = new[]
{
"head", $"{_fixture.HttpUrl}/Mirror"
};
var result = await Https.ExecuteAsync(args);
var actual = new StreamReader(result.StdOut).ReadToEnd();
Assert.Equal("", actual);
Assert.Equal(0, result.ExitCode);
}
// Most of these methods probably should be tested differently,
// but apparently they work through HttpClient and ASP.NET Core.
[InlineData(nameof(HttpMethod.Delete))]
[InlineData(nameof(HttpMethod.Get))]
[InlineData(nameof(HttpMethod.Options))]
[InlineData(nameof(HttpMethod.Patch))]
[InlineData(nameof(HttpMethod.Post))]
[InlineData(nameof(HttpMethod.Put))]
[InlineData(nameof(HttpMethod.Trace))]
[Theory]
public async Task MethodTest_ShouldHandleMethod(string method)
{
var args = new[]
{
method, $"{_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);
}
}
}