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