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

            ApiHandlerPipelineStepClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties(1, 1);

            UpdateResponse <ApiHandlerPipelineStepClientResponseModel> updateResponse = await client.HandlerPipelineStepUpdateAsync(model.Id, request);

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

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.HandlerId.Should().Be(1);
            updateResponse.Record.PipelineStepId.Should().Be(1);
        }
        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;

            IHandlerPipelineStepService service = testServer.Host.Services.GetService(typeof(IHandlerPipelineStepService)) as IHandlerPipelineStepService;
            var model = new ApiHandlerPipelineStepServerRequestModel();

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

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

            ActionResponse deleteResult = await client.HandlerPipelineStepDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
 public AbstractHandlerPipelineStepController(
     ApiSettings settings,
     ILogger <AbstractHandlerPipelineStepController> logger,
     ITransactionCoordinator transactionCoordinator,
     IHandlerPipelineStepService handlerPipelineStepService,
     IApiHandlerPipelineStepModelMapper handlerPipelineStepModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.HandlerPipelineStepService     = handlerPipelineStepService;
     this.HandlerPipelineStepModelMapper = handlerPipelineStepModelMapper;
 }
Example #4
0
 public HandlerPipelineStepController(
     ApiSettings settings,
     ILogger <HandlerPipelineStepController> logger,
     ITransactionCoordinator transactionCoordinator,
     IHandlerPipelineStepService handlerPipelineStepService,
     IApiHandlerPipelineStepServerModelMapper handlerPipelineStepModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.HandlerPipelineStepService     = handlerPipelineStepService;
     this.HandlerPipelineStepModelMapper = handlerPipelineStepModelMapper;
     this.BulkInsertLimit = 250;
     this.MaxLimit        = 1000;
     this.DefaultLimit    = 250;
 }