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;

            IEventStatusService service = testServer.Host.Services.GetService(typeof(IEventStatusService)) as IEventStatusService;
            var model = new ApiEventStatusServerRequestModel();

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

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

            ActionResponse deleteResult = await client.EventStatusDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiEventStatusServerModelMapper();
            var model  = new ApiEventStatusServerRequestModel();

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

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
        }
        public void CreatePatch()
        {
            var mapper = new ApiEventStatusServerModelMapper();
            var model  = new ApiEventStatusServerRequestModel();

            model.SetProperties("A");

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

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