Exemplo n.º 1
0
        public virtual async void TestUpdate()
        {
            var builder = new WebHostBuilder()
                          .UseEnvironment("Production")
                          .UseStartup <TestStartup>();
            TestServer testServer = new TestServer(builder);

            var client = new ApiClient(testServer.CreateClient());

            client.SetBearerToken(JWTTestHelper.GenerateBearerToken());
            var mapper = new ApiOrganizationServerModelMapper();
            ApplicationDbContext context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IOrganizationService service             = testServer.Host.Services.GetService(typeof(IOrganizationService)) as IOrganizationService;
            ApiOrganizationServerResponseModel model = await service.Get(1);

            ApiOrganizationClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiOrganizationClientResponseModel> updateResponse = await client.OrganizationUpdateAsync(model.Id, request);

            context.Entry(context.Set <Organization>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <Organization>().ToList()[0].Name.Should().Be("B");

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
        }
Exemplo n.º 2
0
        public void MapServerResponseToRequest()
        {
            var mapper = new ApiOrganizationServerModelMapper();
            var model  = new ApiOrganizationServerResponseModel();

            model.SetProperties(1, "A");
            ApiOrganizationServerRequestModel response = mapper.MapServerResponseToRequest(model);

            response.Should().NotBeNull();
            response.Name.Should().Be("A");
        }
Exemplo n.º 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");
        }