Beispiel #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 ApiOtherTransportServerModelMapper();
            ApplicationDbContext   context             = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            IOtherTransportService service             = testServer.Host.Services.GetService(typeof(IOtherTransportService)) as IOtherTransportService;
            ApiOtherTransportServerResponseModel model = await service.Get(1);

            ApiOtherTransportClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties(1, 1);

            UpdateResponse <ApiOtherTransportClientResponseModel> updateResponse = await client.OtherTransportUpdateAsync(model.Id, request);

            context.Entry(context.Set <OtherTransport>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <OtherTransport>().ToList()[0].HandlerId.Should().Be(1);
            context.Set <OtherTransport>().ToList()[0].PipelineStepId.Should().Be(1);

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.HandlerId.Should().Be(1);
            updateResponse.Record.PipelineStepId.Should().Be(1);
        }
Beispiel #2
0
        public virtual async void TestBulkInsert()
        {
            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;

            var model = new ApiOtherTransportClientRequestModel();

            model.SetProperties(1, 1);
            var model2 = new ApiOtherTransportClientRequestModel();

            model2.SetProperties(1, 1);
            var request = new List <ApiOtherTransportClientRequestModel>()
            {
                model, model2
            };
            CreateResponse <List <ApiOtherTransportClientResponseModel> > result = await client.OtherTransportBulkInsertAsync(request);

            result.Success.Should().BeTrue();
            result.Record.Should().NotBeNull();

            context.Set <OtherTransport>().ToList()[1].HandlerId.Should().Be(1);
            context.Set <OtherTransport>().ToList()[1].PipelineStepId.Should().Be(1);

            context.Set <OtherTransport>().ToList()[2].HandlerId.Should().Be(1);
            context.Set <OtherTransport>().ToList()[2].PipelineStepId.Should().Be(1);
        }
        public virtual ApiOtherTransportClientRequestModel MapServerResponseToClientRequest(
            ApiOtherTransportServerResponseModel response)
        {
            var request = new ApiOtherTransportClientRequestModel();

            request.SetProperties(
                response.HandlerId,
                response.PipelineStepId);
            return(request);
        }
Beispiel #4
0
        public void MapClientRequestToResponse()
        {
            var mapper = new ApiOtherTransportModelMapper();
            var model  = new ApiOtherTransportClientRequestModel();

            model.SetProperties(1, 1);
            ApiOtherTransportClientResponseModel response = mapper.MapClientRequestToResponse(1, model);

            response.Should().NotBeNull();
            response.HandlerId.Should().Be(1);
            response.PipelineStepId.Should().Be(1);
        }