예제 #1
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;

            ICallStatusService service = testServer.Host.Services.GetService(typeof(ICallStatusService)) as ICallStatusService;
            var model = new ApiCallStatusServerRequestModel();

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

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

            ActionResponse deleteResult = await client.CallStatusDeleteAsync(2);

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

            verifyResponse.Should().BeNull();
        }
예제 #2
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 ApiCallStatusServerModelMapper();
            ApplicationDbContext             context = testServer.Host.Services.GetService(typeof(ApplicationDbContext)) as ApplicationDbContext;
            ICallStatusService               service = testServer.Host.Services.GetService(typeof(ICallStatusService)) as ICallStatusService;
            ApiCallStatusServerResponseModel model   = await service.Get(1);

            ApiCallStatusClientRequestModel request = mapper.MapServerResponseToClientRequest(model);

            request.SetProperties("B");

            UpdateResponse <ApiCallStatusClientResponseModel> updateResponse = await client.CallStatusUpdateAsync(model.Id, request);

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

            updateResponse.Record.Id.Should().Be(1);
            updateResponse.Record.Name.Should().Be("B");
        }
예제 #3
0
 public CallLogController(
     ICallCategoryService CallCategoryService,
     ICallStatusService CallStatusService,
     ICallTypeService CallTypeService,
     ICustomerService CustomerService,
     ICallEmotionService CallEmotionService,
     ICallLogService CallLogService,
     IEntityReferenceService EntityReferenceService,
     IAppUserService AppUserService,
     ICustomerLeadService CustomerLeadService,
     IContactService ContactService,
     ICompanyService CompanyService,
     IOrganizationService OrganizationService,
     IOpportunityService OpportunityService,
     ICurrentContext CurrentContext
     , IHttpContextAccessor httpContextAccessor, DataContext _DataContext
     ) : base(httpContextAccessor, _DataContext)
 {
     this.CallCategoryService    = CallCategoryService;
     this.CallStatusService      = CallStatusService;
     this.CallTypeService        = CallTypeService;
     this.CustomerService        = CustomerService;
     this.CallEmotionService     = CallEmotionService;
     this.CallLogService         = CallLogService;
     this.EntityReferenceService = EntityReferenceService;
     this.AppUserService         = AppUserService;
     this.CustomerLeadService    = CustomerLeadService;
     this.ContactService         = ContactService;
     this.CompanyService         = CompanyService;
     this.OrganizationService    = OrganizationService;
     this.OpportunityService     = OpportunityService;
     this.CurrentContext         = CurrentContext;
 }
예제 #4
0
 public CallStatusController(
     ApiSettings settings,
     ILogger <CallStatusController> logger,
     ITransactionCoordinator transactionCoordinator,
     ICallStatusService callStatusService,
     IApiCallStatusServerModelMapper callStatusModelMapper
     )
     : base(settings, logger, transactionCoordinator)
 {
     this.CallStatusService     = callStatusService;
     this.CallStatusModelMapper = callStatusModelMapper;
     this.BulkInsertLimit       = 250;
     this.MaxLimit     = 1000;
     this.DefaultLimit = 250;
 }