mirror of
https://github.com/bitwarden/server.git
synced 2024-11-22 12:15:36 +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
51 lines
2.0 KiB
C#
51 lines
2.0 KiB
C#
using AutoFixture;
|
|
using Bit.Core.Services;
|
|
using Bit.Core.Settings;
|
|
using NSubstitute;
|
|
using RichardSzalay.MockHttp;
|
|
|
|
namespace Bit.Test.Common.AutoFixture;
|
|
|
|
public static class SutProviderExtensions
|
|
{
|
|
public static SutProvider<T> ConfigureBaseIdentityClientService<T>(this SutProvider<T> sutProvider,
|
|
string requestUrlFragment, HttpMethod requestHttpMethod, string identityResponse = null, string apiResponse = null)
|
|
where T : BaseIdentityClientService
|
|
{
|
|
var fixture = new Fixture().WithAutoNSubstitutionsAutoPopulatedProperties();
|
|
fixture.AddMockHttp();
|
|
|
|
var settings = fixture.Create<IGlobalSettings>();
|
|
settings.SelfHosted = true;
|
|
settings.EnableCloudCommunication = true;
|
|
|
|
var apiUri = fixture.Create<Uri>();
|
|
var identityUri = fixture.Create<Uri>();
|
|
settings.Installation.ApiUri.Returns(apiUri.ToString());
|
|
settings.Installation.IdentityUri.Returns(identityUri.ToString());
|
|
|
|
var apiHandler = new MockHttpMessageHandler();
|
|
var identityHandler = new MockHttpMessageHandler();
|
|
var syncUri = string.Concat(apiUri, requestUrlFragment);
|
|
var tokenUri = string.Concat(identityUri, "connect/token");
|
|
|
|
apiHandler.When(requestHttpMethod, syncUri)
|
|
.Respond("application/json", apiResponse);
|
|
identityHandler.When(HttpMethod.Post, tokenUri)
|
|
.Respond("application/json", identityResponse ?? "{\"access_token\":\"string\",\"expires_in\":3600,\"token_type\":\"Bearer\",\"scope\":\"string\"}");
|
|
|
|
|
|
var apiHttp = apiHandler.ToHttpClient();
|
|
var identityHttp = identityHandler.ToHttpClient();
|
|
|
|
var mockHttpClientFactory = Substitute.For<IHttpClientFactory>();
|
|
mockHttpClientFactory.CreateClient(Arg.Is("client")).Returns(apiHttp);
|
|
mockHttpClientFactory.CreateClient(Arg.Is("identity")).Returns(identityHttp);
|
|
|
|
return sutProvider
|
|
.SetDependency(settings)
|
|
.SetDependency(mockHttpClientFactory)
|
|
.Create();
|
|
}
|
|
}
|