using System.Linq.Expressions; using System.Net; using NUnit.Framework; using Umbraco.Cms.Api.Management.Controllers.Dictionary; using Umbraco.Cms.Core; using Umbraco.Cms.Core.Models; using Umbraco.Cms.Core.Services; namespace Umbraco.Cms.Tests.Integration.ManagementApi.Dictionary; public class ExportDictionaryControllerTests : ManagementApiUserGroupTestBase { private IDictionaryItemService DictionaryItemService => GetRequiredService(); private Guid _dictionaryKey; [SetUp] public async Task Setup() { var dictionaryItem = new DictionaryItem(Constants.System.RootKey, Guid.NewGuid().ToString()); _dictionaryKey = dictionaryItem.Key; await DictionaryItemService.CreateAsync(dictionaryItem, Constants.Security.SuperUserKey); } protected override Expression> MethodSelector => x => x.Export(CancellationToken.None, _dictionaryKey, false); protected override UserGroupAssertionModel AdminUserGroupAssertionModel => new() { ExpectedStatusCode = HttpStatusCode.OK }; protected override UserGroupAssertionModel EditorUserGroupAssertionModel => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; protected override UserGroupAssertionModel SensitiveDataUserGroupAssertionModel => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; protected override UserGroupAssertionModel TranslatorUserGroupAssertionModel => new() { ExpectedStatusCode = HttpStatusCode.OK }; protected override UserGroupAssertionModel WriterUserGroupAssertionModel => new() { ExpectedStatusCode = HttpStatusCode.Forbidden }; protected override UserGroupAssertionModel UnauthorizedUserGroupAssertionModel => new() { ExpectedStatusCode = HttpStatusCode.Unauthorized }; }