Beispiel #1
0
        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;

            ICountryRequirementService service = testServer.Host.Services.GetService(typeof(ICountryRequirementService)) as ICountryRequirementService;
            var model = new ApiCountryRequirementServerRequestModel();

            model.SetProperties(1, "B");
            CreateResponse <ApiCountryRequirementServerResponseModel> createdResponse = await service.Create(model);

            createdResponse.Success.Should().BeTrue();

            ActionResponse deleteResult = await client.CountryRequirementDeleteAsync(2);

            deleteResult.Success.Should().BeTrue();
            ApiCountryRequirementServerResponseModel verifyResponse = await service.Get(2);

            verifyResponse.Should().BeNull();
        }
Beispiel #2
0
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiCountryRequirementServerModelMapper();
            var model  = new ApiCountryRequirementServerRequestModel();

            model.SetProperties(1, "A");
            ApiCountryRequirementServerResponseModel response = mapper.MapServerRequestToResponse(1, model);

            response.Should().NotBeNull();
            response.CountryId.Should().Be(1);
            response.Details.Should().Be("A");
        }
Beispiel #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");
        }