Example #1
0
        public LinkManageModel()
        {
            _linkTypeService = HostContainer.GetInstance <ILinkTypeService>();

            LinkTypes  = _linkTypeService.GetLinkTypes();
            UrlTargets = EnumUtilities.GenerateSelectListItems <CommonEnums.UrlTarget>(GenerateEnumType.DescriptionValueAndDescriptionText);
        }
        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 ApiLinkTypeServerModelMapper();
            ApplicationDbContext           context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            ILinkTypeService               service = testServer.Host.Services.GetService(typeof(ILinkTypeService)) as ILinkTypeService;
            ApiLinkTypeServerResponseModel model   = await service.Get(1);

            ApiLinkTypeClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiLinkTypeClientResponseModel> updateResponse = await client.LinkTypeUpdateAsync(model.Id, request);

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

            ILinkTypeService service = testServer.Host.Services.GetService(typeof(ILinkTypeService)) as ILinkTypeService;
            var model = new ApiLinkTypeServerRequestModel();

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

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

            ActionResponse deleteResult = await client.LinkTypeDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
Example #4
0
 public AbstractLinkTypeController(
     ApiSettings settings,
     ILogger <AbstractLinkTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkTypeService linkTypeService,
     IApiLinkTypeModelMapper linkTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LinkTypeService     = linkTypeService;
     this.LinkTypeModelMapper = linkTypeModelMapper;
 }
Example #5
0
 public LinkTypeController(
     ApiSettings settings,
     ILogger <LinkTypeController> logger,
     ITransactionCoordinator transactionCoordinator,
     ILinkTypeService linkTypeService,
     IApiLinkTypeServerModelMapper linkTypeModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.LinkTypeService     = linkTypeService;
     this.LinkTypeModelMapper = linkTypeModelMapper;
     this.BulkInsertLimit     = 250;
     this.MaxLimit            = 1000;
     this.DefaultLimit        = 250;
 }
Example #6
0
 public LinkTypesController(ILinkTypeService linkTypeService)
 {
     _linkTypeService = linkTypeService;
 }