7
7
using Microsoft . Extensions . Logging ;
8
8
using Microsoft . VisualStudio . TestTools . UnitTesting ;
9
9
10
- namespace MyWebApp . IntegrationTests
10
+ namespace MyWebApp . IntegrationTests ;
11
+
12
+ [ TestClass ]
13
+ public class IpRestrictionTests
11
14
{
12
- [ TestClass ]
13
- public class IpRestrictionTests
15
+ [ TestMethod ]
16
+ public void ParseConfigurations ( )
14
17
{
15
- [ TestMethod ]
16
- public async Task HttpRequestWithAllowedIpAddressShouldReturn200 ( )
17
- {
18
- var factory = new WebApplicationFactory < Startup > ( ) . WithWebHostBuilder ( builder =>
19
- {
20
- builder . UseSetting ( "https_port" , "5001" ) . ConfigureLogging ( c => c . AddConsole ( ) ) ;
21
- builder . ConfigureTestServices ( services =>
22
- {
23
- services . AddSingleton < IStartupFilter > ( new CustomRemoteIpStartupFilter ( IPAddress . Parse ( "127.0.0.1" ) ) ) ;
24
- } ) ;
25
- } ) ;
26
- var client = factory . CreateClient ( ) ;
27
- var response = await client . GetAsync ( "values" ) ;
28
-
29
- Assert . AreEqual ( HttpStatusCode . OK , response . StatusCode ) ;
30
- Assert . AreEqual ( "application/json; charset=utf-8" , response . Content . Headers . ContentType ? . ToString ( ) ) ;
31
-
32
- var json = await response . Content . ReadAsStringAsync ( ) ;
33
- Assert . AreEqual ( "[\" value1\" ,\" value2\" ]" , json ) ;
34
- }
18
+ var b = IPNetwork . TryParse ( "2001:0db8::/64" , out var ip ) ;
19
+ Assert . IsTrue ( b ) ;
20
+ Assert . AreEqual ( new IPNetwork ( IPAddress . Parse ( "2001:0db8::" ) , 64 ) , ip ) ;
21
+ }
35
22
36
- [ TestMethod ]
37
- public async Task HttpRequestWithForbiddenIpAddressShouldReturn403 ( )
23
+ [ TestMethod ]
24
+ public async Task HttpRequestWithAllowedIpAddressShouldReturn200 ( )
25
+ {
26
+ var factory = new WebApplicationFactory < Startup > ( ) . WithWebHostBuilder ( builder =>
38
27
{
39
- var factory = new WebApplicationFactory < Startup > ( ) . WithWebHostBuilder ( builder =>
28
+ builder . UseSetting ( "https_port" , "5001" ) . ConfigureLogging ( c => c . AddConsole ( ) ) ;
29
+ builder . ConfigureTestServices ( services =>
40
30
{
41
- builder . UseSetting ( "https_port" , "5001" ) . ConfigureLogging ( c => c . AddConsole ( ) ) ;
42
- builder . ConfigureTestServices ( services =>
43
- {
44
- services . AddSingleton < IStartupFilter > ( new CustomRemoteIpStartupFilter ( IPAddress . Parse ( "127.168.1.32" ) ) ) ;
45
- } ) ;
31
+ services . AddSingleton < IStartupFilter > ( new CustomRemoteIpStartupFilter ( IPAddress . Parse ( "127.0.0.1" ) ) ) ;
46
32
} ) ;
47
- var client = factory . CreateClient ( ) ;
48
- var response = await client . GetAsync ( "values" ) ;
33
+ } ) ;
34
+ var client = factory . CreateClient ( ) ;
35
+ var response = await client . GetAsync ( "values" ) ;
49
36
50
- Assert . AreEqual ( HttpStatusCode . Forbidden , response . StatusCode ) ;
51
- }
37
+ Assert . AreEqual ( HttpStatusCode . OK , response . StatusCode ) ;
38
+ Assert . AreEqual ( "application/json; charset=utf-8" , response . Content . Headers . ContentType ? . ToString ( ) ) ;
52
39
53
- [ Ignore ( "I haven't figured out how to test in this way." ) ]
54
- [ TestMethod ]
55
- public async Task HttpRequestWithLocalHostIpAddressShouldReturn200 ( )
40
+ var json = await response . Content . ReadAsStringAsync ( ) ;
41
+ Assert . AreEqual ( "[\" value1\" ,\" value2\" ]" , json ) ;
42
+ }
43
+
44
+ [ TestMethod ]
45
+ public async Task HttpRequestWithForbiddenIpAddressShouldReturn403 ( )
46
+ {
47
+ var factory = new WebApplicationFactory < Startup > ( ) . WithWebHostBuilder ( builder =>
56
48
{
57
- var factory = new WebApplicationFactory < Startup > ( )
58
- . WithWebHostBuilder ( builder => builder . UseSetting ( "https_port" , "5001" ) . ConfigureLogging ( c => c . AddConsole ( ) ) ) ;
59
- var client = factory . CreateClient ( new WebApplicationFactoryClientOptions
49
+ builder . UseSetting ( "https_port" , "5001" ) . ConfigureLogging ( c => c . AddConsole ( ) ) ;
50
+ builder . ConfigureTestServices ( services =>
60
51
{
61
- AllowAutoRedirect = true
52
+ services . AddSingleton < IStartupFilter > ( new CustomRemoteIpStartupFilter ( IPAddress . Parse ( "127.168.1.32" ) ) ) ;
62
53
} ) ;
54
+ } ) ;
55
+ var client = factory . CreateClient ( ) ;
56
+ var response = await client . GetAsync ( "values" ) ;
63
57
64
- // tried to use TestServer.SendAsync to set RemoteIP, but failed
65
- // https://github.com/aspnet/Hosting/issues/1135
66
- // https://github.com/aspnet/Hosting/pull/1248
67
- // If without setting the RemoteIP, the test server will simply use an empty IP, which breaks the test.
68
-
69
- //var context = await factory.Server.SendAsync((c) =>
70
- //{
71
- // c.Connection.RemoteIpAddress = IPAddress.Parse("127.168.1.32");
72
- // c.Request.Method = HttpMethods.Get;
73
- // c.Request.Path = new PathString("/values");
58
+ Assert . AreEqual ( HttpStatusCode . Forbidden , response . StatusCode ) ;
59
+ }
74
60
75
- //});
76
- //var response = context.Response;
61
+ [ TestMethod ]
62
+ public async Task HttpRequestWithLocalHostIpAddressShouldReturn200 ( )
63
+ {
64
+ var factory = new WebApplicationFactory < Startup > ( )
65
+ . WithWebHostBuilder ( builder => builder . UseSetting ( "https_port" , "5001" ) . ConfigureLogging ( c => c . AddConsole ( ) ) ) ;
77
66
78
- //Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
79
- //Assert.AreEqual("application/json; charset=utf-8", response.ContentType);
67
+ var context = await factory . Server . SendAsync ( ( c ) =>
68
+ {
69
+ c . Connection . RemoteIpAddress = IPAddress . Parse ( "127.168.1.32" ) ;
70
+ c . Request . Method = HttpMethods . Get ;
71
+ c . Request . Path = new PathString ( "/values" ) ;
72
+ c . Request . IsHttps = true ;
80
73
81
- //var json = response.Body.ToString();
74
+ } ) ;
75
+ Assert . AreEqual ( ( int ) HttpStatusCode . Forbidden , context . Response . StatusCode ) ;
82
76
83
- var response = await client . GetAsync ( "values" ) ;
77
+ context = await factory . Server . SendAsync ( ( c ) =>
78
+ {
79
+ c . Connection . RemoteIpAddress = IPAddress . Parse ( "192.168.1.9" ) ;
80
+ c . Request . Method = HttpMethods . Get ;
81
+ c . Request . Path = new PathString ( "/values" ) ;
82
+ c . Request . IsHttps = true ;
84
83
85
- Assert . AreEqual ( HttpStatusCode . OK , response . StatusCode ) ;
86
- Assert . AreEqual ( "application/json; charset=utf-8" , response . Content . Headers . ContentType ? . ToString ( ) ) ;
84
+ } ) ;
85
+ var response = context . Response ;
86
+ Assert . AreEqual ( ( int ) HttpStatusCode . OK , response . StatusCode ) ;
87
+ Assert . AreEqual ( "application/json; charset=utf-8" , response . ContentType ) ;
87
88
88
- var json = await response . Content . ReadAsStringAsync ( ) ;
89
- Assert . AreEqual ( "[ \" value1 \" , \" value2 \" ]" , json ) ;
90
- }
89
+ using var sr = new StreamReader ( response . Body ) ;
90
+ var json = await sr . ReadToEndAsync ( ) ;
91
+ Assert . AreEqual ( "[ \" value1 \" , \" value2 \" ]" , json ) ;
91
92
}
92
- }
93
+ }
0 commit comments