Skip to content
Snippets Groups Projects
Commit 3f2963fb authored by Rich's avatar Rich Committed by mattwire
Browse files

Add test for invoicepaymentfailed

parent c2ca0709
No related branches found
No related tags found
1 merge request!1526.6 to master
......@@ -344,7 +344,8 @@ class CRM_Stripe_IpnTest extends CRM_Stripe_BaseTest {
],
]);
//
// Ensure Contribution and recur records remain as-was.
// Ensure Contribution is marked Failed, with the reason, and that the
// ContributionRecur is not changed from Pending.
//
$this->checkContrib([
'contribution_status_id' => 'Failed',
......@@ -353,6 +354,45 @@ class CRM_Stripe_IpnTest extends CRM_Stripe_BaseTest {
]);
$this->checkContribRecur([ 'contribution_status_id' => 'Pending' ]);
}
/**
*
* @see https://stripe.com/docs/billing/invoices/overview#invoice-status-transition-endpoints-and-webhooks
*/
public function testNewRecurringInvoicePaymentFailed() {
$this->mockRecurringPaymentSetup();
$this->simulateEvent([
'id' => 'evt_mock',
'object' => 'event',
'type' => 'invoice.payment_failed',
'livemode' => false,
'pending_webhooks' => 0,
'request' => [ 'id' => NULL ],
'data' => [
'object' => [
'id' => 'in_mock',
'object' => 'invoice',
'charge' => 'ch_mock',
'amount_due' => $this->total*100,
'amount_paid' => 0,
'customer' => 'cus_mock',
'created' => time(),
'status' => 'uncollectible'
]
],
]);
//
// Ensure Contribution is marked Failed, with the reason, and that the
// ContributionRecur is not changed from Pending.
//
$this->checkContrib([
'contribution_status_id' => 'Failed',
'trxn_id' => 'in_mock',
]);
$this->checkContribRecur([ 'contribution_status_id' => 'Pending' ]);
}
/**
* What about the next payments in a recurring?
*
......@@ -526,21 +566,23 @@ class CRM_Stripe_IpnTest extends CRM_Stripe_BaseTest {
'subscription' => 'sub_mock',
'customer' => 'cus_mock',
'created' => time(),
'amount_due' => $this->total*100,
];
$mockCharge1 = new PropertySpy('charge1', $common + [
'id' => 'ch_mock',
'object' => 'charge',
'id' => 'ch_mock',
'object' => 'charge',
'balance_transaction' => 'txn_mock',
'amount' => $this->total*100,
]);
$mockCharge2 = new PropertySpy('charge2', $common + [
'id' => 'ch_mock_2',
'object' => 'charge',
'balance_transaction' => 'txn_mock_2',
'amount' => $this->total*100,
]);
$mockInvoice2 = new PropertySpy('invoice2', $common + [
'id' => 'in_mock_2',
'object' => 'invoice',
'amount_due' => $this->total*100,
'charge' => 'ch_mock_2',
]);
$balanceTransaction2 = new PropertySpy('balance_transaction2', [
......@@ -931,10 +973,6 @@ class PropertySpy implements ArrayAccess, Iterator, Countable, JsonSerializable
return $this->_props;
}
}
class X {
public function hi() {}
}
/**
* Stubs a method by returning a value from a map.
*/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment