コード例 #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 ApiLinkStatusServerModelMapper();
            ApplicationDbContext             context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            ILinkStatusService               service = testServer.Host.Services.GetService(typeof(ILinkStatusService)) as ILinkStatusService;
            ApiLinkStatusServerResponseModel model   = await service.Get(1);

            ApiLinkStatusClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiLinkStatusClientResponseModel> updateResponse = await client.LinkStatusUpdateAsync(model.Id, request);

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

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
        }
コード例 #2
0
        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;

            ILinkStatusService service = testServer.Host.Services.GetService(typeof(ILinkStatusService)) as ILinkStatusService;
            var model = new ApiLinkStatusServerRequestModel();

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

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

            ActionResponse deleteResult = await client.LinkStatusDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
コード例 #3
0
 public AbstractLinkStatusController(
     ApiSettings settings,
     ILogger <AbstractLinkStatusController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkStatusService linkStatusService,
     IApiLinkStatusModelMapper linkStatusModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LinkStatusService     = linkStatusService;
     this.LinkStatusModelMapper = linkStatusModelMapper;
 }
コード例 #4
0
 public LinkStatusController(
     ApiSettings settings,
     ILogger <LinkStatusController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkStatusService linkStatusService,
     IApiLinkStatusServerModelMapper linkStatusModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LinkStatusService     = linkStatusService;
     this.LinkStatusModelMapper = linkStatusModelMapper;
     this.BulkInsertLimit       = 250;
     this.MaxLimit     = 1000;
     this.DefaultLimit = 250;
 }