Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
476 views
in Technique[技术] by (71.8m points)

Equivalent of UseMvc AllowAnonymous with endpoint routing (UseEndpoints) in .Net Core 3.1

What is the .Net Core 3.1 equivalent of the following when using Endpoint Routing in .Net Core 3.1?

protected override void ConfigureTestServices(IServiceCollection services) 
    => services.AddMvc(opt => opt.Filters.Add(new AllowAnonymousFilter()));

In .Net Core 2.2, I had Startup as follows:

public void Configure(IApplicationBuilder app)
{
    // ... 
    app.UseAuthentication();
    app.UseAuthorization();
    app.UseMvc();
}

In my tests, in .Net Core 2.2, I would have:

protected void ConfigureTestServices(IServiceCollection services)
    => services.AddMvcCore(x => x.Filters.Add(new AllowAnonymousFilter()));

In .Net Core 3.1, I have...

public void Configure(IApplicationBuilder app)
{
    // ... 
    app.UseAuthentication();
    app.UseAuthorization();
    app.UseEndpoints(endpoints =>
    {
        endpoints.MapHealthChecks((builder) =>
            builder.WithMetadata(new AllowAnonymousAttribute()));
        endpoints.MapControllers();
    });
}

How do I allow all my tests to run without authorization, as I used to be able to in .Net Core 2.2? (Note, in production, I want authorization against the controller endpoints; and to allow anonymous access to the controller endpoints during testing)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
services.AddMvc(opt => opt.Filters.Add(new AllowAnonymousFilter()));

The “modern” equivalent for this in ASP.NET Core 3.x and later would be the following:

services.AddControllers(opt => opt.Filters.Add(new AllowAnonymousFilter()));

Alternatively, you can also use AddRazorPages() or AddControllersWithViews() depending on how you have your application set up.

But AddMvc is actually still supported and just literally means the combination of both AddRazorPages() and AddControllersWithViews(). Similarly, AddMvcCore is also still around and is actually called by all those other Add~ methods.

So you can really do any of the following and they mostly do the same thing:

services.AddMvc(opt => opt.Filters.Add(new AllowAnonymousFilter()));
services.AddMvcCore(opt => opt.Filters.Add(new AllowAnonymousFilter()));
services.AddControllers(opt => opt.Filters.Add(new AllowAnonymousFilter()));
services.AddControllersWithViews(opt => opt.Filters.Add(new AllowAnonymousFilter()));
services.AddRazorPages(opt => opt.Filters.Add(new AllowAnonymousFilter()));

Note that this does not really have to do anything with endpoint routing though. The move from AddMvc to AddControllers, AddControllersWithViews and AddRazorPages was just a way to further split up the underlying framework dependencies so you only pay for those dependencies that you actually need to run your application. E.g. if you only have API controllers, then you don’t need the Razor engine and can opt-out by only calling AddControllers().

Endpoint routing on the other hand is what the move from UseMvc to UseRouting and UseEndpoints. This applies to how the middleware pipeline works though, not how the dependencies are set up. For the purpose of registering global MVC filters, you can still configure these globally by configuring the MvcOptions with one of the Add~ calls from above.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...