-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReceiptMethodsTest.php
170 lines (148 loc) · 5.14 KB
/
ReceiptMethodsTest.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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
<?php
namespace Subscribe;
use PHPUnit\Framework\MockObject\Exception;
use PHPUnit\Framework\MockObject\MockObject;
use PHPUnit\Framework\TestCase;
use PaymeUz\HttpClient\SubscribeApiHttpClient;
use PaymeUz\Api\SubscribeApi;
use ReflectionClass;
class ReceiptMethodsTest extends TestCase
{
private SubscribeApi $api;
private SubscribeApiHttpClient|MockObject $clientMock;
/**
* @throws Exception
*/
protected function setUp(): void
{
// Create a mock for the SubscribeApiHttpClient
$this->clientMock = $this->createMock(SubscribeApiHttpClient::class);
// Inject the mock client into the SubscribeApi instance
$this->api = new SubscribeApi(
id: 'test_merchant_id',
key: 'test_api_key',
isTest: true
);
// Override the private client property with the mock
$reflection = new ReflectionClass($this->api);
$clientProperty = $reflection->getProperty('client');
$clientProperty->setValue($this->api, $this->clientMock);
}
public function testCreateCard(): void
{
$cardNumber = '8600069195406311';
$expiryDate = '03/99';
$save = true;
// Define the expected response
$expectedResponse = (object)[
'status' => 'success',
'body' => (object)[
'result' => (object)[
'card' => (object)[
'token' => 'mocked_token'
]
]
]
];
// Set the expectation for the client mock
$this->clientMock->expects($this->once())
->method('sendRequest')
->with('cards.create', [
'card' => [
'number' => $cardNumber,
'expire' => $expiryDate
],
'save' => $save
])
->willReturn($expectedResponse);
// Call the method and assert the result
$result = $this->api->createCard($cardNumber, $expiryDate, $save);
$this->assertEquals($expectedResponse, $result);
}
public function testCreateReceipt(): void
{
$amount = 500000; // unit amount 5000.00 SUM
$orderId = 443;
$account = ['order_id' => $orderId];
$description = "Payment for order #$orderId";
$productItem = [
'discount' => 0,
'title' => 'Tomatoes',
'price' => 505000,
'count' => 2,
'code' => '00702001001000001',
'units' => 241092,
'vat_percent' => 15,
'package_code' => '123456'
];
$detail = [
'receipt_type' => 0,
'items' => [$productItem]
];
// Define the expected response
$expectedResponse = (object)[
'status' => 'success',
'body' => (object)[
'result' => (object)[
'receipt_id' => 'mocked_receipt_id'
]
]
];
// Set the expectation for the client mock
$this->clientMock->expects($this->once())
->method('sendRequest')
->with('receipts.create', [
'amount' => $amount,
'account' => $account,
'description' => $description,
'detail' => $detail
])
->willReturn($expectedResponse);
// Call the method and assert the result
$result = $this->api->createReceipt($amount, $account, $description, $detail);
$this->assertEquals($expectedResponse, $result);
}
public function testPayReceipt(): void
{
$receiptId = 'mocked_receipt_id';
$token = 'mocked_token';
$payer = ['payer_id' => 'test_payer'];
// Define the expected response
$expectedResponse = (object)[
'status' => 'success',
'body' => (object)[
'result' => (object)[
'payment_id' => 'mocked_payment_id'
]
]
];
// Set the expectation for the client mock
$this->clientMock->expects($this->once())
->method('sendRequest')
->with('receipts.pay', [
'id' => $receiptId,
'token' => $token,
'payer' => $payer
])
->willReturn($expectedResponse);
// Call the method and assert the result
$result = $this->api->payReceipt($receiptId, $token, $payer);
$this->assertEquals($expectedResponse, $result);
}
public function testCancelReceipt(): void
{
$receiptId = 'mocked_receipt_id';
// Define the expected response
$expectedResponse = (object)[
'status' => 'success'
];
// Set the expectation for the client mock
$this->clientMock->expects($this->once())
->method('sendRequest')
->with('receipts.cancel', ['id' => $receiptId])
->willReturn($expectedResponse);
// Call the method and assert the result
$result = $this->api->cancelReceipt($receiptId);
$this->assertEquals($expectedResponse, $result);
}
}