-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCertificateTests.cs
More file actions
41 lines (34 loc) · 1.16 KB
/
CertificateTests.cs
File metadata and controls
41 lines (34 loc) · 1.16 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
{
[Collection(nameof(WebHostFixture))]
public class CertificateTests
{
readonly WebHostFixture _fixture;
public CertificateTests(WebHostFixture fixture) =>
_fixture = fixture;
[Fact]
public async Task UntrustedCertificate_ShouldPresentErrorMessage_GivenCertificatesAreHonored()
{
var args = new[]
{
"post", $"{_fixture.HttpsUrl}/Mirror", "--form", "foo=bar", "lorem=ipsum"
};
var result = await Https.ExecuteAsync(args);
Assert.Equal(1, result.ExitCode);
}
[Fact]
public async Task UntrustedCertificate_ShouldProcess_GivenCertificatesAreIgnored()
{
var args = new[]
{
"post", $"{_fixture.HttpsUrl}/Mirror", "--form", "--ignore-certificate", "foo=bar", "lorem=ipsum"
};
var result = await Https.ExecuteAsync(args);
var actual = new StreamReader(result.StdOut).ReadToEnd();
Assert.Equal("foo=bar&lorem=ipsum", actual);
}
}
}