Skip to content

Commit 4e9e878

Browse files
committed
add integration tests
1 parent 3798429 commit 4e9e878

4 files changed

+190
-1
lines changed

IP-SafeList-Demo.sln

+15-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio Version 16
44
VisualStudioVersion = 16.0.30907.101
55
MinimumVisualStudioVersion = 15.0.26124.0
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyWebApp", "MyWebApp\MyWebApp.csproj", "{CE338907-AE94-4387-BE97-A1B7591A0B50}"
6+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "MyWebApp", "MyWebApp\MyWebApp.csproj", "{CE338907-AE94-4387-BE97-A1B7591A0B50}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MyWebApp.IntegrationTests", "MyWebApp.IntegrationTests\MyWebApp.IntegrationTests.csproj", "{6213C3D4-44D6-42C2-A57C-52ADF0C21165}"
79
EndProject
810
Global
911
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -27,6 +29,18 @@ Global
2729
{CE338907-AE94-4387-BE97-A1B7591A0B50}.Release|x64.Build.0 = Release|Any CPU
2830
{CE338907-AE94-4387-BE97-A1B7591A0B50}.Release|x86.ActiveCfg = Release|Any CPU
2931
{CE338907-AE94-4387-BE97-A1B7591A0B50}.Release|x86.Build.0 = Release|Any CPU
32+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
33+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Debug|Any CPU.Build.0 = Debug|Any CPU
34+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Debug|x64.ActiveCfg = Debug|Any CPU
35+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Debug|x64.Build.0 = Debug|Any CPU
36+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Debug|x86.ActiveCfg = Debug|Any CPU
37+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Debug|x86.Build.0 = Debug|Any CPU
38+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Release|Any CPU.ActiveCfg = Release|Any CPU
39+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Release|Any CPU.Build.0 = Release|Any CPU
40+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Release|x64.ActiveCfg = Release|Any CPU
41+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Release|x64.Build.0 = Release|Any CPU
42+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Release|x86.ActiveCfg = Release|Any CPU
43+
{6213C3D4-44D6-42C2-A57C-52ADF0C21165}.Release|x86.Build.0 = Release|Any CPU
3044
EndGlobalSection
3145
GlobalSection(SolutionProperties) = preSolution
3246
HideSolutionNode = FALSE
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
using System;
2+
using System.Net;
3+
using System.Threading.Tasks;
4+
using Microsoft.AspNetCore.Builder;
5+
using Microsoft.AspNetCore.Hosting;
6+
using Microsoft.AspNetCore.Http;
7+
8+
namespace MyWebApp.IntegrationTests
9+
{
10+
public class CustomRemoteIpStartupFilter : IStartupFilter
11+
{
12+
private readonly IPAddress _ipAddress;
13+
14+
public CustomRemoteIpStartupFilter(IPAddress ipAddress = null)
15+
{
16+
_ipAddress = ipAddress ?? IPAddress.Parse("127.0.0.1");
17+
}
18+
19+
public Action<IApplicationBuilder> Configure(Action<IApplicationBuilder> next)
20+
{
21+
return app =>
22+
{
23+
app.UseCustomRemoteIpAddressMiddleware(c => c.IpAddress = _ipAddress);
24+
next(app);
25+
};
26+
}
27+
}
28+
29+
public static class CustomRemoteIpAddressMiddlewareExtensions
30+
{
31+
public static IApplicationBuilder UseCustomRemoteIpAddressMiddleware(this IApplicationBuilder app, Action<RemoteIpOptions> setupAction = null)
32+
{
33+
var options = new RemoteIpOptions
34+
{
35+
IpAddress = IPAddress.Parse("127.0.0.1")
36+
};
37+
setupAction?.Invoke(options);
38+
return app.UseMiddleware<CustomRemoteIpAddressMiddleware>(options);
39+
}
40+
}
41+
42+
public class RemoteIpOptions
43+
{
44+
public IPAddress IpAddress { get; set; }
45+
}
46+
47+
public class CustomRemoteIpAddressMiddleware
48+
{
49+
private readonly RequestDelegate _next;
50+
private readonly IPAddress _fakeIpAddress;
51+
52+
public CustomRemoteIpAddressMiddleware(RequestDelegate next, RemoteIpOptions fakeIpAddress)
53+
{
54+
_next = next;
55+
_fakeIpAddress = fakeIpAddress.IpAddress;
56+
}
57+
58+
public async Task Invoke(HttpContext httpContext)
59+
{
60+
httpContext.Connection.RemoteIpAddress = _fakeIpAddress;
61+
await _next(httpContext);
62+
}
63+
}
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,87 @@
1+
using System.Net;
2+
using System.Threading.Tasks;
3+
using Microsoft.AspNetCore.Hosting;
4+
using Microsoft.AspNetCore.Mvc.Testing;
5+
using Microsoft.AspNetCore.TestHost;
6+
using Microsoft.Extensions.DependencyInjection;
7+
using Microsoft.VisualStudio.TestTools.UnitTesting;
8+
9+
namespace MyWebApp.IntegrationTests
10+
{
11+
[TestClass]
12+
public class IpRestrictionTests
13+
{
14+
[TestMethod]
15+
public async Task HttpRequestWithAllowedIpAddressShouldReturn200()
16+
{
17+
var factory = new WebApplicationFactory<Startup>().WithWebHostBuilder(builder =>
18+
{
19+
builder.UseSetting("https_port", "5001");
20+
builder.ConfigureTestServices(services =>
21+
{
22+
services.AddSingleton<IStartupFilter>(new CustomRemoteIpStartupFilter(IPAddress.Parse("127.0.0.1")));
23+
});
24+
});
25+
var client = factory.CreateClient();
26+
var response = await client.GetAsync("values");
27+
28+
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
29+
Assert.AreEqual("application/json; charset=utf-8", response.Content.Headers.ContentType?.ToString());
30+
31+
var json = await response.Content.ReadAsStringAsync();
32+
Assert.AreEqual("[\"value1\",\"value2\"]", json);
33+
}
34+
35+
[TestMethod]
36+
public async Task HttpRequestWithForbiddenIpAddressShouldReturn403()
37+
{
38+
var factory = new WebApplicationFactory<Startup>().WithWebHostBuilder(builder =>
39+
{
40+
builder.UseSetting("https_port", "5001");
41+
builder.ConfigureTestServices(services =>
42+
{
43+
services.AddSingleton<IStartupFilter>(new CustomRemoteIpStartupFilter(IPAddress.Parse("127.168.1.32")));
44+
});
45+
});
46+
var client = factory.CreateClient();
47+
var response = await client.GetAsync("values");
48+
49+
Assert.AreEqual(HttpStatusCode.Forbidden, response.StatusCode);
50+
Assert.AreEqual("application/problem+json; charset=utf-8", response.Content.Headers.ContentType?.ToString());
51+
}
52+
53+
[Ignore("I haven't figured out how to test in this way.")]
54+
[TestMethod]
55+
public async Task HttpRequestWithLocalHostIpAddressShouldReturn200()
56+
{
57+
var factory = new WebApplicationFactory<Startup>()
58+
.WithWebHostBuilder(builder => builder.UseSetting("https_port", "5001"));
59+
var client = factory.CreateClient(new WebApplicationFactoryClientOptions
60+
{
61+
AllowAutoRedirect = true
62+
});
63+
64+
//var context = await factory.Server.SendAsync((c) =>
65+
//{
66+
// c.Connection.RemoteIpAddress = IPAddress.Parse("127.168.1.32");
67+
// c.Request.Method = HttpMethods.Get;
68+
// c.Request.Path = new PathString("/values");
69+
70+
//});
71+
//var response = context.Response;
72+
73+
//Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
74+
//Assert.AreEqual("application/json; charset=utf-8", response.ContentType);
75+
76+
//var json = response.Body.ToString();
77+
78+
var response = await client.GetAsync("values");
79+
80+
Assert.AreEqual(HttpStatusCode.OK, response.StatusCode);
81+
Assert.AreEqual("application/json; charset=utf-8", response.Content.Headers.ContentType?.ToString());
82+
83+
var json = await response.Content.ReadAsStringAsync();
84+
Assert.AreEqual("[\"value1\",\"value2\"]", json);
85+
}
86+
}
87+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>net5.0</TargetFramework>
5+
6+
<IsPackable>false</IsPackable>
7+
</PropertyGroup>
8+
9+
<ItemGroup>
10+
<PackageReference Include="Microsoft.AspNetCore.Mvc.Testing" Version="5.0.4" />
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.9.1" />
12+
<PackageReference Include="MSTest.TestAdapter" Version="2.2.1" />
13+
<PackageReference Include="MSTest.TestFramework" Version="2.2.1" />
14+
<PackageReference Include="coverlet.collector" Version="3.0.3">
15+
<PrivateAssets>all</PrivateAssets>
16+
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
17+
</PackageReference>
18+
</ItemGroup>
19+
20+
<ItemGroup>
21+
<ProjectReference Include="..\MyWebApp\MyWebApp.csproj" />
22+
</ItemGroup>
23+
24+
</Project>

0 commit comments

Comments
 (0)