Esempio n. 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;

            IMessageService service = testServer.Host.Services.GetService(typeof(IMessageService)) as IMessageService;
            var             model   = new ApiMessageServerRequestModel();

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

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

            ActionResponse deleteResult = await client.MessageDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
Esempio n. 2
0
        public void MapServerRequestToResponse()
        {
            var mapper = new ApiMessageServerModelMapper();
            var model  = new ApiMessageServerRequestModel();

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

            response.Should().NotBeNull();
            response.Content.Should().Be("A");
            response.SenderUserId.Should().Be(1);
        }
Esempio n. 3
0
        public void CreatePatch()
        {
            var mapper = new ApiMessageServerModelMapper();
            var model  = new ApiMessageServerRequestModel();

            model.SetProperties("A", 1);

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

            patch.ApplyTo(response);
            response.Content.Should().Be("A");
            response.SenderUserId.Should().Be(1);
        }