File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/targetpay/tests/Message/CompletePurchaseRequestTest.php
Back
<?php namespace Omnipay\TargetPay\Message; use Mockery as m; use Omnipay\Tests\TestCase; class CompletePurchaseRequestTest extends TestCase { /** * @var CompletePurchaseRequest */ private $request; protected function setUp() { $request = $this->getHttpRequest(); $request->query->set('trxid', '123456'); $arguments = array($this->getHttpClient(), $request); $this->request = m::mock('Omnipay\TargetPay\Message\CompletePurchaseRequest[getEndpoint]', $arguments); $this->request->shouldReceive('getEndpoint')->andReturn('http://localhost'); } public function testData() { $data = $this->request->getData(); $this->assertArrayHasKey('rtlo', $data); $this->assertSame('123456', $data['trxid']); $this->assertArrayHasKey('once', $data); $this->assertArrayHasKey('test', $data); } public function testSendSuccess() { $this->setMockHttpResponse('CompletePurchaseSuccess.txt'); $response = $this->request->send(); $this->assertTrue($response->isSuccessful()); } public function testSendFailure() { $this->setMockHttpResponse('CompletePurchaseFailure.txt'); $response = $this->request->send(); $this->assertFalse($response->isSuccessful()); $this->assertEquals('Transaction was cancelled', $response->getMessage()); $this->assertEquals('TP0013', $response->getCode()); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.02 |
proxy
|
phpinfo
|
Settings