mirror of https://github.com/Squidex/squidex.git
4 changed files with 185 additions and 2 deletions
@ -0,0 +1,117 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using System.Collections.Generic; |
|||
using System.Security.Claims; |
|||
using System.Threading.Tasks; |
|||
using FakeItEasy; |
|||
using Microsoft.AspNetCore.Http; |
|||
using Microsoft.AspNetCore.Mvc; |
|||
using Microsoft.AspNetCore.Mvc.Abstractions; |
|||
using Microsoft.AspNetCore.Mvc.Filters; |
|||
using Microsoft.AspNetCore.Routing; |
|||
using Squidex.Domain.Apps.Entities; |
|||
using Squidex.Shared; |
|||
using Squidex.Shared.Identity; |
|||
using Xunit; |
|||
|
|||
#pragma warning disable IDE0017 // Simplify object initialization
|
|||
|
|||
namespace Squidex.Web.Pipeline |
|||
{ |
|||
public class ApiPermissionAttributeTests |
|||
{ |
|||
private readonly IAppProvider appProvider = A.Fake<IAppProvider>(); |
|||
private readonly HttpContext httpContext = new DefaultHttpContext(); |
|||
private readonly ActionContext actionContext; |
|||
private readonly ActionExecutingContext actionExecutingContext; |
|||
private readonly ActionExecutionDelegate next; |
|||
private readonly ClaimsIdentity user = new ClaimsIdentity(); |
|||
private bool isNextCalled; |
|||
|
|||
public ApiPermissionAttributeTests() |
|||
{ |
|||
actionContext = new ActionContext(httpContext, new RouteData(), new ActionDescriptor |
|||
{ |
|||
FilterDescriptors = new List<FilterDescriptor>() |
|||
}); |
|||
|
|||
actionExecutingContext = new ActionExecutingContext(actionContext, new List<IFilterMetadata>(), new Dictionary<string, object>(), this); |
|||
actionExecutingContext.HttpContext = httpContext; |
|||
actionExecutingContext.HttpContext.User = new ClaimsPrincipal(user); |
|||
|
|||
next = () => |
|||
{ |
|||
isNextCalled = true; |
|||
|
|||
return Task.FromResult<ActionExecutedContext>(null); |
|||
}; |
|||
} |
|||
|
|||
[Fact] |
|||
public void Should_use_bearer_schemes() |
|||
{ |
|||
var sut = new ApiPermissionAttribute(); |
|||
|
|||
Assert.Equal("Bearer", sut.AuthenticationSchemes); |
|||
} |
|||
|
|||
[Fact] |
|||
public async Task Should_call_next_when_user_has_correct_permission() |
|||
{ |
|||
actionExecutingContext.RouteData.Values["app"] = "my-app"; |
|||
|
|||
user.AddClaim(new Claim(SquidexClaimTypes.Permissions, "squidex.apps.my-app")); |
|||
|
|||
var sut = new ApiPermissionAttribute(Permissions.AppSchemasRead); |
|||
|
|||
await sut.OnActionExecutionAsync(actionExecutingContext, next); |
|||
|
|||
Assert.Null(actionExecutingContext.Result); |
|||
Assert.True(isNextCalled); |
|||
} |
|||
|
|||
[Fact] |
|||
public async Task Should_return_forbidden_when_user_has_wrong_permission() |
|||
{ |
|||
actionExecutingContext.RouteData.Values["app"] = "my-app"; |
|||
|
|||
user.AddClaim(new Claim(SquidexClaimTypes.Permissions, "squidex.apps.other-app")); |
|||
|
|||
var sut = new ApiPermissionAttribute(Permissions.AppSchemasRead); |
|||
|
|||
await sut.OnActionExecutionAsync(actionExecutingContext, next); |
|||
|
|||
Assert.Equal(403, (actionExecutingContext.Result as StatusCodeResult)?.StatusCode); |
|||
Assert.False(isNextCalled); |
|||
} |
|||
|
|||
[Fact] |
|||
public async Task Should_return_forbidden_when_route_data_has_no_value() |
|||
{ |
|||
user.AddClaim(new Claim(SquidexClaimTypes.Permissions, "squidex.apps.other-app")); |
|||
|
|||
var sut = new ApiPermissionAttribute(Permissions.AppSchemasRead); |
|||
|
|||
await sut.OnActionExecutionAsync(actionExecutingContext, next); |
|||
|
|||
Assert.Equal(403, (actionExecutingContext.Result as StatusCodeResult)?.StatusCode); |
|||
Assert.False(isNextCalled); |
|||
} |
|||
|
|||
[Fact] |
|||
public async Task Should_return_forbidden_when_user_has_no_permission() |
|||
{ |
|||
var sut = new ApiPermissionAttribute(Permissions.AppSchemasRead); |
|||
|
|||
await sut.OnActionExecutionAsync(actionExecutingContext, next); |
|||
|
|||
Assert.Equal(403, (actionExecutingContext.Result as StatusCodeResult)?.StatusCode); |
|||
Assert.False(isNextCalled); |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,61 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using System.Linq; |
|||
using System.Security.Claims; |
|||
using System.Threading.Tasks; |
|||
using Squidex.Shared; |
|||
using Squidex.Shared.Identity; |
|||
using Xunit; |
|||
|
|||
namespace Squidex.Web.Pipeline |
|||
{ |
|||
public class ApiPermissionUnifierTests |
|||
{ |
|||
private readonly ApiPermissionUnifier sut = new ApiPermissionUnifier(); |
|||
|
|||
[Theory] |
|||
[InlineData("administrator")] |
|||
[InlineData("ADMINISTRATOR")] |
|||
public async Task Should_add_admin_permission_when_user_is_in_role(string role) |
|||
{ |
|||
var userIdentity = new ClaimsIdentity(); |
|||
var userPrinicpal = new ClaimsPrincipal(userIdentity); |
|||
|
|||
userIdentity.AddClaim(new Claim(userIdentity.RoleClaimType, role)); |
|||
|
|||
var result = await sut.TransformAsync(userPrinicpal); |
|||
|
|||
Assert.Equal(Permissions.Admin, result.Claims.FirstOrDefault(x => x.Type == SquidexClaimTypes.Permissions)?.Value); |
|||
Assert.Equal(role, result.Claims.FirstOrDefault(x => x.Type == userIdentity.RoleClaimType)?.Value); |
|||
} |
|||
|
|||
[Fact] |
|||
public async Task Should_not_add_admin_persmission_when_user_has_other_role() |
|||
{ |
|||
var userIdentity = new ClaimsIdentity(); |
|||
var userPrinicpal = new ClaimsPrincipal(userIdentity); |
|||
|
|||
userIdentity.AddClaim(new Claim(userIdentity.RoleClaimType, "Developer")); |
|||
|
|||
var result = await sut.TransformAsync(userPrinicpal); |
|||
|
|||
Assert.Single(result.Claims); |
|||
} |
|||
|
|||
[Fact] |
|||
public async Task Should_not_add_admin_persmission_when_user_has_no_role() |
|||
{ |
|||
var userIdentity = new ClaimsIdentity(); |
|||
var userPrinicpal = new ClaimsPrincipal(userIdentity); |
|||
|
|||
var result = await sut.TransformAsync(userPrinicpal); |
|||
|
|||
Assert.Empty(result.Claims); |
|||
} |
|||
} |
|||
} |
|||
Loading…
Reference in new issue