我根据此处的示例配置我的 CORS 设置:https ://stackoverflow.com/a/65039768/10069673
public void ConfigureServices(IServiceCollection services)
{
// ...
services.AddCors(options =>
{
options.AddPolicy(name: "AllowedCorsOrigins",
builder =>
{
builder
.SetIsOriginAllowed(IsOriginAllowed)
.AllowAnyHeader()
.AllowAnyMethod()
.AllowCredentials();
});
});
// ...
我想编写一个单元测试来验证 CORS 是否配置正确。IsOriginAllowed
是一个私有函数,因此我不能在单元测试中直接调用它。
我可以使用IServiceCollection
接口的对象或模拟来检查先前配置的 CORS 设置是否允许/阻止 URI?