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; IPersonTypeService service = testServer.Host.Services.GetService(typeof(IPersonTypeService)) as IPersonTypeService; var model = new ApiPersonTypeServerRequestModel(); model.SetProperties("B"); CreateResponse <ApiPersonTypeServerResponseModel> createdResponse = await service.Create(model); createdResponse.Success.Should().BeTrue(); ActionResponse deleteResult = await client.PersonTypeDeleteAsync(2); deleteResult.Success.Should().BeTrue(); ApiPersonTypeServerResponseModel verifyResponse = await service.Get(2); verifyResponse.Should().BeNull(); }
public void MapServerRequestToResponse() { var mapper = new ApiPersonTypeServerModelMapper(); var model = new ApiPersonTypeServerRequestModel(); model.SetProperties("A"); ApiPersonTypeServerResponseModel response = mapper.MapServerRequestToResponse(1, model); response.Should().NotBeNull(); response.Name.Should().Be("A"); }
public void CreatePatch() { var mapper = new ApiPersonTypeServerModelMapper(); var model = new ApiPersonTypeServerRequestModel(); model.SetProperties("A"); JsonPatchDocument <ApiPersonTypeServerRequestModel> patch = mapper.CreatePatch(model); var response = new ApiPersonTypeServerRequestModel(); patch.ApplyTo(response); response.Name.Should().Be("A"); }