|
2 | 2 |
|
3 | 3 | namespace Stripe;
|
4 | 4 |
|
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 |
6 | 9 | {
|
7 |
| - public function testUrls() |
| 10 | + public function testIsListable() |
8 | 11 | {
|
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' |
13 | 15 | );
|
| 16 | + $resources = ApplicationFee::all(); |
| 17 | + $this->assertTrue(is_array($resources->data)); |
| 18 | + $this->assertSame("Stripe\\ApplicationFee", get_class($resources->data[0])); |
14 | 19 | }
|
15 | 20 |
|
16 |
| - public function testList() |
| 21 | + public function testIsRetrievable() |
17 | 22 | {
|
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)); |
21 | 29 | }
|
22 | 30 |
|
23 |
| - public function testStaticCreateRefund() |
| 31 | + public function testCanCreateRefund() |
24 | 32 | {
|
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' |
34 | 36 | );
|
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)); |
38 | 39 | }
|
39 | 40 |
|
40 |
| - public function testStaticRetrieveRefund() |
| 41 | + public function testCanRetrieveRefund() |
41 | 42 | {
|
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 |
52 | 46 | );
|
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)); |
56 | 49 | }
|
57 | 50 |
|
58 |
| - public function testStaticUpdateRefund() |
| 51 | + public function testCanUpdateRefund() |
59 | 52 | {
|
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 |
71 | 56 | );
|
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)); |
75 | 59 | }
|
76 | 60 |
|
77 |
| - public function testStaticAllRefunds() |
| 61 | + public function testCanListRefunds() |
78 | 62 | {
|
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' |
84 | 66 | );
|
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])); |
92 | 70 | }
|
93 | 71 | }
|
0 commit comments