Files
firefly-iii/tests/Unit/Factory/TransactionCurrencyFactoryTest.php

131 lines
4.0 KiB
PHP
Raw Normal View History

2018-03-01 20:54:50 +01:00
<?php
/**
* TransactionCurrencyFactoryTest.php
* Copyright (c) 2018 thegrumpydictator@gmail.com
*
* This file is part of Firefly III.
*
* Firefly III is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Firefly III is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
*/
declare(strict_types=1);
namespace Tests\Unit\Factory;
use FireflyIII\Factory\TransactionCurrencyFactory;
use FireflyIII\Models\TransactionCurrency;
2018-08-24 07:18:33 +02:00
use Log;
2018-03-01 20:54:50 +01:00
use Tests\TestCase;
/**
* Class TransactionCurrencyFactoryTest
*/
class TransactionCurrencyFactoryTest extends TestCase
{
2018-08-24 07:18:33 +02:00
/**
*
*/
public function setUp(): void
{
parent::setUp();
Log::debug(sprintf('Now in %s.', \get_class($this)));
}
2018-03-30 22:40:20 +02:00
/**
* @covers \FireflyIII\Factory\TransactionCurrencyFactory
*/
2018-05-11 19:58:10 +02:00
public function testCreate(): void
2018-03-30 22:40:20 +02:00
{
/** @var TransactionCurrencyFactory $factory */
$factory = app(TransactionCurrencyFactory::class);
$result = $factory->create(['name' => 'OK', 'code' => 'XXA', 'symbol' => 'Z', 'decimal_places' => 2]);
$this->assertNotNull($result);
$this->assertEquals('XXA', $result->code);
}
/**
* @covers \FireflyIII\Factory\TransactionCurrencyFactory
*/
2018-05-11 19:58:10 +02:00
public function testCreateEmpty(): void
2018-03-30 22:40:20 +02:00
{
/** @var TransactionCurrencyFactory $factory */
$factory = app(TransactionCurrencyFactory::class);
$result = $factory->create(['name' => null, 'code' => null, 'symbol' => null, 'decimal_places' => null]);
$this->assertNull($result);
}
2018-03-01 20:54:50 +01:00
/**
* @covers \FireflyIII\Factory\TransactionCurrencyFactory
*/
2018-05-11 19:58:10 +02:00
public function testFindByBadCode(): void
2018-03-01 20:54:50 +01:00
{
/** @var TransactionCurrencyFactory $factory */
$factory = app(TransactionCurrencyFactory::class);
$this->assertNull($factory->find(null, 'BAD CODE'));
}
/**
2018-08-06 19:14:30 +02:00
* submit ID = 1000
*
2018-03-01 20:54:50 +01:00
* @covers \FireflyIII\Factory\TransactionCurrencyFactory
*/
2018-08-06 19:14:30 +02:00
public function testFindByBadID(): void
2018-03-01 20:54:50 +01:00
{
$currency = TransactionCurrency::inRandomOrder()->whereNull('deleted_at')->first();
2018-03-01 20:54:50 +01:00
/** @var TransactionCurrencyFactory $factory */
$factory = app(TransactionCurrencyFactory::class);
2018-08-06 19:14:30 +02:00
$result = $factory->find(1000, $currency->code);
2018-03-01 20:54:50 +01:00
$this->assertEquals($currency->id, $result->id);
}
/**
* @covers \FireflyIII\Factory\TransactionCurrencyFactory
*/
2018-08-06 19:14:30 +02:00
public function testFindByCode(): void
2018-03-01 20:54:50 +01:00
{
2018-08-06 19:14:30 +02:00
// ;
$currency = TransactionCurrency::inRandomOrder()->whereNull('deleted_at')->first();
2018-03-01 20:54:50 +01:00
/** @var TransactionCurrencyFactory $factory */
$factory = app(TransactionCurrencyFactory::class);
2018-08-06 19:14:30 +02:00
$result = $factory->find(null, $currency->code);
2018-03-01 20:54:50 +01:00
$this->assertEquals($currency->id, $result->id);
}
2018-05-30 18:05:06 +02:00
/**
* @covers \FireflyIII\Factory\TransactionCurrencyFactory
*/
2018-08-06 19:14:30 +02:00
public function testFindByID(): void
2018-05-30 18:05:06 +02:00
{
$currency = TransactionCurrency::inRandomOrder()->whereNull('deleted_at')->first();
/** @var TransactionCurrencyFactory $factory */
$factory = app(TransactionCurrencyFactory::class);
2018-08-06 19:14:30 +02:00
$result = $factory->find($currency->id, null);
2018-05-30 18:05:06 +02:00
$this->assertEquals($currency->id, $result->id);
}
2018-03-01 20:54:50 +01:00
/**
* @covers \FireflyIII\Factory\TransactionCurrencyFactory
*/
2018-05-11 19:58:10 +02:00
public function testFindNull(): void
2018-03-01 20:54:50 +01:00
{
/** @var TransactionCurrencyFactory $factory */
$factory = app(TransactionCurrencyFactory::class);
$this->assertNull($factory->find(null, null));
}
2018-03-04 15:14:29 +01:00
}