Your IP : 216.73.216.95


Current Path : /var/www/storage2/vendor/cardinity/cardinity-sdk-php/tests/
Upload File :
Current File : /var/www/storage2/vendor/cardinity/cardinity-sdk-php/tests/RefundTest.php

<?php
namespace Cardinity\Tests;

use Cardinity\Method\Refund;
use Cardinity\Method\Payment;

class RefundTest extends ClientTestCase
{
    public function testResultObjectSerialization()
    {
        $refund = new Refund\Refund();
        $refund->setId('foo');
        $refund->setType('bar');
        $refund->setCurrency(null);
        $refund->setAmount('55.00');

        $this->assertSame(
            '{"id":"foo","amount":"55.00","type":"bar"}',
            $refund->serialize()
        );
    }

    public function testResultObjectUnserialization()
    {
        $json = '{"id":"foo","amount":"55.00","type":"bar"}';

        $payment = new Refund\Refund();
        $payment->unserialize($json);

        $this->assertSame('foo', $payment->getId());
        $this->assertSame('bar', $payment->getType());
        $this->assertSame(null, $payment->getCurrency());
        $this->assertSame(55.00, $payment->getAmount());
    }

    /**
     * @return Payment\Payment
     */
    public function testCreatePayment()
    {
        $params = $this->getPaymentParams();
        $params['settle'] = true;

        $method = new Payment\Create($params);
        $payment = $this->client->call($method);

        return $payment;
    }

    /**
     * @depends testCreatePayment
     * @expectedException Cardinity\Exception\Declined
     */
    public function testCreateFail(Payment\Payment $payment)
    {
        $method = new Refund\Create(
            $payment->getId(),
            10.00,
            'fail'
        );
        $this->client->call($method);
    }

    /**
     * @depends testCreatePayment
     * @return Refund\Refund
     */
    public function testCreate(Payment\Payment $payment)
    {
        $method = new Refund\Create(
            $payment->getId(),
            10.00,
            'my description'
        );
        $result = $this->client->call($method);

        $this->assertInstanceOf('Cardinity\Method\Refund\Refund', $result);
        $this->assertSame('10.00', $result->getAmount());

        return $result;
    }

    /**
     * @depends testCreate
     */
    public function testGet(Refund\Refund $refund)
    {
        $method = new Refund\Get(
            $refund->getParentId(),
            $refund->getId()
        );
        $result = $this->client->call($method);

        $this->assertInstanceOf('Cardinity\Method\Refund\Refund', $result);
        $this->assertSame($refund->getParentId(), $result->getParentId());
        $this->assertSame('refund', $result->getType());
        $this->assertSame('10.00', $result->getAmount());
        $this->assertSame('my description', $result->getDescription());
    }

    /**
     * @depends testCreate
     */
    public function testGetAll(Refund\Refund $refund)
    {
        $method = new Refund\GetAll(
            $refund->getParentId()
        );
        $result = $this->client->call($method);

        $this->assertInstanceOf('Cardinity\Method\Refund\Refund', $result[0]);
        $this->assertSame($refund->getId(), $result[0]->getId());
        $this->assertSame($refund->getParentId(), $result[0]->getParentId());
    }
}