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 ApiEventTeacherServerModelMapper();
            ApplicationDbContext context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IEventTeacherService service             = testServer.Host.Services.GetService(typeof(IEventTeacherService)) as IEventTeacherService;
            ApiEventTeacherServerResponseModel model = await service.Get(1);

            ApiEventTeacherClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties(1, 1);

            UpdateResponse <ApiEventTeacherClientResponseModel> updateResponse = await client.EventTeacherUpdateAsync(model.Id, request);

            context.Entry(context.Set <EventTeacher>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <EventTeacher>().ToList()[0].EventId.Should().Be(1);
            context.Set <EventTeacher>().ToList()[0].TeacherId.Should().Be(1);

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.EventId.Should().Be(1);
            updateResponse.Record.TeacherId.Should().Be(1);
        }
예제 #2
0
        public void MapServerResponseToRequest()
        {
            var mapper = new ApiEventTeacherServerModelMapper();
            var model  = new ApiEventTeacherServerResponseModel();

            model.SetProperties(1, 1, 1);
            ApiEventTeacherServerRequestModel response = mapper.MapServerResponseToRequest(model);

            response.Should().NotBeNull();
            response.EventId.Should().Be(1);
            response.TeacherId.Should().Be(1);
        }
예제 #3
0
        public void CreatePatch()
        {
            var mapper = new ApiEventTeacherServerModelMapper();
            var model  = new ApiEventTeacherServerRequestModel();

            model.SetProperties(1, 1);

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

            patch.ApplyTo(response);
            response.EventId.Should().Be(1);
            response.TeacherId.Should().Be(1);
        }