2024-06-24 17:15:47 +02:00
|
|
|
|
using Bit.Api.Billing.Controllers;
|
|
|
|
|
using Bit.Core;
|
|
|
|
|
using Bit.Core.AdminConsole.Entities.Provider;
|
|
|
|
|
using Bit.Core.AdminConsole.Enums.Provider;
|
|
|
|
|
using Bit.Core.AdminConsole.Repositories;
|
|
|
|
|
using Bit.Core.Context;
|
2024-07-31 15:26:44 +02:00
|
|
|
|
using Bit.Core.Models.Api;
|
2024-06-24 17:15:47 +02:00
|
|
|
|
using Bit.Core.Services;
|
|
|
|
|
using Bit.Test.Common.AutoFixture;
|
2024-07-31 15:26:44 +02:00
|
|
|
|
using Microsoft.AspNetCore.Http;
|
|
|
|
|
using Microsoft.AspNetCore.Http.HttpResults;
|
2024-06-24 17:15:47 +02:00
|
|
|
|
using NSubstitute;
|
2024-07-31 15:26:44 +02:00
|
|
|
|
using Xunit;
|
2024-06-24 17:15:47 +02:00
|
|
|
|
|
|
|
|
|
namespace Bit.Api.Test.Billing;
|
|
|
|
|
|
|
|
|
|
public static class Utilities
|
|
|
|
|
{
|
2024-07-31 15:26:44 +02:00
|
|
|
|
public static void AssertNotFound(IResult result)
|
|
|
|
|
{
|
|
|
|
|
Assert.IsType<NotFound<ErrorResponseModel>>(result);
|
|
|
|
|
|
|
|
|
|
var response = ((NotFound<ErrorResponseModel>)result).Value;
|
|
|
|
|
|
|
|
|
|
Assert.Equal("Resource not found.", response.Message);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void AssertUnauthorized(IResult result)
|
|
|
|
|
{
|
|
|
|
|
Assert.IsType<JsonHttpResult<ErrorResponseModel>>(result);
|
|
|
|
|
|
|
|
|
|
var response = (JsonHttpResult<ErrorResponseModel>)result;
|
|
|
|
|
|
|
|
|
|
Assert.Equal(StatusCodes.Status401Unauthorized, response.StatusCode);
|
|
|
|
|
Assert.Equal("Unauthorized.", response.Value.Message);
|
|
|
|
|
}
|
|
|
|
|
|
2024-06-24 17:15:47 +02:00
|
|
|
|
public static void ConfigureStableAdminInputs<T>(
|
|
|
|
|
Provider provider,
|
|
|
|
|
SutProvider<T> sutProvider) where T : BaseProviderController
|
|
|
|
|
{
|
|
|
|
|
ConfigureBaseInputs(provider, sutProvider);
|
|
|
|
|
|
|
|
|
|
sutProvider.GetDependency<ICurrentContext>().ProviderProviderAdmin(provider.Id)
|
|
|
|
|
.Returns(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static void ConfigureStableServiceUserInputs<T>(
|
|
|
|
|
Provider provider,
|
|
|
|
|
SutProvider<T> sutProvider) where T : BaseProviderController
|
|
|
|
|
{
|
|
|
|
|
ConfigureBaseInputs(provider, sutProvider);
|
|
|
|
|
|
|
|
|
|
sutProvider.GetDependency<ICurrentContext>().ProviderUser(provider.Id)
|
|
|
|
|
.Returns(true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void ConfigureBaseInputs<T>(
|
|
|
|
|
Provider provider,
|
|
|
|
|
SutProvider<T> sutProvider) where T : BaseProviderController
|
|
|
|
|
{
|
|
|
|
|
sutProvider.GetDependency<IFeatureService>().IsEnabled(FeatureFlagKeys.EnableConsolidatedBilling)
|
|
|
|
|
.Returns(true);
|
|
|
|
|
|
|
|
|
|
provider.Type = ProviderType.Msp;
|
|
|
|
|
provider.Status = ProviderStatusType.Billable;
|
|
|
|
|
|
|
|
|
|
sutProvider.GetDependency<IProviderRepository>().GetByIdAsync(provider.Id).Returns(provider);
|
|
|
|
|
}
|
|
|
|
|
}
|