Skip to content

Commit 64e909b

Browse files
committed
Move ApplicationFee to stripe-mock and fix ApplicationFee decoding
The convertToStripeObject method was not properly decoding the response for application fees and we ended up with StripeObject instead. This is potentially a major version fix though I'm not convincing myself. Ultimately it's still a StripeObject though casted to the right class with access to extra methods.
1 parent 057a1be commit 64e909b

File tree

2 files changed

+44
-65
lines changed

2 files changed

+44
-65
lines changed

lib/Util/Util.php

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public static function convertToStripeObject($resp, $opts)
6868
'account' => 'Stripe\\Account',
6969
'alipay_account' => 'Stripe\\AlipayAccount',
7070
'apple_pay_domain' => 'Stripe\\ApplePayDomain',
71+
'application_fee' => 'Stripe\\ApplicationFee',
7172
'bank_account' => 'Stripe\\BankAccount',
7273
'balance_transaction' => 'Stripe\\BalanceTransaction',
7374
'card' => 'Stripe\\Card',

tests/ApplicationFeeTest.php

+43-65
Original file line numberDiff line numberDiff line change
@@ -2,92 +2,70 @@
22

33
namespace Stripe;
44

5-
class ApplicationFeeTest extends TestCase
5+
define('TEST_RESOURCE_ID', 'fee_123');
6+
define('TEST_FEEREFUND_ID', 'fr_123');
7+
8+
class ApplicationFeeTest extends StripeMockTestCase
69
{
7-
public function testUrls()
10+
public function testIsListable()
811
{
9-
$applicationFee = new ApplicationFee('abcd/efgh');
10-
$this->assertSame(
11-
$applicationFee->instanceUrl(),
12-
'/v1/application_fees/abcd%2Fefgh'
12+
$this->expectsRequest(
13+
'get',
14+
'/v1/application_fees'
1315
);
16+
$resources = ApplicationFee::all();
17+
$this->assertTrue(is_array($resources->data));
18+
$this->assertSame("Stripe\\ApplicationFee", get_class($resources->data[0]));
1419
}
1520

16-
public function testList()
21+
public function testIsRetrievable()
1722
{
18-
self::authorizeFromEnv();
19-
$d = ApplicationFee::all();
20-
$this->assertSame($d->url, '/v1/application_fees');
23+
$this->expectsRequest(
24+
'get',
25+
'/v1/application_fees/' . TEST_RESOURCE_ID
26+
);
27+
$resource = ApplicationFee::retrieve(TEST_RESOURCE_ID);
28+
$this->assertSame("Stripe\\ApplicationFee", get_class($resource));
2129
}
2230

23-
public function testStaticCreateRefund()
31+
public function testCanCreateRefund()
2432
{
25-
$this->mockRequest(
26-
'POST',
27-
'/v1/application_fees/fee_123/refunds',
28-
array(),
29-
array('id' => 'fr_123', 'object' => 'fee_refund')
30-
);
31-
32-
$feeRefund = ApplicationFee::createRefund(
33-
'fee_123'
33+
$this->expectsRequest(
34+
'post',
35+
'/v1/application_fees/' . TEST_RESOURCE_ID . '/refunds'
3436
);
35-
36-
$this->assertSame('fr_123', $feeRefund->id);
37-
$this->assertSame('fee_refund', $feeRefund->object);
37+
$resource = ApplicationFee::createRefund(TEST_RESOURCE_ID);
38+
$this->assertSame("Stripe\\ApplicationFeeRefund", get_class($resource));
3839
}
3940

40-
public function testStaticRetrieveRefund()
41+
public function testCanRetrieveRefund()
4142
{
42-
$this->mockRequest(
43-
'GET',
44-
'/v1/application_fees/fee_123/refunds/fr_123',
45-
array(),
46-
array('id' => 'fr_123', 'object' => 'fee_refund')
47-
);
48-
49-
$feeRefund = ApplicationFee::retrieveRefund(
50-
'fee_123',
51-
'fr_123'
43+
$this->expectsRequest(
44+
'get',
45+
'/v1/application_fees/' . TEST_RESOURCE_ID . '/refunds/' . TEST_FEEREFUND_ID
5246
);
53-
54-
$this->assertSame('fr_123', $feeRefund->id);
55-
$this->assertSame('fee_refund', $feeRefund->object);
47+
$resource = ApplicationFee::retrieveRefund(TEST_RESOURCE_ID, TEST_FEEREFUND_ID);
48+
$this->assertSame("Stripe\\ApplicationFeeRefund", get_class($resource));
5649
}
5750

58-
public function testStaticUpdateRefund()
51+
public function testCanUpdateRefund()
5952
{
60-
$this->mockRequest(
61-
'POST',
62-
'/v1/application_fees/fee_123/refunds/fr_123',
63-
array('metadata' => array('foo' => 'bar')),
64-
array('id' => 'fr_123', 'object' => 'fee_refund')
65-
);
66-
67-
$feeRefund = ApplicationFee::updateRefund(
68-
'fee_123',
69-
'fr_123',
70-
array('metadata' => array('foo' => 'bar'))
53+
$this->expectsRequest(
54+
'post',
55+
'/v1/application_fees/' . TEST_RESOURCE_ID . '/refunds/' . TEST_FEEREFUND_ID
7156
);
72-
73-
$this->assertSame('fr_123', $feeRefund->id);
74-
$this->assertSame('fee_refund', $feeRefund->object);
57+
$resource = ApplicationFee::updateRefund(TEST_RESOURCE_ID, TEST_FEEREFUND_ID);
58+
$this->assertSame("Stripe\\ApplicationFeeRefund", get_class($resource));
7559
}
7660

77-
public function testStaticAllRefunds()
61+
public function testCanListRefunds()
7862
{
79-
$this->mockRequest(
80-
'GET',
81-
'/v1/application_fees/fee_123/refunds',
82-
array(),
83-
array('object' => 'list', 'data' => array())
63+
$this->expectsRequest(
64+
'get',
65+
'/v1/application_fees/' . TEST_RESOURCE_ID . '/refunds'
8466
);
85-
86-
$feeRefunds = ApplicationFee::allRefunds(
87-
'fee_123'
88-
);
89-
90-
$this->assertSame('list', $feeRefunds->object);
91-
$this->assertEmpty($feeRefunds->data);
67+
$resources = ApplicationFee::allRefunds(TEST_RESOURCE_ID);
68+
$this->assertTrue(is_array($resources->data));
69+
$this->assertSame("Stripe\\ApplicationFeeRefund", get_class($resources->data[0]));
9270
}
9371
}

0 commit comments

Comments
 (0)