Exemple #1
0
        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 ApiCountryRequirementServerModelMapper();
            ApplicationDbContext       context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            ICountryRequirementService service             = testServer.Host.Services.GetService(typeof(ICountryRequirementService)) as ICountryRequirementService;
            ApiCountryRequirementServerResponseModel model = await service.Get(1);

            ApiCountryRequirementClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties(1, "B");

            UpdateResponse <ApiCountryRequirementClientResponseModel> updateResponse = await client.CountryRequirementUpdateAsync(model.Id, request);

            context.Entry(context.Set <CountryRequirement>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <CountryRequirement>().ToList()[0].CountryId.Should().Be(1);
            context.Set <CountryRequirement>().ToList()[0].Details.Should().Be("B");

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.CountryId.Should().Be(1);
            updateResponse.Record.Details.Should().Be("B");
        }
Exemple #2
0
        public void MapServerResponseToRequest()
        {
            var mapper = new ApiCountryRequirementServerModelMapper();
            var model  = new ApiCountryRequirementServerResponseModel();

            model.SetProperties(1, 1, "A");
            ApiCountryRequirementServerRequestModel response = mapper.MapServerResponseToRequest(model);

            response.Should().NotBeNull();
            response.CountryId.Should().Be(1);
            response.Details.Should().Be("A");
        }
Exemple #3
0
        public void CreatePatch()
        {
            var mapper = new ApiCountryRequirementServerModelMapper();
            var model  = new ApiCountryRequirementServerRequestModel();

            model.SetProperties(1, "A");

            JsonPatchDocument <ApiCountryRequirementServerRequestModel> patch = mapper.CreatePatch(model);
            var response = new ApiCountryRequirementServerRequestModel();

            patch.ApplyTo(response);
            response.CountryId.Should().Be(1);
            response.Details.Should().Be("A");
        }