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 ApiPostTypeServerModelMapper(); ApplicationDbContext context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext; IPostTypeService service = testServer.Host.Services.GetService(typeof(IPostTypeService)) as IPostTypeService; ApiPostTypeServerResponseModel model = await service.Get(1); ApiPostTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model); request.SetProperties("B"); UpdateResponse <ApiPostTypeClientResponseModel> updateResponse = await client.PostTypeUpdateAsync(model.Id, request); context.Entry(context.Set <PostType>().ToList()[0]).Reload(); updateResponse.Record.Should().NotBeNull(); updateResponse.Success.Should().BeTrue(); updateResponse.Record.Id.Should().Be(1); context.Set <PostType>().ToList()[0].RwType.Should().Be("B"); updateResponse.Record.Id.Should().Be(1); updateResponse.Record.RwType.Should().Be("B"); }
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; IPostTypeService service = testServer.Host.Services.GetService(typeof(IPostTypeService)) as IPostTypeService; var model = new ApiPostTypeServerRequestModel(); model.SetProperties("B"); CreateResponse <ApiPostTypeServerResponseModel> createdResponse = await service.Create(model); createdResponse.Success.Should().BeTrue(); ActionResponse deleteResult = await client.PostTypeDeleteAsync(2); deleteResult.Success.Should().BeTrue(); ApiPostTypeServerResponseModel verifyResponse = await service.Get(2); verifyResponse.Should().BeNull(); }