Example #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;

            ITeamService service = testServer.Host.Services.GetService(typeof(ITeamService)) as ITeamService;
            var          model   = new ApiTeamServerRequestModel();

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

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

            ActionResponse deleteResult = await client.TeamDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
Example #2
0
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiTeamServerModelMapper();
            var model  = new ApiTeamServerRequestModel();

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

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
            response.OrganizationId.Should().Be(1);
        }
Example #3
0
        public void CreatePatch()
        {
            var mapper = new ApiTeamServerModelMapper();
            var model  = new ApiTeamServerRequestModel();

            model.SetProperties("A", 1);

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

            patch.ApplyTo(response);
            response.Name.Should().Be("A");
            response.OrganizationId.Should().Be(1);
        }