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

            ApiVoteTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiVoteTypeClientResponseModel> updateResponse = await client.VoteTypeUpdateAsync(model.Id, request);

            context.Entry(context.Set <VoteType>().ToList()[0]).Reload();
            updateResponse.Record.Should().NotBeNull();
            updateResponse.Success.Should().BeTrue();
            updateResponse.Record.Id.Should().Be(1);
            context.Set <VoteType>().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;

            IVoteTypeService service = testServer.Host.Services.GetService(typeof(IVoteTypeService)) as IVoteTypeService;
            var model = new ApiVoteTypeServerRequestModel();

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

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

            ActionResponse deleteResult = await client.VoteTypeDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
コード例 #3
0
 public AbstractVoteTypeController(
     ApiSettings settings,
     ILogger <AbstractVoteTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVoteTypeService voteTypeService,
     IApiVoteTypeModelMapper voteTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VoteTypeService     = voteTypeService;
     this.VoteTypeModelMapper = voteTypeModelMapper;
 }
コード例 #4
0
 public VoteTypeController(
     ApiSettings settings,
     ILogger <VoteTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     IVoteTypeService voteTypeService,
     IApiVoteTypeServerModelMapper voteTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.VoteTypeService     = voteTypeService;
     this.VoteTypeModelMapper = voteTypeModelMapper;
     this.BulkInsertLimit     = 250;
     this.MaxLimit            = 1000;
     this.DefaultLimit        = 250;
 }