Viewing file: PaymentIntentsGatewayTest.php (12.04 KB) -rwxrwxrwx Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Omnipay\Stripe;
use Omnipay\Tests\GatewayTestCase;
/** * @property PaymentIntentsGateway gateway */ class PaymentIntentsGatewayTest extends GatewayTestCase { public function setUp() { parent::setUp();
$this->gateway = new PaymentIntentsGateway($this->getHttpClient(), $this->getHttpRequest()); }
public function testAuthorize() { $request = $this->gateway->authorize(array('amount' => '10.00'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\AuthorizeRequest', $request); $this->assertSame('10.00', $request->getAmount()); }
public function testCompleteAuthorize() { $request = $this->gateway->completeAuthorize(array('paymentIntentReference' => 'pi_valid_intent'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest', $request); $this->assertSame('pi_valid_intent', $request->getPaymentIntentReference()); }
public function testCapture() { $request = $this->gateway->capture(array('amount' => '10.00'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\CaptureRequest', $request); $this->assertSame('10.00', $request->getAmount()); }
public function testPurchase() { $request = $this->gateway->purchase(array('amount' => '10.00'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\PurchaseRequest', $request); $this->assertSame('10.00', $request->getAmount()); }
public function testCompletePurchase() { $request = $this->gateway->completePurchase(array('paymentIntentReference' => 'pi_valid_intent'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest', $request); $this->assertSame('pi_valid_intent', $request->getPaymentIntentReference()); }
public function testConfirmPaymentIntent() { $request = $this->gateway->confirm(array('paymentIntentReference' => 'pi_valid_intent'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\ConfirmPaymentIntentRequest', $request); $this->assertSame('pi_valid_intent', $request->getPaymentIntentReference()); }
public function testCancelPaymentIntent() { $request = $this->gateway->cancel(array('paymentIntentReference' => 'pi_valid_intent'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\CancelPaymentIntentRequest', $request); $this->assertSame('pi_valid_intent', $request->getPaymentIntentReference()); }
public function testRefund() { $request = $this->gateway->refund(array('amount' => '10.00'));
$this->assertInstanceOf('Omnipay\Stripe\Message\RefundRequest', $request); $this->assertSame('10.00', $request->getAmount()); }
public function testFetchPaymentIntent() { $request = $this->gateway->fetchPaymentIntent(array('paymentIntentReference' => 'pi_valid_intent'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\FetchPaymentIntentRequest', $request); $this->assertSame('pi_valid_intent', $request->getPaymentIntentReference()); }
public function testVoid() { $request = $this->gateway->void();
$this->assertInstanceOf('Omnipay\Stripe\Message\VoidRequest', $request); }
public function testFetchTransaction() { $request = $this->gateway->fetchTransaction(array());
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchTransactionRequest', $request); }
public function testFetchBalanceTransaction() { $request = $this->gateway->fetchBalanceTransaction(array());
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchBalanceTransactionRequest', $request); }
public function testFetchCard() { $request = $this->gateway->fetchCard(array('paymentMethod' => 'pm_1EUon32Tb35ankTnF6nuoRVE'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\FetchPaymentMethodRequest', $request); $this->assertSame('pm_1EUon32Tb35ankTnF6nuoRVE', $request->getPaymentMethod()); $this->assertSame('pm_1EUon32Tb35ankTnF6nuoRVE', $request->getCardReference()); }
public function testCreateCard() { $request = $this->gateway->createCard(array('description' => 'foo', 'token' => 'tok_real_visa'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\CreatePaymentMethodRequest', $request); $this->assertSame('foo', $request->getDescription()); $this->assertSame('tok_real_visa', $request->getToken()); }
public function testUpdateCard() { $request = $this->gateway->updateCard(array('paymentMethod' => 'pm_1EUon32Tb35ankTnF6nuoRVE'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\UpdatePaymentMethodRequest', $request); $this->assertSame('pm_1EUon32Tb35ankTnF6nuoRVE', $request->getPaymentMethod()); $this->assertSame('pm_1EUon32Tb35ankTnF6nuoRVE', $request->getCardReference()); }
public function testDeleteCard() { $request = $this->gateway->deleteCard(array('paymentMethod' => 'pm_1EUon32Tb35ankTnF6nuoRVE'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\DetachPaymentMethodRequest', $request); $this->assertSame('pm_1EUon32Tb35ankTnF6nuoRVE', $request->getPaymentMethod()); $this->assertSame('pm_1EUon32Tb35ankTnF6nuoRVE', $request->getCardReference()); }
public function testAttachCard() { $request = $this->gateway->attachCard(array('paymentMethod' => 'pm_1EUon32Tb35ankTnF6nuoRVE', 'customerReference' => 'cus_1MZSEtqSghKx99'));
$this->assertInstanceOf('Omnipay\Stripe\Message\PaymentIntents\AttachPaymentMethodRequest', $request); $this->assertSame('pm_1EUon32Tb35ankTnF6nuoRVE', $request->getPaymentMethod()); $this->assertSame('cus_1MZSEtqSghKx99', $request->getCustomerReference()); }
public function testCreateCustomer() { $request = $this->gateway->createCustomer(array('description' => 'foo@foo.com'));
$this->assertInstanceOf('Omnipay\Stripe\Message\CreateCustomerRequest', $request); $this->assertSame('foo@foo.com', $request->getDescription()); }
public function testFetchCustomer() { $request = $this->gateway->fetchCustomer(array('customerReference' => 'cus_1MZSEtqSghKx99')); $this->assertInstanceOf('Omnipay\Stripe\Message\FetchCustomerRequest', $request); $this->assertSame('cus_1MZSEtqSghKx99', $request->getCustomerReference()); }
public function testUpdateCustomer() { $request = $this->gateway->updateCustomer(array('customerReference' => 'cus_1MZSEtqSghKx99'));
$this->assertInstanceOf('Omnipay\Stripe\Message\UpdateCustomerRequest', $request); $this->assertSame('cus_1MZSEtqSghKx99', $request->getCustomerReference()); }
public function testDeleteCustomer() { $request = $this->gateway->deleteCustomer(array('customerReference' => 'cus_1MZSEtqSghKx99'));
$this->assertInstanceOf('Omnipay\Stripe\Message\DeleteCustomerRequest', $request); $this->assertSame('cus_1MZSEtqSghKx99', $request->getCustomerReference()); }
public function testCreatePlan() { $request = $this->gateway->createPlan(array('id' => 'basic'));
$this->assertInstanceOf('Omnipay\Stripe\Message\CreatePlanRequest', $request); $this->assertSame('basic', $request->getId()); }
public function testFetchPlan() { $request = $this->gateway->fetchPlan(array('id' => 'basic'));
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchPlanRequest', $request); $this->assertSame('basic', $request->getId()); }
public function testDeletePlan() { $request = $this->gateway->deletePlan(array('id' => 'basic'));
$this->assertInstanceOf('Omnipay\Stripe\Message\DeletePlanRequest', $request); $this->assertSame('basic', $request->getId()); }
public function testListPlans() { $request = $this->gateway->listPlans(array());
$this->assertInstanceOf('Omnipay\Stripe\Message\ListPlansRequest', $request); }
public function testCreateSubscription() { $request = $this->gateway->createSubscription(array('plan' => 'basic'));
$this->assertInstanceOf('Omnipay\Stripe\Message\CreateSubscriptionRequest', $request); $this->assertSame('basic', $request->getPlan()); }
public function testFetchSubscription() { $request = $this->gateway->fetchSubscription(array( 'customerReference' => 'cus_1MZSEtqZghix99', 'subscriptionReference' => 'sub_1mokfidgjdidf' ));
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchSubscriptionRequest', $request); $this->assertSame('cus_1MZSEtqZghix99', $request->getCustomerReference()); $this->assertSame('sub_1mokfidgjdidf', $request->getSubscriptionReference()); }
public function testUpdateSubscription() { $request = $this->gateway->updateSubscription(array('subscriptionReference' => 'sub_1mokfidgjdidf'));
$this->assertInstanceOf('Omnipay\Stripe\Message\UpdateSubscriptionRequest', $request); $this->assertSame('sub_1mokfidgjdidf', $request->getSubscriptionReference()); }
public function testCancelSubscription() { $request = $this->gateway->cancelSubscription(array( 'customerReference' => 'cus_1MZSEtqZghix99', 'subscriptionReference' => 'sub_1mokfidgjdidf' ));
$this->assertInstanceOf('Omnipay\Stripe\Message\CancelSubscriptionRequest', $request); $this->assertSame('cus_1MZSEtqZghix99', $request->getCustomerReference()); $this->assertSame('sub_1mokfidgjdidf', $request->getSubscriptionReference()); }
public function testFetchEvent() { $request = $this->gateway->fetchEvent(array('eventReference' => 'evt_17X23UCryC4r2g4vdolh6muI'));
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchEventRequest', $request); $this->assertSame('evt_17X23UCryC4r2g4vdolh6muI', $request->getEventReference()); }
public function testFetchInvoiceLines() { $request = $this->gateway->fetchInvoiceLines(array('invoiceReference' => 'in_17ZPbRCryC4r2g4vIdAFxptK'));
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchInvoiceLinesRequest', $request); $this->assertSame('in_17ZPbRCryC4r2g4vIdAFxptK', $request->getInvoiceReference()); }
public function testFetchInvoice() { $request = $this->gateway->fetchInvoice(array('invoiceReference' => 'in_17ZPbRCryC4r2g4vIdAFxptK'));
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchInvoiceRequest', $request); $this->assertSame('in_17ZPbRCryC4r2g4vIdAFxptK', $request->getInvoiceReference()); }
public function testListInvoices() { $request = $this->gateway->listInvoices(array());
$this->assertInstanceOf('Omnipay\Stripe\Message\ListInvoicesRequest', $request); }
public function testCreateInvoiceItem() { $request = $this->gateway->createInvoiceItem(array('invoiceItemReference' => 'ii_17ZPbRCryC4r2g4vIdAFxptK'));
$this->assertInstanceOf('Omnipay\Stripe\Message\CreateInvoiceItemRequest', $request); $this->assertSame('ii_17ZPbRCryC4r2g4vIdAFxptK', $request->getInvoiceItemReference()); }
public function testFetchInvoiceItem() { $request = $this->gateway->fetchInvoiceItem(array('invoiceItemReference' => 'ii_17ZPbRCryC4r2g4vIdAFxptK'));
$this->assertInstanceOf('Omnipay\Stripe\Message\FetchInvoiceItemRequest', $request); $this->assertSame('ii_17ZPbRCryC4r2g4vIdAFxptK', $request->getInvoiceItemReference()); }
public function testDeleteInvoiceItem() { $request = $this->gateway->deleteInvoiceItem(array('invoiceItemReference' => 'ii_17ZPbRCryC4r2g4vIdAFxptK'));
$this->assertInstanceOf('Omnipay\Stripe\Message\DeleteInvoiceItemRequest', $request); $this->assertSame('ii_17ZPbRCryC4r2g4vIdAFxptK', $request->getInvoiceItemReference()); } }
|