Files
Umbraco-CMS/tests/Umbraco.Tests.Integration/Umbraco.Core/Services/UserServiceCrudTests.Update.cs
Andy Butland d7d39658e0 Permissions: Fix removal of check on removal the final admin user (closes #19917) (#19921)
Reworks update of user groups on a user by updating in place rather than deleting and re-adding.
Ensure user groups affected by the update are invalidated in the repository cache.

Co-authored-by: Kenn Jacobsen <kja@umbraco.dk>
2025-09-22 12:51:27 +02:00

433 lines
17 KiB
C#

using Moq;
using NUnit.Framework;
using Umbraco.Cms.Core;
using Umbraco.Cms.Core.Configuration.Models;
using Umbraco.Cms.Core.Models;
using Umbraco.Cms.Core.Models.Membership;
using Umbraco.Cms.Core.Security;
using Umbraco.Cms.Core.Services;
using Umbraco.Cms.Core.Services.OperationStatus;
namespace Umbraco.Cms.Tests.Integration.Umbraco.Core.Services;
internal sealed partial class UserServiceCrudTests
{
private ISet<Guid> GetKeysFromIds(IEnumerable<int>? ids, UmbracoObjectTypes type)
{
IEnumerable<Guid>? keys = ids?
.Select(x => EntityService.GetKey(x, type))
.Where(x => x.Success)
.Select(x => x.Result);
return keys is null
? new HashSet<Guid>()
: new HashSet<Guid>(keys);
}
private async Task<UserUpdateModel> MapUserToUpdateModel(IUser user)
{
var groups = await UserGroupService.GetAsync(user.Groups.Select(x => x.Id).ToArray());
return new UserUpdateModel
{
ExistingUserKey = user.Key,
Email = user.Email,
Name = user.Name,
UserName = user.Username,
LanguageIsoCode = user.Language,
ContentStartNodeKeys = GetKeysFromIds(user.StartContentIds, UmbracoObjectTypes.Document),
MediaStartNodeKeys = GetKeysFromIds(user.StartMediaIds, UmbracoObjectTypes.Media),
UserGroupKeys = groups.Select(x=>x.Key).ToHashSet(),
};
}
private async Task<(UserUpdateModel updateModel, IUser createdUser)> CreateUserForUpdate(
IUserService userService,
string email = "test@test.com",
string userName = "test@test.com")
{
var userGroup = await UserGroupService.GetAsync(Constants.Security.AdminGroupAlias);
var createUserModel = new UserCreateModel
{
Email = email,
UserName = userName,
Name = "Test Mc. Gee",
UserGroupKeys = new HashSet<Guid> { userGroup.Key }
};
var createExistingUser = await userService.CreateAsync(Constants.Security.SuperUserKey, createUserModel, true);
Assert.IsTrue(createExistingUser.Success);
Assert.IsNotNull(createExistingUser.Result.CreatedUser);
var savedUser = createExistingUser.Result.CreatedUser;
var updateModel = await MapUserToUpdateModel(savedUser);
return (updateModel, createExistingUser.Result.CreatedUser);
}
[Test]
[TestCase(true, false)]
[TestCase(false, true)]
public async Task Cannot_Change_Email_When_Deny_Local_Login_Is_True(bool denyLocalLogin, bool shouldSucceed)
{
var localLoginSetting = new Mock<ILocalLoginSettingProvider>();
localLoginSetting.Setup(x => x.HasDenyLocalLogin()).Returns(denyLocalLogin);
var userService = CreateUserService(
localLoginSettingProvider: localLoginSetting.Object,
securitySettings: new SecuritySettings { UsernameIsEmail = false });
var (updateModel, _) = await CreateUserForUpdate(userService);
var updatedEmail = "updated@email.com";
updateModel.Email = updatedEmail;
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
if (shouldSucceed is false)
{
Assert.IsFalse(result.Success);
Assert.AreEqual(UserOperationStatus.EmailCannotBeChanged, result.Status);
return;
}
Assert.IsTrue(result.Success);
// We'll get the user again to ensure that the changes has been persisted
var updatedUser = await userService.GetAsync(result.Result.Key);
Assert.IsNotNull(updatedUser);
Assert.AreEqual(updatedEmail, updatedUser.Email);
}
[Test]
[TestCase("same@email.com", "same@email.com", true)]
[TestCase("different@email.com", "another@email.com", false)]
[TestCase("notAnEmail", "some@email.com", false)]
public async Task UserName_And_Email_Must_Be_same_When_UserNameIsEmail_Equals_True(string userName, string email, bool shouldSucceed)
{
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = true });
var (updateModel, createdUser) = await CreateUserForUpdate(userService);
updateModel.UserName = userName;
updateModel.Email = email;
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
if (shouldSucceed is false)
{
Assert.IsFalse(result.Success);
Assert.AreEqual(UserOperationStatus.UserNameIsNotEmail, result.Status);
return;
}
Assert.IsTrue(result.Success);
var updatedUser = await userService.GetAsync(createdUser.Key);
Assert.IsNotNull(updatedUser);
Assert.AreEqual(userName, updatedUser.Username);
Assert.AreEqual(email, updatedUser.Email);
}
[Test]
public async Task Can_Update_User_Name()
{
const string userName = "UpdateUserName";
const string name = "UpdatedName";
const string email = "update@email.com";
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = false });
var (updateModel, createdUser) = await CreateUserForUpdate(userService);
updateModel.UserName = userName;
updateModel.Email = email;
updateModel.Name = name;
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsTrue(result.Success);
var updatedUser = await userService.GetAsync(createdUser.Key);
Assert.Multiple(() =>
{
Assert.IsNotNull(updatedUser);
Assert.AreEqual(userName, updatedUser.Username);
Assert.AreEqual(email, updatedUser.Email);
Assert.AreEqual(name, updatedUser.Name);
});
}
[Test]
public async Task Cannot_Update_User_To_Have_No_Groups()
{
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = false });
var (updateModel, createdUser) = await CreateUserForUpdate(userService);
updateModel.UserGroupKeys.Clear();
var updateAttempt = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsFalse(updateAttempt.Success);
Assert.AreEqual(UserOperationStatus.NoUserGroup, updateAttempt.Status);
}
[Test]
public async Task Cannot_Change_Email_To_Duplicate_Email_On_Update()
{
var userService = CreateUserService();
var userGroup = await UserGroupService.GetAsync(Constants.Security.AdminGroupAlias);
var email = "thiswillbe@duplicate.com";
var createModel = new UserCreateModel
{
Email = email,
UserName = email,
Name = "Test Mc. Gee",
UserGroupKeys = new HashSet<Guid> { userGroup.Key }
};
var createExisting = await userService.CreateAsync(Constants.Security.SuperUserKey, createModel, true);
Assert.IsTrue(createExisting.Success);
var (updateModel, _) = await CreateUserForUpdate(userService);
updateModel.Email = email;
updateModel.UserName = email;
var updateAttempt = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsFalse(updateAttempt.Success);
Assert.AreEqual(UserOperationStatus.DuplicateEmail, updateAttempt.Status);
}
[Test]
[TestCase("TestUser", "test@user.com", "TestUser", "another@email.com")]
[TestCase("test@email.com", "test@email.com", "test@email.com", "different@email.com")]
[TestCase("SomeName", "test@email.com", "test@email.com", "different@email.com")]
public async Task Cannot_Change_User_Name_To_Duplicate_UserName(string existingUserName, string existingEmail, string updateUserName, string updateEmail)
{
// We also ensure that your username cannot be the same as another users email.
var userService = CreateUserService(new SecuritySettings { UsernameIsEmail = false });
var userGroup = await UserGroupService.GetAsync(Constants.Security.AdminGroupAlias);
var createModel = new UserCreateModel
{
Email = existingEmail,
UserName = existingUserName,
Name = "Test Mc. Gee",
UserGroupKeys = new HashSet<Guid> { userGroup.Key }
};
var createExisting = await userService.CreateAsync(Constants.Security.SuperUserKey, createModel, true);
Assert.IsTrue(createExisting.Success);
var (updateModel, _) = await CreateUserForUpdate(userService);
updateModel.Email = updateEmail;
updateModel.UserName = updateUserName;
var updateAttempt = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsFalse(updateAttempt.Success);
Assert.AreEqual(UserOperationStatus.DuplicateUserName, updateAttempt.Status);
}
[Test]
[TestCase("en-US", true)]
[TestCase("Very much not an ISO Code (:", false)]
[TestCase("da-ZA", false)]
public async Task Iso_Code_Is_Validated(string isoCode, bool shouldSucceed)
{
var userService = CreateUserService();
var (updateModel, _) = await CreateUserForUpdate(userService);
updateModel.LanguageIsoCode = isoCode;
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
if (shouldSucceed is false)
{
Assert.IsFalse(result.Success);
Assert.AreEqual(UserOperationStatus.InvalidIsoCode, result.Status);
return;
}
Assert.IsTrue(result.Success);
// We'll get the user again to ensure that the changes has been persisted
var updatedUser = await userService.GetAsync(result.Result.Key);
Assert.IsNotNull(updatedUser);
Assert.AreEqual(isoCode, updatedUser.Language);
}
// todo Ideally we would test content and media separately and together (Introduce Testcases for switching permutations)
[Test]
public async Task Can_Assign_User_Start_Nodes()
{
var contentService = GetRequiredService<IContentService>();
var mediaService = GetRequiredService<IMediaService>();
var contentStartNode = contentService.GetRootContent().First();
var mediaStartNode = mediaService.CreateMediaWithIdentity("test", -1, "Image");
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = false });
var (updateModel, createdUser) = await CreateUserForUpdate(userService);
updateModel.ContentStartNodeKeys = new HashSet<Guid> { contentStartNode.Key };
updateModel.MediaStartNodeKeys = new HashSet<Guid> { mediaStartNode.Key };
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsTrue(result.Success);
var updatedUser = await userService.GetAsync(createdUser.Key);
Assert.IsNotNull(updatedUser);
Assert.IsNotNull(updatedUser.StartContentIds);
Assert.AreEqual(1, updatedUser.StartContentIds.Length);
Assert.AreEqual(contentStartNode.Id, updatedUser.StartContentIds.First());
Assert.IsNotNull(updatedUser.StartMediaIds);
Assert.AreEqual(1, updatedUser.StartMediaIds.Length);
Assert.AreEqual(mediaStartNode.Id, updatedUser.StartMediaIds.First());
}
[TestCase(false, false)]
[TestCase(false, true)]
[TestCase(true, false)]
[TestCase(true, true)]
public async Task Can_Assign_Root_As_User_Start_Node(bool contentRootAccess, bool mediaRootAccess)
{
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = false });
var (updateModel, createdUser) = await CreateUserForUpdate(userService);
updateModel.HasContentRootAccess = contentRootAccess;
updateModel.HasMediaRootAccess = mediaRootAccess;
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsTrue(result.Success);
var updatedUser = await userService.GetAsync(createdUser.Key);
Assert.IsNotNull(updatedUser);
Assert.IsNotNull(updatedUser.StartContentIds);
if (contentRootAccess)
{
Assert.AreEqual(1, updatedUser.StartContentIds.Length);
Assert.AreEqual(Constants.System.Root, updatedUser.StartContentIds.First());
}
else
{
Assert.IsEmpty(updatedUser.StartContentIds);
}
Assert.IsNotNull(updatedUser.StartMediaIds);
if (mediaRootAccess)
{
Assert.AreEqual(1, updatedUser.StartMediaIds.Length);
Assert.AreEqual(Constants.System.Root, updatedUser.StartMediaIds.First());
}
else
{
Assert.IsEmpty(updatedUser.StartMediaIds);
}
}
// todo Ideally we would test content and media separately and together (Introduce Testcases for switching permutations)
[Test]
public async Task Can_Unassign_User_Start_Nodes()
{
var contentService = GetRequiredService<IContentService>();
var mediaService = GetRequiredService<IMediaService>();
var contentStartNode = contentService.GetRootContent().First();
var mediaStartNode = mediaService.CreateMediaWithIdentity("test", -1, "Image");
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = false });
var (updateModel, createdUser) = await CreateUserForUpdate(userService);
updateModel.ContentStartNodeKeys = new HashSet<Guid> { contentStartNode.Key };
updateModel.MediaStartNodeKeys = new HashSet<Guid> { mediaStartNode.Key };
await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
var updatedUser = await userService.GetAsync(createdUser.Key);
Assert.IsNotNull(updatedUser);
Assert.IsNotEmpty(updatedUser.StartContentIds!);
Assert.IsNotEmpty(updatedUser.StartMediaIds!);
updateModel = await MapUserToUpdateModel(updatedUser);
updateModel.ContentStartNodeKeys = new HashSet<Guid>();
updateModel.MediaStartNodeKeys = new HashSet<Guid>();
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsTrue(result.Success);
updatedUser = await userService.GetAsync(createdUser.Key);
Assert.IsNotNull(updatedUser);
Assert.IsNotNull(updatedUser.StartContentIds);
Assert.IsEmpty(updatedUser.StartContentIds);
Assert.IsNotNull(updatedUser.StartMediaIds);
Assert.IsEmpty(updatedUser.StartMediaIds);
}
// todo Ideally we would test content and media separately and together (Introduce Testcases for switching permutations)
[Test]
public async Task Can_Unassign_Root_As_User_Start_Node()
{
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = false });
var (updateModel, createdUser) = await CreateUserForUpdate(userService);
updateModel.HasContentRootAccess = true;
updateModel.HasMediaRootAccess = true;
await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
var updatedUser = await userService.GetAsync(createdUser.Key);
Assert.IsNotNull(updatedUser);
Assert.IsNotEmpty(updatedUser.StartContentIds!);
Assert.IsNotEmpty(updatedUser.StartMediaIds!);
updateModel = await MapUserToUpdateModel(updatedUser);
updateModel.HasContentRootAccess = false;
updateModel.HasMediaRootAccess = false;
var result = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsTrue(result.Success);
updatedUser = await userService.GetAsync(createdUser.Key);
Assert.IsNotNull(updatedUser);
Assert.IsNotNull(updatedUser.StartContentIds);
Assert.IsEmpty(updatedUser.StartContentIds);
Assert.IsNotNull(updatedUser.StartMediaIds);
Assert.IsEmpty(updatedUser.StartMediaIds);
}
[TestCase(false, false)]
[TestCase(true, true)]
public async Task Cannot_Remove_Admin_Group_From_Only_Admin_User(bool createAdditionalAdminUser, bool expectSuccess)
{
var userService = CreateUserService(securitySettings: new SecuritySettings { UsernameIsEmail = false });
if (createAdditionalAdminUser)
{
var (updateModel, _) = await CreateUserForUpdate(userService);
updateModel.UserGroupKeys = new HashSet<Guid> { Constants.Security.AdminGroupKey };
var updateResult = await userService.UpdateAsync(Constants.Security.SuperUserKey, updateModel);
Assert.IsTrue(updateResult.Success);
}
var adminUser = await userService.GetAsync(Constants.Security.SuperUserKey);
var adminUserUpdateModel = await MapUserToUpdateModel(adminUser);
adminUserUpdateModel.Email = "admin@test.com";
adminUserUpdateModel.UserGroupKeys = new HashSet<Guid> { Constants.Security.EditorGroupKey };
var adminUserUpdateResult = await userService.UpdateAsync(Constants.Security.SuperUserKey, adminUserUpdateModel);
if (expectSuccess)
{
Assert.IsTrue(adminUserUpdateResult.Success);
}
else
{
Assert.IsFalse(adminUserUpdateResult.Success);
Assert.AreEqual(UserOperationStatus.AdminUserGroupMustNotBeEmpty, adminUserUpdateResult.Status);
}
}
}