public virtual async void TestUpdate() { var builder = new WebHostBuilder() .UseEnvironment("Production") .UseStartup <TestStartup>(); TestServer testServer = new TestServer(builder); var client = new ApiClient(testServer.CreateClient()); client.SetBearerToken(JWTTestHelper.GenerateBearerToken()); var mapper = new ApiVehicleServerModelMapper(); ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext; IVehicleService service = testServer.Host.Services.GetService(typeof(IVehicleService)) as IVehicleService; ApiVehicleServerResponseModel model = await service.Get(1); ApiVehicleClientRequestModel request = mapper.MapServerResponseToClientRequest(model); request.SetProperties("B"); UpdateResponse <ApiVehicleClientResponseModel> updateResponse = await client.VehicleUpdateAsync(model.Id, request); context.Entry(context.Set <Vehicle>().ToList()[0]).Reload(); updateResponse.Record.Should().NotBeNull(); updateResponse.Success.Should().BeTrue(); updateResponse.Record.Id.Should().Be(1); context.Set <Vehicle>().ToList()[0].Name.Should().Be("B"); updateResponse.Record.Id.Should().Be(1); updateResponse.Record.Name.Should().Be("B"); }
public virtual async void TestBulkInsert() { 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; var model = new ApiVehicleClientRequestModel(); model.SetProperties("B"); var model2 = new ApiVehicleClientRequestModel(); model2.SetProperties("C"); var request = new List <ApiVehicleClientRequestModel>() { model, model2 }; CreateResponse <List <ApiVehicleClientResponseModel> > result = await client.VehicleBulkInsertAsync(request); result.Success.Should().BeTrue(); result.Record.Should().NotBeNull(); context.Set <Vehicle>().ToList()[1].Name.Should().Be("B"); context.Set <Vehicle>().ToList()[2].Name.Should().Be("C"); }
public virtual ApiVehicleClientRequestModel MapServerResponseToClientRequest( ApiVehicleServerResponseModel response) { var request = new ApiVehicleClientRequestModel(); request.SetProperties( response.Name); return(request); }
public void MapClientRequestToResponse() { var mapper = new ApiVehicleModelMapper(); var model = new ApiVehicleClientRequestModel(); model.SetProperties("A"); ApiVehicleClientResponseModel response = mapper.MapClientRequestToResponse(1, model); response.Should().NotBeNull(); response.Name.Should().Be("A"); }