-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCardMethodsTest.php
78 lines (64 loc) · 2.08 KB
/
CardMethodsTest.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
namespace Subscribe;
use PHPUnit\Framework\TestCase;
use PaymeUz\Api\SubscribeApi;
class CardMethodsTest extends TestCase
{
protected SubscribeApi $api;
protected function setUp(): void
{
$this->api = $this->getMockBuilder(SubscribeApi::class)
->disableOriginalConstructor()
->onlyMethods(['createCard', 'getVerifyCode', 'verifyCard', 'checkCard', 'removeCard'])
->getMock();
}
public function testCreateCard()
{
$cardNumber = '8600069195406311';
$expiryDate = '03/99';
$isTest = true;
$this->api->method('createCard')
->willReturn((object)[
'status' => true,
'body' => (object)[
'result' => (object)[
'card' => (object)[
'token' => 'mock_token'
]
]
]
]);
$result = $this->api->createCard($cardNumber, $expiryDate, $isTest);
$this->assertTrue($result->status);
$this->assertEquals('mock_token', $result->body->result->card->token);
}
public function testVerifyCard()
{
$token = 'mock_token';
$otpCode = '666666';
$this->api->method('verifyCard')
->willReturn((object)[
'status' => true,
'body' => (object)[
'result' => 'verified'
]
]);
$result = $this->api->verifyCard($token, $otpCode);
$this->assertTrue($result->status);
$this->assertEquals('verified', $result->body->result);
}
public function testRemoveCard()
{
$token = 'mock_token';
$this->api->method('removeCard')
->willReturn((object)[
'status' => true,
'body' => (object)[
'result' => 'removed'
]
]);
$result = $this->api->removeCard($token);
$this->assertTrue($result->status);
$this->assertEquals('removed', $result->body->result);
}
}