mirror of
https://github.com/bitwarden/server.git
synced 2024-11-26 12:55:17 +01:00
5268f2781e
* Start switch to System.Text.Json * Work on switching to System.Text.Json * Main work on STJ refactor * Fix build errors * Run formatting * Delete unused file * Use legacy for two factor providers * Run formatter * Add TokenProviderTests * Run formatting * Fix merge issues * Switch to use JsonSerializer * Address PR feedback * Fix formatting * Ran formatter * Switch to async * Ensure Enums are serialized as strings * Fix formatting * Enqueue single items as arrays * Remove CreateAsync method on AzureQueueService
60 lines
2.1 KiB
C#
60 lines
2.1 KiB
C#
using System.Text.Json;
|
|
using Bit.Core.Models.Data;
|
|
using Bit.Core.Utilities;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.Models
|
|
{
|
|
public class PermissionsTests
|
|
{
|
|
private static readonly string _exampleSerializedPermissions = string.Concat(
|
|
"{",
|
|
"\"accessEventLogs\": false,",
|
|
"\"accessImportExport\": false,",
|
|
"\"accessReports\": false,",
|
|
"\"manageAllCollections\": true,", // exists for backwards compatibility
|
|
"\"createNewCollections\": true,",
|
|
"\"editAnyCollection\": true,",
|
|
"\"deleteAnyCollection\": true,",
|
|
"\"manageAssignedCollections\": false,", // exists for backwards compatibility
|
|
"\"editAssignedCollections\": false,",
|
|
"\"deleteAssignedCollections\": false,",
|
|
"\"manageGroups\": false,",
|
|
"\"managePolicies\": false,",
|
|
"\"manageSso\": false,",
|
|
"\"manageUsers\": false,",
|
|
"\"manageResetPassword\": false",
|
|
"}");
|
|
|
|
[Fact]
|
|
public void Serialization_Success()
|
|
{
|
|
var permissions = new Permissions
|
|
{
|
|
AccessEventLogs = false,
|
|
AccessImportExport = false,
|
|
AccessReports = false,
|
|
CreateNewCollections = true,
|
|
EditAnyCollection = true,
|
|
DeleteAnyCollection = true,
|
|
EditAssignedCollections = false,
|
|
DeleteAssignedCollections = false,
|
|
ManageGroups = false,
|
|
ManagePolicies = false,
|
|
ManageSso = false,
|
|
ManageUsers = false,
|
|
ManageResetPassword = false,
|
|
};
|
|
|
|
// minify expected json
|
|
var expected = JsonSerializer.Serialize(permissions, JsonHelpers.CamelCase);
|
|
|
|
var actual = JsonSerializer.Serialize(
|
|
JsonHelpers.DeserializeOrNew<Permissions>(_exampleSerializedPermissions, JsonHelpers.CamelCase),
|
|
JsonHelpers.CamelCase);
|
|
|
|
Assert.Equal(expected, actual);
|
|
}
|
|
}
|
|
}
|