-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathIntegrationTests.cs
More file actions
41 lines (34 loc) · 1.17 KB
/
IntegrationTests.cs
File metadata and controls
41 lines (34 loc) · 1.17 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
using System.IO;
using System.Threading.Tasks;
using Xunit;
namespace Https.Tests
{
public class IntegrationTests : IClassFixture<WebHostFixture>
{
readonly WebHostFixture _fixture;
public IntegrationTests(WebHostFixture fixture) =>
_fixture = fixture;
[Fact]
public async Task MirrorTests()
{
var args = new[]
{
"post", $"{_fixture.Url}/Mirror", "--json", "foo=bar", "lorem=ipsum"
};
var result = await Https.ExecuteAsync(args);
var json = new StreamReader(result.StdOut).ReadToEnd();
Assert.Equal("{\"foo\":\"bar\",\"lorem\":\"ipsum\"}", json);
}
[Fact]
public async Task RedirectTest_ShouldShow3XXResponse_GivenStopAutoRedirects()
{
var args = new[]
{
"get", "http://localhost:5000/Redirect", "--stop-auto-redirects"
};
var result = await Https.ExecuteAsync(args);
Assert.Equal("HTTP/1.1 301 Moved Permanently", result.Status);
Assert.Equal("http://localhost:5000/Mirror", result.Headers["Location"]);
}
}
}