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 ApiVoteTypeServerModelMapper(); ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext; IVoteTypeService service = testServer.Host.Services.GetService(typeof(IVoteTypeService)) as IVoteTypeService; ApiVoteTypeServerResponseModel model = await service.Get(1); ApiVoteTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model); request.SetProperties("B"); UpdateResponse <ApiVoteTypeClientResponseModel> updateResponse = await client.VoteTypeUpdateAsync(model.Id, request); context.Entry(context.Set <VoteType>().ToList()[0]).Reload(); updateResponse.Record.Should().NotBeNull(); updateResponse.Success.Should().BeTrue(); updateResponse.Record.Id.Should().Be(1); context.Set <VoteType>().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 ApiVoteTypeClientRequestModel(); model.SetProperties("B"); var model2 = new ApiVoteTypeClientRequestModel(); model2.SetProperties("C"); var request = new List <ApiVoteTypeClientRequestModel>() { model, model2 }; CreateResponse <List <ApiVoteTypeClientResponseModel> > result = await client.VoteTypeBulkInsertAsync(request); result.Success.Should().BeTrue(); result.Record.Should().NotBeNull(); context.Set <VoteType>().ToList()[1].Name.Should().Be("B"); context.Set <VoteType>().ToList()[2].Name.Should().Be("C"); }
public virtual ApiVoteTypeClientRequestModel MapServerResponseToClientRequest( ApiVoteTypeServerResponseModel response) { var request = new ApiVoteTypeClientRequestModel(); request.SetProperties( response.Name); return(request); }
public void MapClientRequestToResponse() { var mapper = new ApiVoteTypeModelMapper(); var model = new ApiVoteTypeClientRequestModel(); model.SetProperties("A"); ApiVoteTypeClientResponseModel response = mapper.MapClientRequestToResponse(1, model); response.Should().NotBeNull(); response.Name.Should().Be("A"); }