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;

            ILocationService service = testServer.Host.Services.GetService(typeof(ILocationService)) as ILocationService;
            var model = new ApiLocationServerRequestModel();

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

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

            ActionResponse deleteResult = await client.LocationDeleteAsync(2);

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

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

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

            response.Should().NotBeNull();
            response.GpsLat.Should().Be(1);
            response.GpsLong.Should().Be(1);
            response.LocationName.Should().Be("A");
        }
Beispiel #3
0
        public void CreatePatch()
        {
            var mapper = new ApiLocationServerModelMapper();
            var model  = new ApiLocationServerRequestModel();

            model.SetProperties(1, 1, "A");

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

            patch.ApplyTo(response);
            response.GpsLat.Should().Be(1);
            response.GpsLong.Should().Be(1);
            response.LocationName.Should().Be("A");
        }