mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-11-16 22:58:09 +00:00
Expand factory tests.
This commit is contained in:
823
tests/Unit/Factory/TransactionFactoryTest.php
Normal file
823
tests/Unit/Factory/TransactionFactoryTest.php
Normal file
@@ -0,0 +1,823 @@
|
||||
<?php
|
||||
/**
|
||||
* TransactionFactoryTest.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\AccountFactory;
|
||||
use FireflyIII\Factory\BudgetFactory;
|
||||
use FireflyIII\Factory\CategoryFactory;
|
||||
use FireflyIII\Factory\TransactionCurrencyFactory;
|
||||
use FireflyIII\Factory\TransactionFactory;
|
||||
use FireflyIII\Models\AccountType;
|
||||
use FireflyIII\Models\Transaction;
|
||||
use FireflyIII\Models\TransactionCurrency;
|
||||
use FireflyIII\Models\TransactionJournal;
|
||||
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||
use Tests\TestCase;
|
||||
|
||||
/**
|
||||
* Class TransactionFactoryTest
|
||||
*/
|
||||
class TransactionFactoryTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairBasic()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$expense = $this->user()->accounts()->where('account_type_id', 4)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => $asset->id,
|
||||
'source_name' => null,
|
||||
'destination_id' => $expense->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account, second is for expense account.
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($asset, $expense);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $withdrawal */
|
||||
$withdrawal = $this->user()->transactionJournals()->where('transaction_type_id', 1)->first();
|
||||
$count = $withdrawal->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($withdrawal, $data);
|
||||
|
||||
$newCount = $withdrawal->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($withdrawal->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairBasicByName()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$expense = $this->user()->accounts()->where('account_type_id', 4)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
$accountFactory = $this->mock(AccountFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => null,
|
||||
'source_name' => $asset->name,
|
||||
'destination_id' => null,
|
||||
'destination_name' => $expense->name,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
$accountFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account
|
||||
$accountRepos->shouldReceive('findByName')->withArgs([$asset->name, [AccountType::ASSET]])->andReturn($asset);
|
||||
// second is for expense account.
|
||||
$accountFactory->shouldReceive('findOrCreate')->andReturn($expense);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $withdrawal */
|
||||
$withdrawal = $this->user()->transactionJournals()->where('transaction_type_id', 1)->first();
|
||||
$count = $withdrawal->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($withdrawal, $data);
|
||||
|
||||
$newCount = $withdrawal->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($withdrawal->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairBasicIntoCash()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$expense = $this->user()->accounts()->where('account_type_id', 4)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
$accountFactory = $this->mock(AccountFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => null,
|
||||
'source_name' => $asset->name,
|
||||
'destination_id' => null,
|
||||
'destination_name' => '',
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
$accountFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account
|
||||
$accountRepos->shouldReceive('findByName')->withArgs([$asset->name, [AccountType::ASSET]])->andReturn($asset);
|
||||
// second is for expense account (cash)
|
||||
$accountRepos->shouldReceive('getCashAccount')->andReturn($expense);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $withdrawal */
|
||||
$withdrawal = $this->user()->transactionJournals()->where('transaction_type_id', 1)->first();
|
||||
$count = $withdrawal->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($withdrawal, $data);
|
||||
|
||||
$newCount = $withdrawal->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($withdrawal->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Add budget and category data.
|
||||
*
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairBasicMeta()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$expense = $this->user()->accounts()->where('account_type_id', 4)->first();
|
||||
$budget = $this->user()->budgets()->first();
|
||||
$category = $this->user()->categories()->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => $asset->id,
|
||||
'source_name' => null,
|
||||
'destination_id' => $expense->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => $budget->id,
|
||||
'budget_name' => null,
|
||||
'category_id' => $category->id,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account, second is for expense account.
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($asset, $expense);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn($budget);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn($category);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $withdrawal */
|
||||
$withdrawal = $this->user()->transactionJournals()->where('transaction_type_id', 1)->first();
|
||||
$count = $withdrawal->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($withdrawal, $data);
|
||||
|
||||
$newCount = $withdrawal->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($withdrawal->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
$this->assertEquals($budget->name, $first->budgets()->first()->name);
|
||||
$this->assertEquals($category->name, $first->categories()->first()->name);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create deposit using minimal data.
|
||||
*
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairDeposit()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$revenue = $this->user()->accounts()->where('account_type_id', 5)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
$foreign = TransactionCurrency::where('id', '!=', $euro->id)->first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => $revenue->id,
|
||||
'source_name' => null,
|
||||
'destination_id' => $asset->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account, second is for expense account.
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($revenue, $asset);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $deposit */
|
||||
$deposit = $this->user()->transactionJournals()->where('transaction_type_id', 2)->first();
|
||||
$count = $deposit->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($deposit, $data);
|
||||
|
||||
$newCount = $deposit->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($deposit->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create deposit using minimal data.
|
||||
*
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairDepositByName()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$revenue = $this->user()->accounts()->where('account_type_id', 5)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
$foreign = TransactionCurrency::where('id', '!=', $euro->id)->first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
$accountFactory = $this->mock(AccountFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => null,
|
||||
'source_name' => $revenue->name,
|
||||
'destination_id' => $asset->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
$accountFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($asset);
|
||||
// second is for revenue account.
|
||||
$accountFactory->shouldReceive('findOrCreate')->andReturn($revenue);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $deposit */
|
||||
$deposit = $this->user()->transactionJournals()->where('transaction_type_id', 2)->first();
|
||||
$count = $deposit->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($deposit, $data);
|
||||
|
||||
$newCount = $deposit->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($deposit->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create deposit using minimal data.
|
||||
*
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairDepositCash()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$revenue = $this->user()->accounts()->where('account_type_id', 5)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
$foreign = TransactionCurrency::where('id', '!=', $euro->id)->first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
$accountFactory = $this->mock(AccountFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => null,
|
||||
'source_name' => '',
|
||||
'destination_id' => $asset->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
$accountFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($asset);
|
||||
|
||||
// second is for revenue account.
|
||||
$accountRepos->shouldReceive('getCashAccount')->andReturn($revenue)->once();
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $deposit */
|
||||
$deposit = $this->user()->transactionJournals()->where('transaction_type_id', 2)->first();
|
||||
$count = $deposit->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($deposit, $data);
|
||||
|
||||
$newCount = $deposit->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($deposit->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairForeign()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$expense = $this->user()->accounts()->where('account_type_id', 4)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
$foreign = TransactionCurrency::where('id', '!=', $euro->id)->first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => $euro->id,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => $asset->id,
|
||||
'source_name' => null,
|
||||
'destination_id' => $expense->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => $foreign->id,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => '10',
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account, second is for expense account.
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($asset, $expense);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, $foreign);
|
||||
|
||||
/** @var TransactionJournal $withdrawal */
|
||||
$withdrawal = $this->user()->transactionJournals()->where('transaction_type_id', 1)->first();
|
||||
$count = $withdrawal->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($withdrawal, $data);
|
||||
|
||||
$newCount = $withdrawal->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($withdrawal->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(-10, $first->foreign_amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertEquals($foreign->id, $first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create transfer using minimal data.
|
||||
*
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairReconciliation()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$opposing = $this->user()->accounts()->where('id', '!=', $asset->id)->where('account_type_id', 3)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
$foreign = TransactionCurrency::where('id', '!=', $euro->id)->first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => $asset->id,
|
||||
'source_name' => null,
|
||||
'destination_id' => $opposing->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account, second is for expense account.
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($asset, $opposing);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $recon */
|
||||
$recon = $this->user()->transactionJournals()->where('transaction_type_id', 5)->first();
|
||||
$count = $recon->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($recon, $data);
|
||||
|
||||
$newCount = $recon->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($recon->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Create reconciliation using minimal (bad) data.
|
||||
*
|
||||
* @covers \FireflyIII\Factory\TransactionFactory
|
||||
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
||||
*/
|
||||
public function testCreatePairTransfer()
|
||||
{
|
||||
// objects:
|
||||
$asset = $this->user()->accounts()->where('account_type_id', 3)->first();
|
||||
$opposing = $this->user()->accounts()->where('id', '!=', $asset->id)->where('account_type_id', 3)->first();
|
||||
$euro = TransactionCurrency::first();
|
||||
$foreign = TransactionCurrency::where('id', '!=', $euro->id)->first();
|
||||
|
||||
// mocked classes
|
||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||
$budgetFactory = $this->mock(BudgetFactory::class);
|
||||
$categoryFactory = $this->mock(CategoryFactory::class);
|
||||
$currencyFactory = $this->mock(TransactionCurrencyFactory::class);
|
||||
|
||||
$data = [
|
||||
'currency_id' => 1,
|
||||
'currency_code' => null,
|
||||
'description' => null,
|
||||
'source_id' => $asset->id,
|
||||
'source_name' => null,
|
||||
'destination_id' => $opposing->id,
|
||||
'destination_name' => null,
|
||||
'amount' => '10',
|
||||
'reconciled' => false,
|
||||
'identifier' => 0,
|
||||
'foreign_currency_id' => null,
|
||||
'foreign_currency_code' => null,
|
||||
'foreign_amount' => null,
|
||||
'budget_id' => null,
|
||||
'budget_name' => null,
|
||||
'category_id' => null,
|
||||
'category_name' => null,
|
||||
];
|
||||
|
||||
// mock:
|
||||
$accountRepos->shouldReceive('setUser');
|
||||
$budgetFactory->shouldReceive('setUser');
|
||||
$categoryFactory->shouldReceive('setUser');
|
||||
// first search action is for the asset account, second is for expense account.
|
||||
$accountRepos->shouldReceive('findNull')->andReturn($asset, $opposing);
|
||||
|
||||
// factories return various stuff:
|
||||
$budgetFactory->shouldReceive('find')->andReturn(null);
|
||||
$categoryFactory->shouldReceive('findOrCreate')->andReturn(null);
|
||||
$currencyFactory->shouldReceive('find')->andReturn($euro, null);
|
||||
|
||||
/** @var TransactionJournal $transfer */
|
||||
$transfer = $this->user()->transactionJournals()->where('transaction_type_id', 3)->first();
|
||||
$count = $transfer->transactions()->count();
|
||||
|
||||
/** @var TransactionFactory $factory */
|
||||
$factory = app(TransactionFactory::class);
|
||||
$factory->setUser($this->user());
|
||||
$collection = $factory->createPair($transfer, $data);
|
||||
|
||||
$newCount = $transfer->transactions()->count();
|
||||
|
||||
$this->assertCount(2, $collection);
|
||||
$this->assertEquals($count + 2, $newCount);
|
||||
// find stuff in transaction #1 (should suffice):
|
||||
/** @var Transaction $first */
|
||||
$first = $collection->first();
|
||||
$this->assertEquals($transfer->id, $first->transaction_journal_id);
|
||||
$this->assertEquals(-10, $first->amount);
|
||||
$this->assertEquals(false, $first->reconciled);
|
||||
$this->assertEquals(0, $first->identifier);
|
||||
$this->assertEquals($euro->id, $first->transaction_currency_id);
|
||||
$this->assertNull($first->foreign_amount);
|
||||
$this->assertNull($first->foreign_currency_id);
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user