-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathDirectPostGatewayTest.php
231 lines (182 loc) · 8.47 KB
/
DirectPostGatewayTest.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
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
<?php
namespace Omnipay\NMI;
use Omnipay\Tests\GatewayTestCase;
class DirectPostGatewayTest extends GatewayTestCase
{
protected $purchaseOptions;
protected $captureOptions;
protected $voidOptions;
protected $refundOptions;
public function setUp()
{
parent::setUp();
$this->gateway = new DirectPostGateway($this->getHttpClient(), $this->getHttpRequest());
$this->purchaseOptions = array(
'amount' => '10.00',
'card' => $this->getValidCard()
);
$this->captureOptions = array(
'amount' => '10.00',
'transactionReference' => '2577708057'
);
$this->voidOptions = array(
'transactionReference' => '2577708057'
);
$this->refundOptions = array(
'transactionReference' => '2577725848'
);
}
public function testAuthorizeSuccess()
{
$this->setMockHttpResponse('DirectPostAuthSuccess.txt');
$response = $this->gateway->authorize($this->purchaseOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('2577708057', $response->getTransactionReference());
$this->assertSame('SUCCESS', $response->getMessage());
}
public function testAuthorizeFailure()
{
$this->setMockHttpResponse('DirectPostAuthFailure.txt');
$this->purchaseOptions['amount'] = '0.00';
$response = $this->gateway->authorize($this->purchaseOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('2577711599', $response->getTransactionReference());
$this->assertSame('DECLINE', $response->getMessage());
}
public function testPurchaseSuccess()
{
$this->setMockHttpResponse('DirectPostSaleSuccess.txt');
$response = $this->gateway->authorize($this->purchaseOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('2577715564', $response->getTransactionReference());
$this->assertSame('SUCCESS', $response->getMessage());
}
public function testPurchaseFailure()
{
$this->setMockHttpResponse('DirectPostSaleFailure.txt');
$this->purchaseOptions['amount'] = '0.00';
$response = $this->gateway->authorize($this->purchaseOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('2577715978', $response->getTransactionReference());
$this->assertSame('DECLINE', $response->getMessage());
}
public function testCaptureSuccess()
{
$this->setMockHttpResponse('DirectPostCaptureSuccess.txt');
$response = $this->gateway->capture($this->captureOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('2577708057', $response->getTransactionReference());
$this->assertSame('SUCCESS', $response->getMessage());
}
public function testCaptureFailure()
{
$this->setMockHttpResponse('DirectPostCaptureFailure.txt');
$response = $this->gateway->capture($this->captureOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('2577708057', $response->getTransactionReference());
$this->assertSame('A capture requires that the existing transaction be an AUTH REFID:143498124', $response->getMessage());
}
public function testVoidSuccess()
{
$this->setMockHttpResponse('DirectPostVoidSuccess.txt');
$response = $this->gateway->void($this->voidOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('2577708057', $response->getTransactionReference());
$this->assertSame('Transaction Void Successful', $response->getMessage());
}
public function testVoidFailure()
{
$this->setMockHttpResponse('DirectPostVoidFailure.txt');
$response = $this->gateway->void($this->voidOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('2577708057', $response->getTransactionReference());
$this->assertSame('Only transactions pending settlement can be voided REFID:143498494', $response->getMessage());
}
public function testRefundSuccess()
{
$this->setMockHttpResponse('DirectPostRefundSuccess.txt');
$response = $this->gateway->void($this->refundOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('2577725848', $response->getTransactionReference());
$this->assertSame('SUCCESS', $response->getMessage());
}
public function testRefundFailure()
{
$this->setMockHttpResponse('DirectPostRefundFailure.txt');
$response = $this->gateway->void($this->refundOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('', $response->getTransactionReference());
$this->assertSame('Refund amount may not exceed the transaction balance REFID:143498703', $response->getMessage());
}
public function testCreditSuccess()
{
$this->setMockHttpResponse('DirectPostCreditSuccess.txt');
$response = $this->gateway->authorize($this->purchaseOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('2577728141', $response->getTransactionReference());
$this->assertSame('SUCCESS', $response->getMessage());
}
public function testCreditFailure()
{
$this->setMockHttpResponse('DirectPostCreditFailure.txt');
$this->purchaseOptions['amount'] = '0.00';
$response = $this->gateway->authorize($this->purchaseOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('', $response->getTransactionReference());
$this->assertSame('Invalid amount REFID:143498834', $response->getMessage());
}
public function testCreateCardSuccess()
{
$this->setMockHttpResponse('DirectPostCreateCardSuccess.txt');
$response = $this->gateway->createCard($this->purchaseOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('452894459', $response->getCardReference());
$this->assertSame('Customer Added', $response->getMessage());
}
public function testCreateCardFailure()
{
$this->setMockHttpResponse('DirectPostCreateCardFailure.txt');
$response = $this->gateway->createCard($this->purchaseOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame(null, $response->getCardReference());
$this->assertSame('Invalid Credit Card Number REFID:3150032552', $response->getMessage());
}
public function testUpdateCardSuccess()
{
$this->setMockHttpResponse('DirectPostUpdateCardSuccess.txt');
$this->purchaseOptions['cardReference'] = '452894459';
$response = $this->gateway->updateCard($this->purchaseOptions)->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame('452894459', $response->getCardReference());
$this->assertSame('Customer Update Successful', $response->getMessage());
}
public function testUpdateCardFailure()
{
$this->setMockHttpResponse('DirectPostUpdateCardFailure.txt');
$this->purchaseOptions['cardReference'] = '000000000';
$response = $this->gateway->updateCard($this->purchaseOptions)->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('000000000', $response->getCardReference());
$this->assertSame('Invalid Customer Vault Id REFID:3150033161', $response->getMessage());
}
public function testDeleteCardSuccess()
{
$this->setMockHttpResponse('DirectPostDeleteCardSuccess.txt');
$response = $this->gateway->deleteCard(array(
'cardReference' => '452894459'
))->send();
$this->assertTrue($response->isSuccessful());
$this->assertSame(null, $response->getCardReference());
$this->assertSame('Customer Deleted', $response->getMessage());
}
public function testDeleteCardFailure()
{
$this->setMockHttpResponse('DirectPostDeleteCardFailure.txt');
$response = $this->gateway->deleteCard(array(
'cardReference' => '000000000'
))->send();
$this->assertFalse($response->isSuccessful());
$this->assertSame('000000000', $response->getCardReference());
$this->assertSame('Invalid Customer Vault Id REFID:3150033421', $response->getMessage());
}
}