public virtual async void TestDelete() { var builder = new WebHostBuilder() .UseEnvironment("Production") .UseStartup <TestStartup>(); TestServer testServer = new TestServer(builder); var client = new ApiClient(testServer.CreateClient()); client.SetBearerToken(JWTTestHelper.GenerateBearerToken()); ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext; IFileTypeService service = testServer.Host.Services.GetService(typeof(IFileTypeService)) as IFileTypeService; var model = new ApiFileTypeServerRequestModel(); model.SetProperties("B"); CreateResponse <ApiFileTypeServerResponseModel> createdResponse = await service.Create(model); createdResponse.Success.Should().BeTrue(); ActionResponse deleteResult = await client.FileTypeDeleteAsync(2); deleteResult.Success.Should().BeTrue(); ApiFileTypeServerResponseModel verifyResponse = await service.Get(2); verifyResponse.Should().BeNull(); }
public void MapServerRequestToResponse() { var mapper = new ApiFileTypeServerModelMapper(); var model = new ApiFileTypeServerRequestModel(); model.SetProperties("A"); ApiFileTypeServerResponseModel response = mapper.MapServerRequestToResponse(1, model); response.Should().NotBeNull(); response.Name.Should().Be("A"); }
public void CreatePatch() { var mapper = new ApiFileTypeServerModelMapper(); var model = new ApiFileTypeServerRequestModel(); model.SetProperties("A"); JsonPatchDocument <ApiFileTypeServerRequestModel> patch = mapper.CreatePatch(model); var response = new ApiFileTypeServerRequestModel(); patch.ApplyTo(response); response.Name.Should().Be("A"); }