2022-06-30 01:46:41 +02:00
|
|
|
|
using System.Text.Json;
|
2023-04-14 19:25:56 +02:00
|
|
|
|
using Bit.Core.Auth.Enums;
|
|
|
|
|
using Bit.Core.Auth.Models;
|
2022-02-10 19:48:06 +01:00
|
|
|
|
using Bit.Core.Entities;
|
|
|
|
|
using Bit.Test.Common.Helpers;
|
|
|
|
|
using Xunit;
|
|
|
|
|
|
|
|
|
|
namespace Bit.Core.Test.Entities;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
public class UserTests
|
|
|
|
|
{
|
|
|
|
|
// KB MB GB
|
|
|
|
|
public const long Multiplier = 1024 * 1024 * 1024;
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
|
|
|
|
[Fact]
|
2022-02-10 19:48:06 +01:00
|
|
|
|
public void StorageBytesRemaining_HasMax_DoesNotHaveStorage_ReturnsMaxAsBytes()
|
|
|
|
|
{
|
|
|
|
|
short maxStorageGb = 1;
|
|
|
|
|
|
|
|
|
|
var user = new User
|
|
|
|
|
{
|
|
|
|
|
MaxStorageGb = maxStorageGb,
|
|
|
|
|
Storage = null,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var bytesRemaining = user.StorageBytesRemaining();
|
|
|
|
|
|
|
|
|
|
Assert.Equal(bytesRemaining, maxStorageGb * Multiplier);
|
2022-08-29 21:53:48 +02:00
|
|
|
|
}
|
2022-02-10 19:48:06 +01:00
|
|
|
|
|
2022-08-29 21:53:48 +02:00
|
|
|
|
[Theory]
|
2022-02-10 19:48:06 +01:00
|
|
|
|
[InlineData(2, 1 * Multiplier, 1 * Multiplier)]
|
2022-08-29 21:53:48 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
public void StorageBytesRemaining_HasMax_HasStorage_ReturnRemainingStorage(short maxStorageGb, long storageBytes, long expectedRemainingBytes)
|
2022-08-29 22:06:55 +02:00
|
|
|
|
{
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var user = new User
|
|
|
|
|
{
|
|
|
|
|
MaxStorageGb = maxStorageGb,
|
|
|
|
|
Storage = storageBytes,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
var bytesRemaining = user.StorageBytesRemaining();
|
|
|
|
|
|
|
|
|
|
Assert.Equal(expectedRemainingBytes, bytesRemaining);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static readonly Dictionary<TwoFactorProviderType, TwoFactorProvider> _testTwoFactorConfig = new Dictionary<TwoFactorProviderType, TwoFactorProvider>
|
2022-08-29 22:06:55 +02:00
|
|
|
|
{
|
2022-02-10 19:48:06 +01:00
|
|
|
|
[TwoFactorProviderType.WebAuthn] = new TwoFactorProvider
|
|
|
|
|
{
|
|
|
|
|
Enabled = true,
|
|
|
|
|
MetaData = new Dictionary<string, object>
|
|
|
|
|
{
|
|
|
|
|
["Item"] = "thing",
|
|
|
|
|
},
|
2022-08-29 22:06:55 +02:00
|
|
|
|
},
|
2022-02-10 19:48:06 +01:00
|
|
|
|
[TwoFactorProviderType.Email] = new TwoFactorProvider
|
2022-08-29 22:06:55 +02:00
|
|
|
|
{
|
2022-02-10 19:48:06 +01:00
|
|
|
|
Enabled = false,
|
|
|
|
|
MetaData = new Dictionary<string, object>
|
|
|
|
|
{
|
|
|
|
|
["Email"] = "test@email.com",
|
|
|
|
|
},
|
2022-08-29 22:06:55 +02:00
|
|
|
|
},
|
2022-02-10 19:48:06 +01:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
[Fact]
|
|
|
|
|
public void SetTwoFactorProviders_Success()
|
|
|
|
|
{
|
|
|
|
|
var user = new User();
|
|
|
|
|
user.SetTwoFactorProviders(_testTwoFactorConfig);
|
2022-08-29 20:53:16 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
using var jsonDocument = JsonDocument.Parse(user.TwoFactorProviders);
|
|
|
|
|
var root = jsonDocument.RootElement;
|
2022-08-29 20:53:16 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var webAuthn = AssertHelper.AssertJsonProperty(root, "7", JsonValueKind.Object);
|
|
|
|
|
AssertHelper.AssertJsonProperty(webAuthn, "Enabled", JsonValueKind.True);
|
|
|
|
|
var webMetaData = AssertHelper.AssertJsonProperty(webAuthn, "MetaData", JsonValueKind.Object);
|
|
|
|
|
AssertHelper.AssertJsonProperty(webMetaData, "Item", JsonValueKind.String);
|
2022-08-29 20:53:16 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var email = AssertHelper.AssertJsonProperty(root, "1", JsonValueKind.Object);
|
|
|
|
|
AssertHelper.AssertJsonProperty(email, "Enabled", JsonValueKind.False);
|
|
|
|
|
var emailMetaData = AssertHelper.AssertJsonProperty(email, "MetaData", JsonValueKind.Object);
|
|
|
|
|
AssertHelper.AssertJsonProperty(emailMetaData, "Email", JsonValueKind.String);
|
2022-08-29 20:53:16 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
2022-02-10 19:48:06 +01:00
|
|
|
|
public void GetTwoFactorProviders_Success()
|
2022-08-29 20:53:16 +02:00
|
|
|
|
{
|
2022-02-10 19:48:06 +01:00
|
|
|
|
// This is to get rid of the cached dictionary the SetTwoFactorProviders keeps so we can fully test the JSON reading
|
|
|
|
|
// It intent is to mimic a storing of the entity in the database and it being read later
|
|
|
|
|
var tempUser = new User();
|
|
|
|
|
tempUser.SetTwoFactorProviders(_testTwoFactorConfig);
|
|
|
|
|
var user = new User
|
2022-08-29 21:53:48 +02:00
|
|
|
|
{
|
2022-02-10 19:48:06 +01:00
|
|
|
|
TwoFactorProviders = tempUser.TwoFactorProviders,
|
|
|
|
|
};
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var twoFactorProviders = user.GetTwoFactorProviders();
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var webAuthn = Assert.Contains(TwoFactorProviderType.WebAuthn, (IDictionary<TwoFactorProviderType, TwoFactorProvider>)twoFactorProviders);
|
|
|
|
|
Assert.True(webAuthn.Enabled);
|
|
|
|
|
Assert.NotNull(webAuthn.MetaData);
|
|
|
|
|
var webAuthnMetaDataItem = Assert.Contains("Item", (IDictionary<string, object>)webAuthn.MetaData);
|
|
|
|
|
Assert.Equal("thing", webAuthnMetaDataItem);
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var email = Assert.Contains(TwoFactorProviderType.Email, (IDictionary<TwoFactorProviderType, TwoFactorProvider>)twoFactorProviders);
|
|
|
|
|
Assert.False(email.Enabled);
|
|
|
|
|
Assert.NotNull(email.MetaData);
|
|
|
|
|
var emailMetaDataEmail = Assert.Contains("Email", (IDictionary<string, object>)email.MetaData);
|
|
|
|
|
Assert.Equal("test@email.com", emailMetaDataEmail);
|
2022-08-29 22:06:55 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[Fact]
|
2022-02-10 19:48:06 +01:00
|
|
|
|
public void GetTwoFactorProviders_SavedWithName_Success()
|
2022-08-29 22:06:55 +02:00
|
|
|
|
{
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var user = new User();
|
|
|
|
|
// This should save items with the string name of the enum and we will validate that we can read
|
|
|
|
|
// from that just incase some users have it saved that way.
|
|
|
|
|
user.TwoFactorProviders = JsonSerializer.Serialize(_testTwoFactorConfig);
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
// Preliminary Asserts to make sure we are testing what we want to be testing
|
|
|
|
|
using var jsonDocument = JsonDocument.Parse(user.TwoFactorProviders);
|
|
|
|
|
var root = jsonDocument.RootElement;
|
|
|
|
|
// This means it saved the enum as its string name
|
|
|
|
|
AssertHelper.AssertJsonProperty(root, "WebAuthn", JsonValueKind.Object);
|
|
|
|
|
AssertHelper.AssertJsonProperty(root, "Email", JsonValueKind.Object);
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
// Actual checks
|
|
|
|
|
var twoFactorProviders = user.GetTwoFactorProviders();
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var webAuthn = Assert.Contains(TwoFactorProviderType.WebAuthn, (IDictionary<TwoFactorProviderType, TwoFactorProvider>)twoFactorProviders);
|
|
|
|
|
Assert.True(webAuthn.Enabled);
|
|
|
|
|
Assert.NotNull(webAuthn.MetaData);
|
|
|
|
|
var webAuthnMetaDataItem = Assert.Contains("Item", (IDictionary<string, object>)webAuthn.MetaData);
|
|
|
|
|
Assert.Equal("thing", webAuthnMetaDataItem);
|
2022-08-29 22:06:55 +02:00
|
|
|
|
|
2022-02-10 19:48:06 +01:00
|
|
|
|
var email = Assert.Contains(TwoFactorProviderType.Email, (IDictionary<TwoFactorProviderType, TwoFactorProvider>)twoFactorProviders);
|
|
|
|
|
Assert.False(email.Enabled);
|
|
|
|
|
Assert.NotNull(email.MetaData);
|
|
|
|
|
var emailMetaDataEmail = Assert.Contains("Email", (IDictionary<string, object>)email.MetaData);
|
|
|
|
|
Assert.Equal("test@email.com", emailMetaDataEmail);
|
|
|
|
|
}
|
|
|
|
|
}
|