mirror of
https://github.com/bitwarden/server.git
synced 2024-11-25 12:45:18 +01:00
82908b1fb7
* [EC-634] Extract GenerateLicenseAsync to a query (#2373) * [EC-637] Add license sync to server (#2453) * [EC-1036] Show correct license sync date (#2626) * Update method name per new pattern
28 lines
793 B
C#
28 lines
793 B
C#
using Bit.Core.Models.OrganizationConnectionConfigs;
|
|
using Bit.Test.Common.AutoFixture.Attributes;
|
|
using Xunit;
|
|
|
|
namespace Bit.Core.Test.Models.OrganizationConnectionConfigs;
|
|
|
|
public class BillingSyncConfigTests
|
|
{
|
|
[Theory]
|
|
[BitAutoData]
|
|
public void BillingSyncConfig_CanUse_Success(string billingSyncKey)
|
|
{
|
|
var config = new BillingSyncConfig() { BillingSyncKey = billingSyncKey };
|
|
|
|
Assert.True(config.Validate(out var exception));
|
|
Assert.True(string.IsNullOrEmpty(exception));
|
|
}
|
|
|
|
[Fact]
|
|
public void BillingSyncConfig_CanUse_WhenNoKey_ReturnsFalse()
|
|
{
|
|
var config = new BillingSyncConfig();
|
|
|
|
Assert.False(config.Validate(out var exception));
|
|
Assert.Contains("Failed to get Billing Sync Key", exception);
|
|
}
|
|
}
|