public async Task ThenIShouldGetBackAnUpdatedTeamMembersListWithTheCorrectSuccessMessage() { //Assign const string email = "*****@*****.**"; const Role role = Role.Owner; var response = new GetAccountTeamMembersResponse(); _mediator.Setup(x => x.SendAsync(It.IsAny <ChangeTeamMemberRoleCommand>())).ReturnsAsync(Unit.Value); _mediator.Setup(x => x.SendAsync(It.IsAny <GetAccountTeamMembersQuery>())).ReturnsAsync(response); //Act var result = await _orchestrator.ChangeRole("437675", email, role, "37648"); //Assert Assert.IsNotNull(result); Assert.AreEqual(HttpStatusCode.OK, result.Status); Assert.IsNotNull(result.FlashMessage); Assert.AreEqual("Team member updated", result.FlashMessage.Headline); Assert.AreEqual($"{email} can now {RoleStrings.GetRoleDescriptionToLower(role)}", result.FlashMessage.Message); }
public async Task <ActionResult> ChangeRole(string hashedAccountId, string email, short role) { var response = await _employerTeamOrchestrator.ChangeRole(hashedAccountId, email, role, OwinWrapper.GetClaimValue(@"sub")); if (response.Status == HttpStatusCode.OK) { return(View("ViewTeam", response)); } var teamMemberResponse = await _employerTeamOrchestrator.GetTeamMember(hashedAccountId, email, OwinWrapper.GetClaimValue(@"sub")); //We have to override flash message as the change role view has different model to view team view teamMemberResponse.FlashMessage = response.FlashMessage; teamMemberResponse.Exception = response.Exception; return(View(teamMemberResponse)); }
public async Task <ActionResult> ChangeRole(string hashedAccountId, string email, Role role) { var response = await _employerTeamOrchestrator.ChangeRole(hashedAccountId, email, role, OwinWrapper.GetClaimValue(ControllerConstants.UserRefClaimKeyName)); if (response.Status == HttpStatusCode.OK) { return(View(ControllerConstants.ViewTeamViewName, response)); } var teamMemberResponse = await _employerTeamOrchestrator.GetTeamMemberWhetherActiveOrNot(hashedAccountId, email, OwinWrapper.GetClaimValue(ControllerConstants.UserRefClaimKeyName)); //We have to override flash message as the change role view has different model to view team view teamMemberResponse.FlashMessage = response.FlashMessage; teamMemberResponse.Exception = response.Exception; return(View(teamMemberResponse)); }