|
| 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 | +} |
0 commit comments