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