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 ApiVehCapabilityClientRequestModel(); model.SetProperties("B"); var model2 = new ApiVehCapabilityClientRequestModel(); model2.SetProperties("C"); var request = new List <ApiVehCapabilityClientRequestModel>() { model, model2 }; CreateResponse <List <ApiVehCapabilityClientResponseModel> > result = await client.VehCapabilityBulkInsertAsync(request); result.Success.Should().BeTrue(); result.Record.Should().NotBeNull(); context.Set <VehCapability>().ToList()[1].Name.Should().Be("B"); context.Set <VehCapability>().ToList()[2].Name.Should().Be("C"); }
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 ApiVehCapabilityServerModelMapper(); ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext; IVehCapabilityService service = testServer.Host.Services.GetService(typeof(IVehCapabilityService)) as IVehCapabilityService; ApiVehCapabilityServerResponseModel model = await service.Get(1); ApiVehCapabilityClientRequestModel request = mapper.MapServerResponseToClientRequest(model); request.SetProperties("B"); UpdateResponse <ApiVehCapabilityClientResponseModel> updateResponse = await client.VehCapabilityUpdateAsync(model.Id, request); context.Entry(context.Set <VehCapability>().ToList()[0]).Reload(); updateResponse.Record.Should().NotBeNull(); updateResponse.Success.Should().BeTrue(); updateResponse.Record.Id.Should().Be(1); context.Set <VehCapability>().ToList()[0].Name.Should().Be("B"); updateResponse.Record.Id.Should().Be(1); updateResponse.Record.Name.Should().Be("B"); }
public virtual ApiVehCapabilityClientRequestModel MapServerResponseToClientRequest( ApiVehCapabilityServerResponseModel response) { var request = new ApiVehCapabilityClientRequestModel(); request.SetProperties( response.Name); return(request); }
public void MapClientResponseToRequest() { var mapper = new ApiVehCapabilityModelMapper(); var model = new ApiVehCapabilityClientResponseModel(); model.SetProperties(1, "A"); ApiVehCapabilityClientRequestModel response = mapper.MapClientResponseToRequest(model); response.Should().NotBeNull(); response.Name.Should().Be("A"); }