コード例 #1
0
        public void FasterPaymentsSchemeValidationInsufficientBalance()
        {
            var mockResolvePaymentValidator = new Mock <ResolvePaymentSchemeValidator>();

            mockResolvePaymentValidator.SetupAllProperties();
            mockResolvePaymentValidator.Setup(x => x.GetPaymentSchemeValidator(PaymentScheme.FasterPayments)).Returns(new FasterPaymentSchemeValidator());

            var mockAccountService = new Mock <IAccountService>();

            mockAccountService.SetupAllProperties();
            mockAccountService.Setup(x => x.HasSuffientBalance(It.IsAny <Account>(), It.IsAny <decimal>())).Returns(false);
            var account = new Account()
            {
                Balance               = 9,
                AccountNumber         = "12345",
                Status                = AccountStatus.Live,
                AllowedPaymentSchemes = AllowedPaymentSchemes.FasterPayments
            };

            paymentValidator = new PaymentValidator(mockResolvePaymentValidator.Object, mockAccountService.Object);

            var result = paymentValidator.CheckPaymentEligible(PaymentScheme.FasterPayments, account, 10);

            Assert.IsFalse(result.Success);
        }
コード例 #2
0
        public void BacsSchemeValidationSuccess()
        {
            var mockResolvePaymentValidator = new Mock <ResolvePaymentSchemeValidator>();

            mockResolvePaymentValidator.SetupAllProperties();
            mockResolvePaymentValidator.Setup(x => x.GetPaymentSchemeValidator(PaymentScheme.Bacs)).Returns(new BacsPaymentSchemeValidator());

            var mockAccountService = new Mock <IAccountService>();

            mockAccountService.SetupAllProperties();

            var account = new Account()
            {
                Balance               = 10,
                AccountNumber         = "12345",
                Status                = AccountStatus.Live,
                AllowedPaymentSchemes = AllowedPaymentSchemes.Bacs
            };

            paymentValidator = new PaymentValidator(mockResolvePaymentValidator.Object, mockAccountService.Object);

            var result = paymentValidator.CheckPaymentEligible(PaymentScheme.Bacs, account, 10);

            Assert.IsTrue(result.Success);
        }
コード例 #3
0
ファイル: PaymentService.cs プロジェクト: umanjuna/CB
        public MakePaymentResult MakePayment(MakePaymentRequest request)
        {
            var accountDataStore = ResolveDataStore.GetDataStore(request);
            var account          = accountDataStore.GetAccount(request.DebtorAccountNumber);
            var result           = _paymentValidator.CheckPaymentEligible(request.PaymentScheme, account, request.Amount);

            if (result.Success)
            {
                account.Balance -= request.Amount;
                accountDataStore = ResolveDataStore.GetDataStore(request);
                accountDataStore.UpdateAccount(account);
            }

            return(result);
        }