File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/worldpay/tests/Message/CompletePurchaseResponseTest.php
Back
<?php namespace Omnipay\WorldPay\Message; use Omnipay\Tests\TestCase; class CompletePurchaseResponseTest extends TestCase { public function testCompletePurchaseSuccess() { $response = new CompletePurchaseresponse( $this->getMockRequest(), array( 'transStatus' => 'Y', 'transId' => 'abc123', 'rawAuthMessage' => 'Success Message' ) ); $this->assertTrue($response->isSuccessful()); $this->assertFalse($response->isCancelled()); $this->assertFalse($response->isRedirect()); $this->assertSame('abc123', $response->getTransactionReference()); $this->assertSame('Success Message', $response->getMessage()); } public function testCompletePurchaseCancel() { $response = new CompletePurchaseresponse( $this->getMockRequest(), array( 'transStatus' => 'C', 'transId' => null, 'rawAuthMessage' => 'Declined' ) ); $this->assertFalse($response->isSuccessful()); $this->assertTrue($response->isCancelled()); $this->assertFalse($response->isRedirect()); $this->assertNull($response->getTransactionReference()); $this->assertSame('Declined', $response->getMessage()); } public function testCompletePurchaseFailure() { $response = new CompletePurchaseresponse( $this->getMockRequest(), array( 'transStatus' => 'N', 'transId' => null, 'rawAuthMessage' => 'Declined' ) ); $this->assertFalse($response->isSuccessful()); $this->assertFalse($response->isCancelled()); $this->assertFalse($response->isRedirect()); $this->assertNull($response->getTransactionReference()); $this->assertSame('Declined', $response->getMessage()); } public function testCompletePurchaseInvalid() { $response = new CompletePurchaseresponse($this->getMockRequest(), array()); $this->assertFalse($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertNull($response->getTransactionReference()); $this->assertNull($response->getMessage()); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings