public static void CaptureImplicitTotal(PaySession sess) { var amount = new NFX.Financial.Amount("usd", 17.25M); var charge = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, amount, false, "test payment"); Assert.AreEqual(new NFX.Financial.Amount("usd", .0M), charge.AmountCaptured); charge.Capture(null); Assert.AreEqual(amount, charge.AmountCaptured); }
public static void CapturePartial(PaySession sess) { var chargeAmount = new Financial.Amount("usd", 17.25M); var charge = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, chargeAmount, false, "test payment"); Assert.AreEqual(new Financial.Amount("usd", .0M), charge.AmountCaptured); var captureAmount = new Financial.Amount("usd", 10.00M); charge.Capture(null, amount: captureAmount); Assert.AreEqual(captureAmount, charge.AmountCaptured); }
public static void ChargeCardLuhnErr(PaySession sess) { var ta = sess.Charge(null, FakePaySystemHost.CARD_LUHN_ERR, Account.EmptyInstance, new NFX.Financial.Amount("usd", 15.75M), true, "test payment"); }
public static void ChargeCardDeclined(PaySession sess) { var ta = sess.Charge(null, FakePaySystemHost.CARD_DECLINED, Account.EmptyInstance, new NFX.Financial.Amount("usd", 15.75M), true, "test payment"); }
public static void RefundFullTwoParts(PaySession sess) { var charge = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, Account.EmptyInstance, new NFX.Financial.Amount("usd", 20.00M), true, "Refund Full Explicit Charge"); FakePaySystemHost.Instance.SaveTransaction(charge); var refund1 = charge.Refund(null, new NFX.Financial.Amount("usd", 15.00M), "fraudulent"); Assert.IsNotNull(refund1); Assert.AreEqual(charge.ID, refund1.ParentTransactionID); FakePaySystemHost.Instance.SaveTransaction(refund1); var refund2 = charge.Refund(null, new NFX.Financial.Amount("usd", 5.00M), "requested_by_customer"); Assert.IsNotNull(refund2); Assert.AreEqual(refund2.ParentTransactionID, charge.ID); }
public static void RefundFullImplicit(PaySession sess) { var amountToRefund = new NFX.Financial.Amount("usd", 17.25M); var charge = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, Account.EmptyInstance, amountToRefund, true, "test payment"); Assert.AreEqual(new NFX.Financial.Amount("usd", .0M), charge.AmountRefunded); FakePaySystemHost.Instance.SaveTransaction(charge); var refund = charge.Refund(null); Assert.AreEqual(amountToRefund, charge.AmountRefunded); Assert.AreEqual(charge.ID, refund.ParentTransactionID); }
public static void RefundFullExplicit(PaySession sess) { var charge = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, Account.EmptyInstance, new NFX.Financial.Amount("usd", 20.00M), true, "Refund Full Explicit Charge"); FakePaySystemHost.Instance.SaveTransaction(charge); var refundTA = charge.Refund(null, new NFX.Financial.Amount("usd", 20.00M)); Assert.IsNotNull(refundTA); }
public static void RefundDifferentCurrency(PaySession sess) { var chargeTA = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, Account.EmptyInstance, new NFX.Financial.Amount("usd", 20.00M), true, "Refund Full Explicit Charge"); var refundTA = chargeTA.Refund(null, new NFX.Financial.Amount("eur", 15.00M), "duplicate"); }
public static void ChargeWithBillingAddressInfo(PaySession sess) { Assert.IsNotNull(sess); var ta = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT_WITH_ADDRESS, Account.EmptyInstance, new NFX.Financial.Amount("usd", 15.75M), true, "test payment"); Assert.IsNotNull(ta); }
public static void ChargeCardExpYearErr(PaySession sess) { var ta = sess.Charge(null, FakePaySystemHost.CARD_EXP_YEAR_ERR, Account.EmptyInstance, new Financial.Amount("usd", 15.75M), true, "test payment"); }
public static void ChargeCommon(PaySession sess) { Assert.IsNotNull(sess); var ta = sess.Charge(null, FakePaySystemHost.CARD_ACCOUNT_STRIPE_CORRECT, Account.EmptyInstance, new Financial.Amount("usd", 15.75M), true, "test payment"); Assert.IsNotNull(ta); }