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

            IOrganizationService service = testServer.Host.Services.GetService(typeof(IOrganizationService)) as IOrganizationService;
            var model = new ApiOrganizationServerRequestModel();

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

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

            ActionResponse deleteResult = await client.OrganizationDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
Exemple #2
0
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiOrganizationServerModelMapper();
            var model  = new ApiOrganizationServerRequestModel();

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

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
        }
Exemple #3
0
        public void CreatePatch()
        {
            var mapper = new ApiOrganizationServerModelMapper();
            var model  = new ApiOrganizationServerRequestModel();

            model.SetProperties("A");

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

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