View source  
  <?php
namespace Drupal\Tests\commerce_price\Unit;
use Drupal\commerce_price\Price;
use Drupal\Tests\UnitTestCase;
class PriceTest extends UnitTestCase {
  
  protected $price;
  
  protected function setUp() : void {
    parent::setUp();
    $this->price = new Price('10', 'USD');
  }
  
  public function testCreateFromInvalidArray() {
    $this
      ->expectException(\InvalidArgumentException::class);
    $this
      ->expectExceptionMessage('Price::fromArray() called with a malformed array.');
    $price = Price::fromArray([]);
  }
  
  public function testCreateFromValidArray() {
    $price = Price::fromArray([
      'number' => '10',
      'currency_code' => 'USD',
    ]);
    $this
      ->assertEquals('10', $price
      ->getNumber());
    $this
      ->assertEquals('USD', $price
      ->getCurrencyCode());
    $this
      ->assertEquals('10 USD', $price
      ->__toString());
    $this
      ->assertEquals([
      'number' => '10',
      'currency_code' => 'USD',
    ], $price
      ->toArray());
  }
  
  public function testInvalidNumber() {
    $this
      ->expectException(\InvalidArgumentException::class);
    $price = new Price('INVALID', 'USD');
  }
  
  public function testInvalidCurrencyCode() {
    $this
      ->expectException(\InvalidArgumentException::class);
    $this
      ->expectExceptionMessage('Invalid currency code "TEST".');
    $price = new Price('10', 'TEST');
  }
  
  public function testGetters() {
    $this
      ->assertEquals('10', $this->price
      ->getNumber());
    $this
      ->assertEquals('USD', $this->price
      ->getCurrencyCode());
    $this
      ->assertEquals('10 USD', $this->price
      ->__toString());
    $this
      ->assertEquals([
      'number' => '10',
      'currency_code' => 'USD',
    ], $this->price
      ->toArray());
  }
  
  public function testAddWithMismatchedCurrencies() {
    $this
      ->expectException(\InvalidArgumentException::class);
    $this
      ->expectExceptionMessage('The provided prices have mismatched currencies: 10 USD, 5 EUR.');
    $this->price
      ->add(new Price('5', 'EUR'));
  }
  
  public function testSubtractWithMismatchedCurrencies() {
    $this
      ->expectException(\InvalidArgumentException::class);
    $this
      ->expectExceptionMessage('The provided prices have mismatched currencies: 10 USD, 4 EUR.');
    $this->price
      ->subtract(new Price('4', 'EUR'));
  }
  
  public function testArithmetic() {
    $result = $this->price
      ->add(new Price('5', 'USD'));
    $this
      ->assertEquals(new Price('15', 'USD'), $result);
    $result = $this->price
      ->subtract(new Price('5', 'USD'));
    $this
      ->assertEquals(new Price('5', 'USD'), $result);
    $result = $this->price
      ->multiply('5');
    $this
      ->assertEquals(new Price('50', 'USD'), $result);
    $result = $this->price
      ->divide('10');
    $this
      ->assertEquals(new Price('1', 'USD'), $result);
  }
  
  public function testComparison() {
    $this
      ->assertTrue($this->price
      ->isPositive());
    $this
      ->assertFalse($this->price
      ->isNegative());
    $this
      ->assertFalse($this->price
      ->isZero());
    $negative_price = new Price('-10', 'USD');
    $this
      ->assertFalse($negative_price
      ->isPositive());
    $this
      ->assertTrue($negative_price
      ->isNegative());
    $this
      ->assertFalse($negative_price
      ->isZero());
    $zero_price = new Price('0', 'USD');
    $this
      ->assertFalse($zero_price
      ->isPositive());
    $this
      ->assertFalse($zero_price
      ->isNegative());
    $this
      ->assertTrue($zero_price
      ->isZero());
    $this
      ->assertNotEmpty($this->price
      ->equals(new Price('10', 'USD')));
    $this
      ->assertEmpty($this->price
      ->equals(new Price('15', 'USD')));
    $this
      ->assertNotEmpty($this->price
      ->greaterThan(new Price('5', 'USD')));
    $this
      ->assertEmpty($this->price
      ->greaterThan(new Price('10', 'USD')));
    $this
      ->assertEmpty($this->price
      ->greaterThan(new Price('15', 'USD')));
    $this
      ->assertNotEmpty($this->price
      ->greaterThanOrEqual(new Price('5', 'USD')));
    $this
      ->assertNotEmpty($this->price
      ->greaterThanOrEqual(new Price('10', 'USD')));
    $this
      ->assertEmpty($this->price
      ->greaterThanOrEqual(new Price('15', 'USD')));
    $this
      ->assertNotEmpty($this->price
      ->lessThan(new Price('15', 'USD')));
    $this
      ->assertEmpty($this->price
      ->lessThan(new Price('10', 'USD')));
    $this
      ->assertEmpty($this->price
      ->lessThan(new Price('5', 'USD')));
    $this
      ->assertNotEmpty($this->price
      ->lessThanOrEqual(new Price('15', 'USD')));
    $this
      ->assertNotEmpty($this->price
      ->lessThanOrEqual(new Price('10', 'USD')));
    $this
      ->assertEmpty($this->price
      ->lessThanOrEqual(new Price('5', 'USD')));
  }
}