コード例 #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;

            IUnitOfficerService service = testServer.Host.Services.GetService(typeof(IUnitOfficerService)) as IUnitOfficerService;
            var model = new ApiUnitOfficerServerRequestModel();

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

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

            ActionResponse deleteResult = await client.UnitOfficerDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
コード例 #2
0
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiUnitOfficerServerModelMapper();
            var model  = new ApiUnitOfficerServerRequestModel();

            model.SetProperties(1, 1);
            ApiUnitOfficerServerResponseModel response = mapper.MapServerRequestToResponse(1, model);

            response.Should().NotBeNull();
            response.OfficerId.Should().Be(1);
            response.UnitId.Should().Be(1);
        }
コード例 #3
0
        public void CreatePatch()
        {
            var mapper = new ApiUnitOfficerServerModelMapper();
            var model  = new ApiUnitOfficerServerRequestModel();

            model.SetProperties(1, 1);

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

            patch.ApplyTo(response);
            response.OfficerId.Should().Be(1);
            response.UnitId.Should().Be(1);
        }