File: CorsTests.cs
Web Access
Project: src\src\Mvc\test\Mvc.FunctionalTests\Microsoft.AspNetCore.Mvc.FunctionalTests.csproj (Microsoft.AspNetCore.Mvc.FunctionalTests)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.Net;
using System.Net.Http;
using Microsoft.AspNetCore.Cors.Infrastructure;
 
namespace Microsoft.AspNetCore.Mvc.FunctionalTests;
 
public class CorsTests : CorsTestsBase<CorsWebSite.StartupWithoutEndpointRouting>
{
    public CorsTests(MvcTestFixture<CorsWebSite.StartupWithoutEndpointRouting> fixture)
        : base(fixture)
    {
    }
 
    [Fact]
    public override async Task PreflightRequestOnNonCorsEnabledController_DoesNotMatchTheAction()
    {
        // Arrange
        var request = new HttpRequestMessage(new HttpMethod("OPTIONS"), "http://localhost/NonCors/Post");
        request.Headers.Add(CorsConstants.Origin, "http://example.com");
        request.Headers.Add(CorsConstants.AccessControlRequestMethod, "POST");
 
        // Act
        var response = await Client.SendAsync(request);
 
        // Assert
        Assert.Equal(HttpStatusCode.NotFound, response.StatusCode);
    }
}