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

            ApiPostHistoryTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiPostHistoryTypeClientResponseModel> updateResponse = await client.PostHistoryTypeUpdateAsync(model.Id, request);

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

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.RwType.Should().Be("B");
        }
        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;

            IPostHistoryTypeService service = testServer.Host.Services.GetService(typeof(IPostHistoryTypeService)) as IPostHistoryTypeService;
            var model = new ApiPostHistoryTypeServerRequestModel();

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

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

            ActionResponse deleteResult = await client.PostHistoryTypeDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
Ejemplo n.º 3
0
 public AbstractPostHistoryTypeController(
     ApiSettings settings,
     ILogger <AbstractPostHistoryTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostHistoryTypeService postHistoryTypeService,
     IApiPostHistoryTypeModelMapper postHistoryTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PostHistoryTypeService     = postHistoryTypeService;
     this.PostHistoryTypeModelMapper = postHistoryTypeModelMapper;
 }
 public PostHistoryTypeController(
     ApiSettings settings,
     ILogger <PostHistoryTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IPostHistoryTypeService postHistoryTypeService,
     IApiPostHistoryTypeServerModelMapper postHistoryTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.PostHistoryTypeService     = postHistoryTypeService;
     this.PostHistoryTypeModelMapper = postHistoryTypeModelMapper;
     this.BulkInsertLimit            = 250;
     this.MaxLimit     = 1000;
     this.DefaultLimit = 250;
 }