-
-
Notifications
You must be signed in to change notification settings - Fork 11
/
HttpApplicationTests.cs
111 lines (91 loc) · 2.94 KB
/
HttpApplicationTests.cs
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
// Copyright (c) Martin Costello, 2018. All rights reserved.
// Licensed under the Apache 2.0 license. See the LICENSE file in the project root for full license information.
using System.Net.Http.Json;
using System.Net.Mime;
using System.Text;
namespace MartinCostello.Logging.XUnit.Integration;
[Collection(HttpServerCollection.Name)]
public sealed class HttpApplicationTests : IDisposable
{
public HttpApplicationTests(HttpServerFixture fixture, ITestOutputHelper outputHelper)
{
Fixture = fixture;
Fixture.OutputHelper = outputHelper;
}
private HttpServerFixture Fixture { get; }
public void Dispose()
{
Fixture.OutputHelper = null;
}
[Fact]
public async Task Http_Get_Many()
{
// Arrange
using var httpClient = Fixture.CreateClient();
// Act
#if XUNIT_V3
using var response = await httpClient.GetAsync("api/values", TestContext.Current.CancellationToken);
#else
using var response = await httpClient.GetAsync("api/values");
#endif
// Assert
response.IsSuccessStatusCode.ShouldBeTrue();
}
[Fact]
public async Task Http_Get_Single()
{
// Arrange
using var httpClient = Fixture.CreateClient();
// Act
#if XUNIT_V3
using var response = await httpClient.GetAsync("api/values/a", TestContext.Current.CancellationToken);
#else
using var response = await httpClient.GetAsync("api/values/a");
#endif
// Assert
response.IsSuccessStatusCode.ShouldBeTrue();
}
[Fact]
public async Task Http_Post()
{
// Arrange
using var httpClient = Fixture.CreateClient();
// Act
#if XUNIT_V3
using var response = await httpClient.PostAsJsonAsync("api/values", new { }, TestContext.Current.CancellationToken);
#else
using var response = await httpClient.PostAsJsonAsync("api/values", new { });
#endif
// Assert
response.IsSuccessStatusCode.ShouldBeTrue();
}
[Fact]
public async Task Http_Put()
{
// Arrange
using var httpClient = Fixture.CreateClient();
// Act
using var content = new StringContent(@"""d""", Encoding.UTF8, MediaTypeNames.Application.Json);
#if XUNIT_V3
using var response = await httpClient.PutAsync("api/values/d", content, TestContext.Current.CancellationToken);
#else
using var response = await httpClient.PutAsync("api/values/d", content);
#endif
// Assert
response.IsSuccessStatusCode.ShouldBeTrue();
}
[Fact]
public async Task Http_Delete()
{
// Arrange
using var httpClient = Fixture.CreateClient();
// Act
#if XUNIT_V3
using var response = await httpClient.DeleteAsync("api/values/d", TestContext.Current.CancellationToken);
#else
using var response = await httpClient.DeleteAsync("api/values/d");
#endif
// Assert
response.IsSuccessStatusCode.ShouldBeTrue();
}
}