Backend/e-suite.API/eSuite.API.UnitTests/Controllers/ProfileControllerUnitTests/ProfileControllerTestBase.cs

48 lines
1.7 KiB
C#

using System.Security.Claims;
using e_suite.API.Common;
using e_suite.UnitTestCore;
using eSuite.API.Controllers;
using eSuite.API.SingleSignOn;
using Microsoft.AspNetCore.Http;
using Microsoft.AspNetCore.Mvc;
using Moq;
namespace eSuite.API.UnitTests.Controllers.ProfileControllerUnitTests;
public abstract class ProfileControllerTestBase : TestBase
{
protected ProfileController _profileController = null!;
protected Mock<IUserManager> _userManagerMock = null!;
protected Mock<ICookieManager> _cookieManagerMock = null!;
protected const string AccessDeniedText = "Access denied";
protected const string BadRequestText = "Bad request";
protected const string NotFoundText = "Not found";
protected const string LoginAcceptedText = "Login accepted";
public override async Task Setup()
{
await base.Setup();
_userManagerMock = new Mock<IUserManager>();
_cookieManagerMock = new Mock<ICookieManager>();
_profileController = new ProfileController(_userManagerMock.Object, _cookieManagerMock.Object);
}
protected void AddAuthorisedUserToController(long id, string email, string displayName)
{
var user = new ClaimsPrincipal(new ClaimsIdentity(new Claim[]
{
new(ClaimTypes.PrimarySid, id.ToString()),
new(ClaimTypes.Email, email),
new(ClaimTypes.Name, displayName)
// other required and custom claims
}, "TestAuthentication"));
_profileController.ControllerContext = new ControllerContext
{
HttpContext = new DefaultHttpContext { User = user }
};
}
}