188 lines
4.6 KiB
PHP
188 lines
4.6 KiB
PHP
<?php
|
|
/**
|
|
* @license Copyright 2011-2015 BitPay Inc., MIT License
|
|
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
|
|
*/
|
|
|
|
namespace Bitpay;
|
|
|
|
class CurrencyTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
private $currency;
|
|
|
|
public function setUp()
|
|
{
|
|
$this->currency = new Currency();
|
|
}
|
|
|
|
public function testGetCode()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertNull($this->currency->getCode());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetCode
|
|
*/
|
|
public function testSetCode()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setCode('usd');
|
|
$this->assertSame('USD', $this->currency->getCode());
|
|
}
|
|
|
|
/**
|
|
* @expectedException Exception
|
|
*/
|
|
public function testSetCodeWithExceptionThrown()
|
|
{
|
|
new Currency('Foo Coin');
|
|
}
|
|
|
|
/**
|
|
* @depends testSetCode
|
|
* @depends testSetCodeWithExceptionThrown
|
|
*/
|
|
public function testConstruct()
|
|
{
|
|
$currency = new Currency('usd');
|
|
$this->assertSame('USD', $currency->getCode());
|
|
}
|
|
|
|
public function testGetSymbol()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertNull($this->currency->getSymbol());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetSymbol
|
|
*/
|
|
public function testSetSymbol()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setSymbol('$');
|
|
$this->assertSame('$', $this->currency->getSymbol());
|
|
}
|
|
|
|
public function testGetPrecision()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertNull($this->currency->getPrecision());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetPrecision
|
|
*/
|
|
public function testSetPrecision()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setPrecision(2);
|
|
$this->assertSame(2, $this->currency->getPrecision());
|
|
}
|
|
|
|
public function testGetExchangePctFee()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertNull($this->currency->getExchangePctFee());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetExchangePctFee
|
|
*/
|
|
public function testSetExchangePctFee()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setExchangePctFee('100');
|
|
$this->assertSame('100', $this->currency->getExchangePctFee());
|
|
}
|
|
|
|
public function testIsPayoutEnabled()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertFalse($this->currency->isPayoutEnabled());
|
|
}
|
|
|
|
/**
|
|
* @depends testIsPayoutEnabled
|
|
*/
|
|
public function testSetPayoutEnabled()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setPayoutEnabled(true);
|
|
$this->assertTrue($this->currency->isPayoutEnabled());
|
|
}
|
|
|
|
public function testGetName()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertNull($this->currency->getName());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetName
|
|
*/
|
|
public function testSetName()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setName('US Dollar');
|
|
$this->assertSame('US Dollar', $this->currency->getName());
|
|
}
|
|
|
|
public function testGetPluralName()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertNull($this->currency->getPluralName());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetPluralName
|
|
*/
|
|
public function testSetPluralName()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setPluralName('US Dollars');
|
|
$this->assertSame('US Dollars', $this->currency->getPluralName());
|
|
}
|
|
|
|
public function testGetAlts()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertNull($this->currency->getAlts());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetAlts
|
|
*/
|
|
public function testSetAlts()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->currency->setAlts('USD Bucks');
|
|
$this->assertSame('USD Bucks', $this->currency->getAlts());
|
|
}
|
|
|
|
public function testGetPayoutFields()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
$this->assertEmpty($this->currency->getPayoutFields());
|
|
}
|
|
|
|
/**
|
|
* @depends testGetPayoutFields
|
|
*/
|
|
public function testSetPayoutFields()
|
|
{
|
|
$this->assertNotNull($this->currency);
|
|
|
|
$fields = array(
|
|
'name',
|
|
'account',
|
|
'routing',
|
|
'merchantEIN',
|
|
);
|
|
|
|
$this->currency->setPayoutFields($fields);
|
|
$this->assertSame($fields, $this->currency->getPayoutFields());
|
|
}
|
|
}
|