60 lines
1.6 KiB
PHP
60 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Omnipay\Stripe\Message;
|
|
|
|
use Mockery;
|
|
use Omnipay\Tests\TestCase;
|
|
|
|
class AbstractRequestTest extends TestCase
|
|
{
|
|
public function setUp()
|
|
{
|
|
$this->request = Mockery::mock('\Omnipay\Stripe\Message\AbstractRequest')->makePartial();
|
|
$this->request->initialize();
|
|
}
|
|
|
|
public function testCardReference()
|
|
{
|
|
$this->assertSame($this->request, $this->request->setCardReference('abc123'));
|
|
$this->assertSame('abc123', $this->request->getCardReference());
|
|
}
|
|
|
|
public function testCardToken()
|
|
{
|
|
$this->assertSame($this->request, $this->request->setToken('abc123'));
|
|
$this->assertSame('abc123', $this->request->getToken());
|
|
}
|
|
|
|
public function testSource()
|
|
{
|
|
$this->assertSame($this->request, $this->request->setSource('abc123'));
|
|
$this->assertSame('abc123', $this->request->getSource());
|
|
}
|
|
|
|
public function testCardData()
|
|
{
|
|
$card = $this->getValidCard();
|
|
$this->request->setCard($card);
|
|
$data = $this->request->getCardData();
|
|
|
|
$this->assertSame($card['number'], $data['number']);
|
|
$this->assertSame($card['cvv'], $data['cvc']);
|
|
}
|
|
|
|
public function testCardDataEmptyCvv()
|
|
{
|
|
$card = $this->getValidCard();
|
|
$card['cvv'] = '';
|
|
$this->request->setCard($card);
|
|
$data = $this->request->getCardData();
|
|
|
|
$this->assertTrue(empty($data['cvv']));
|
|
}
|
|
|
|
public function testMetadata()
|
|
{
|
|
$this->assertSame($this->request, $this->request->setMetadata(array('foo' => 'bar')));
|
|
$this->assertSame(array('foo' => 'bar'), $this->request->getMetadata());
|
|
}
|
|
}
|