You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.5 KiB
39 lines
1.5 KiB
using System.Net;
|
|
using System.Net.Http;
|
|
using System.Text.Json;
|
|
using System.Threading.Tasks;
|
|
using Microsoft.Extensions.Hosting;
|
|
using Shouldly;
|
|
using Volo.Abp.AspNetCore.TestBase;
|
|
|
|
namespace API
|
|
{
|
|
public abstract class APIWebTestBase : AbpAspNetCoreIntegratedTestBase<APIWebTestStartup>
|
|
{
|
|
protected override IHostBuilder CreateHostBuilder()
|
|
{
|
|
return base
|
|
.CreateHostBuilder()
|
|
.UseContentRoot(WebContentDirectoryFinder.CalculateContentRootFolder());
|
|
}
|
|
|
|
protected virtual async Task<T> GetResponseAsObjectAsync<T>(string url, HttpStatusCode expectedStatusCode = HttpStatusCode.OK)
|
|
{
|
|
var strResponse = await GetResponseAsStringAsync(url, expectedStatusCode);
|
|
return JsonSerializer.Deserialize<T>(strResponse, new JsonSerializerOptions(JsonSerializerDefaults.Web));
|
|
}
|
|
|
|
protected virtual async Task<string> GetResponseAsStringAsync(string url, HttpStatusCode expectedStatusCode = HttpStatusCode.OK)
|
|
{
|
|
var response = await GetResponseAsync(url, expectedStatusCode);
|
|
return await response.Content.ReadAsStringAsync();
|
|
}
|
|
|
|
protected virtual async Task<HttpResponseMessage> GetResponseAsync(string url, HttpStatusCode expectedStatusCode = HttpStatusCode.OK)
|
|
{
|
|
var response = await Client.GetAsync(url);
|
|
response.StatusCode.ShouldBe(expectedStatusCode);
|
|
return response;
|
|
}
|
|
}
|
|
}
|
|
|