2020-04-19 12:29:58 +02:00
|
|
|
<?php
|
2020-09-14 13:11:46 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2020. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2020-04-19 12:29:58 +02:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
use App\Libraries\Currency\Conversion\CurrencyApi;
|
|
|
|
use Illuminate\Support\Carbon;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
* @covers App\Libraries\Currency\Conversion\CurrencyApi
|
|
|
|
*/
|
|
|
|
class CurrencyApiTest extends TestCase
|
|
|
|
{
|
|
|
|
public function setUp() :void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testCurrencyConversionWorking()
|
|
|
|
{
|
2020-09-06 11:38:10 +02:00
|
|
|
$converter = new CurrencyApi();
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$converted_amount = $converter->convert(100, 1, 2);
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->assertIsFloat($converted_amount);
|
2020-04-19 12:29:58 +02:00
|
|
|
}
|
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public function testExchangeRate()
|
|
|
|
{
|
|
|
|
$converter = new CurrencyApi();
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$exchange_rate = $converter->exchangeRate(1, 2);
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->assertIsNumeric($exchange_rate);
|
|
|
|
}
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
public function testExchangeRateWithDate()
|
|
|
|
{
|
|
|
|
$date = Carbon::parse('2020-03-08');
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$converter = new CurrencyApi();
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$exchange_rate = $converter->exchangeRate(1, 2, $date);
|
2020-04-19 12:29:58 +02:00
|
|
|
|
2020-09-06 11:38:10 +02:00
|
|
|
$this->assertIsNumeric($exchange_rate);
|
|
|
|
}
|
|
|
|
}
|