mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
First tests for transformers.
This commit is contained in:
@@ -30,6 +30,7 @@ use FireflyIII\Models\Account;
|
|||||||
use FireflyIII\Models\AccountType;
|
use FireflyIII\Models\AccountType;
|
||||||
use FireflyIII\Models\Note;
|
use FireflyIII\Models\Note;
|
||||||
use FireflyIII\Models\TransactionCurrency;
|
use FireflyIII\Models\TransactionCurrency;
|
||||||
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use League\Fractal\Resource\Collection as FractalCollection;
|
use League\Fractal\Resource\Collection as FractalCollection;
|
||||||
use League\Fractal\Resource\Item;
|
use League\Fractal\Resource\Item;
|
||||||
@@ -57,7 +58,10 @@ class AccountTransformer extends TransformerAbstract
|
|||||||
protected $parameters;
|
protected $parameters;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* BillTransformer constructor.
|
*
|
||||||
|
* AccountTransformer constructor.
|
||||||
|
*
|
||||||
|
* @codeCoverageIgnore
|
||||||
*
|
*
|
||||||
* @param ParameterBag $parameters
|
* @param ParameterBag $parameters
|
||||||
*/
|
*/
|
||||||
@@ -67,6 +71,26 @@ class AccountTransformer extends TransformerAbstract
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Include piggy banks into end result.
|
||||||
|
*
|
||||||
|
* @codeCoverageIgnore
|
||||||
|
*
|
||||||
|
* @param Account $account
|
||||||
|
*
|
||||||
|
* @return FractalCollection
|
||||||
|
*/
|
||||||
|
public function includePiggyBanks(Account $account): FractalCollection
|
||||||
|
{
|
||||||
|
$piggies = $account->piggyBanks()->get();
|
||||||
|
|
||||||
|
return $this->collection($piggies, new PiggyBankTransformer($this->parameters), 'piggy_banks');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Include transactions into end result.
|
||||||
|
*
|
||||||
|
* @codeCoverageIgnore
|
||||||
|
*
|
||||||
* @param Account $account
|
* @param Account $account
|
||||||
*
|
*
|
||||||
* @return FractalCollection
|
* @return FractalCollection
|
||||||
@@ -94,18 +118,10 @@ class AccountTransformer extends TransformerAbstract
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param Account $account
|
* Include user data in end result.
|
||||||
|
*
|
||||||
|
* @codeCoverageIgnore
|
||||||
*
|
*
|
||||||
* @return FractalCollection
|
|
||||||
*/
|
|
||||||
public function includePiggyBanks(Account $account): FractalCollection
|
|
||||||
{
|
|
||||||
$piggies = $account->piggyBanks()->get();
|
|
||||||
|
|
||||||
return $this->collection($piggies, new PiggyBankTransformer($this->parameters), 'piggy_banks');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Account $account
|
* @param Account $account
|
||||||
*
|
*
|
||||||
* @return Item
|
* @return Item
|
||||||
@@ -122,8 +138,9 @@ class AccountTransformer extends TransformerAbstract
|
|||||||
*/
|
*/
|
||||||
public function transform(Account $account): array
|
public function transform(Account $account): array
|
||||||
{
|
{
|
||||||
|
$type = $account->accountType->type;
|
||||||
$role = $account->getMeta('accountRole');
|
$role = $account->getMeta('accountRole');
|
||||||
if (strlen($role) === 0) {
|
if (strlen($role) === 0 || $type !== AccountType::ASSET) {
|
||||||
$role = null;
|
$role = null;
|
||||||
}
|
}
|
||||||
$currencyId = (int)$account->getMeta('currency_id');
|
$currencyId = (int)$account->getMeta('currency_id');
|
||||||
@@ -144,24 +161,44 @@ class AccountTransformer extends TransformerAbstract
|
|||||||
$currencyId = null;
|
$currencyId = null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$monthlyPaymentDate = null;
|
||||||
|
$creditCardType = null;
|
||||||
|
if ($role === 'ccAsset' && $type === AccountType::ASSET) {
|
||||||
|
$creditCardType = $this->getMeta($account, 'ccType');
|
||||||
|
$monthlyPaymentDate = $this->getMeta($account, 'ccMonthlyPaymentDate');
|
||||||
|
}
|
||||||
|
|
||||||
|
$openingBalance = null;
|
||||||
|
$openingBalanceDate = null;
|
||||||
|
if ($type === AccountType::ASSET) {
|
||||||
|
/** @var AccountRepositoryInterface $repository */
|
||||||
|
$repository = app(AccountRepositoryInterface::class);
|
||||||
|
$repository->setuser($account->user);
|
||||||
|
$amount = $repository->getOpeningBalanceAmount($account);
|
||||||
|
$openingBalance = is_null($amount) ? null : round($amount, $decimalPlaces);
|
||||||
|
$openingBalanceDate = $repository->getOpeningBalanceDate($account);
|
||||||
|
}
|
||||||
|
|
||||||
$data = [
|
$data = [
|
||||||
'id' => (int)$account->id,
|
'id' => (int)$account->id,
|
||||||
'updated_at' => $account->updated_at->toAtomString(),
|
'updated_at' => $account->updated_at->toAtomString(),
|
||||||
'created_at' => $account->created_at->toAtomString(),
|
'created_at' => $account->created_at->toAtomString(),
|
||||||
'name' => $account->name,
|
'name' => $account->name,
|
||||||
'active' => intval($account->active) === 1,
|
'active' => intval($account->active) === 1,
|
||||||
'type' => $account->accountType->type,
|
'type' => $type,
|
||||||
'currency_id' => $currencyId,
|
'currency_id' => $currencyId,
|
||||||
'currency_code' => $currencyCode,
|
'currency_code' => $currencyCode,
|
||||||
'current_balance' => round(app('steam')->balance($account, $date), $decimalPlaces),
|
'current_balance' => round(app('steam')->balance($account, $date), $decimalPlaces),
|
||||||
'current_balance_date' => $date->format('Y-m-d'),
|
'current_balance_date' => $date->format('Y-m-d'),
|
||||||
'notes' => null,
|
'notes' => null,
|
||||||
'monthly_payment_date' => $this->getMeta($account, 'ccMonthlyPaymentDate'),
|
'monthly_payment_date' => $monthlyPaymentDate,
|
||||||
'credit_card_type' => $this->getMeta($account, 'ccType'),
|
'credit_card_type' => $creditCardType,
|
||||||
'account_number' => $this->getMeta($account, 'accountNumber'),
|
'account_number' => $this->getMeta($account, 'accountNumber'),
|
||||||
'iban' => $account->iban,
|
'iban' => $account->iban,
|
||||||
'bic' => $this->getMeta($account, 'BIC'),
|
'bic' => $this->getMeta($account, 'BIC'),
|
||||||
'virtual_balance' => round($account->virtual_balance, $decimalPlaces),
|
'virtual_balance' => round($account->virtual_balance, $decimalPlaces),
|
||||||
|
'opening_balance' => $openingBalance,
|
||||||
|
'opening_balance_date' => $openingBalanceDate,
|
||||||
'role' => $role,
|
'role' => $role,
|
||||||
'links' => [
|
'links' => [
|
||||||
[
|
[
|
||||||
@@ -171,17 +208,20 @@ class AccountTransformer extends TransformerAbstract
|
|||||||
],
|
],
|
||||||
];
|
];
|
||||||
|
|
||||||
// todo opening balance
|
|
||||||
/** @var Note $note */
|
/** @var Note $note */
|
||||||
$note = $account->notes()->first();
|
$note = $account->notes()->first();
|
||||||
if (!is_null($note)) {
|
if (!is_null($note)) {
|
||||||
$data['notes'] = $note->text;
|
$data['notes'] = $note->text; // @codeCoverageIgnore
|
||||||
}
|
}
|
||||||
|
|
||||||
return $data;
|
return $data;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
* Get meta data field for account.
|
||||||
|
*
|
||||||
|
* @codeCoverageIgnore
|
||||||
|
*
|
||||||
* @param Account $account
|
* @param Account $account
|
||||||
* @param string $field
|
* @param string $field
|
||||||
*
|
*
|
||||||
|
@@ -227,6 +227,8 @@ $factory->define(
|
|||||||
function (Faker\Generator $faker) {
|
function (Faker\Generator $faker) {
|
||||||
return [
|
return [
|
||||||
'id' => $faker->unique()->numberBetween(1000, 10000),
|
'id' => $faker->unique()->numberBetween(1000, 10000),
|
||||||
|
'created_at' => new Carbon,
|
||||||
|
'updated_at' => new Carbon,
|
||||||
'name' => $faker->words(3, true),
|
'name' => $faker->words(3, true),
|
||||||
'account_type_id' => 1,
|
'account_type_id' => 1,
|
||||||
'active' => true,
|
'active' => true,
|
||||||
|
88
tests/Api/V1/Controllers/AboutControllerTest.php
Normal file
88
tests/Api/V1/Controllers/AboutControllerTest.php
Normal file
@@ -0,0 +1,88 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AboutControllerTest.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\Api\V1\Controllers;
|
||||||
|
|
||||||
|
use FireflyIII\Transformers\UserTransformer;
|
||||||
|
use Laravel\Passport\Passport;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class AboutControllerTest
|
||||||
|
* @runTestsInSeparateProcesses
|
||||||
|
* @preserveGlobalState disabled
|
||||||
|
*/
|
||||||
|
class AboutControllerTest extends TestCase
|
||||||
|
{
|
||||||
|
/** @var array */
|
||||||
|
protected $transformed
|
||||||
|
= [
|
||||||
|
'id' => 1,
|
||||||
|
'email' => 'some@user',
|
||||||
|
'links' => [
|
||||||
|
'rel' => 'self',
|
||||||
|
'uri' => '/users/1',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
Passport::actingAs($this->user());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AboutController::about
|
||||||
|
*/
|
||||||
|
public function testAbout()
|
||||||
|
{
|
||||||
|
// test API
|
||||||
|
$response = $this->get('/api/v1/about');
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertJson(
|
||||||
|
['data' => [
|
||||||
|
'version' => true,
|
||||||
|
'api_version' => true,
|
||||||
|
'php_version' => true,
|
||||||
|
]]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AboutController::user
|
||||||
|
*/
|
||||||
|
public function testUser()
|
||||||
|
{
|
||||||
|
// mock stuff:
|
||||||
|
$transformer = $this->overload(UserTransformer::class);
|
||||||
|
$transformer->shouldReceive('setCurrentScope')->andReturnSelf();
|
||||||
|
$transformer->shouldReceive('transform')->andReturn($this->transformed);
|
||||||
|
|
||||||
|
// test API
|
||||||
|
$response = $this->get('/api/v1/about/user');
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertJson(['data' => ['attributes' => true, 'links' => true]]);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
78
tests/Api/V1/Controllers/AccountControllerTest.php
Normal file
78
tests/Api/V1/Controllers/AccountControllerTest.php
Normal file
@@ -0,0 +1,78 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AccountControllerTest.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\Api\V1\Controllers;
|
||||||
|
|
||||||
|
use FireflyIII\Models\Account;
|
||||||
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Transformers\AccountTransformer;
|
||||||
|
use Laravel\Passport\Passport;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class AccountControllerTest
|
||||||
|
*/
|
||||||
|
class AccountControllerTest extends TestCase
|
||||||
|
{
|
||||||
|
/** @var array */
|
||||||
|
protected $transformed
|
||||||
|
= [
|
||||||
|
'id' => 1,
|
||||||
|
'name' => 'Some account',
|
||||||
|
'links' => [
|
||||||
|
'rel' => 'self',
|
||||||
|
'uri' => '/accounts/1',
|
||||||
|
],
|
||||||
|
];
|
||||||
|
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
Passport::actingAs($this->user());
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Api\V1\Controllers\AccountController::index
|
||||||
|
*/
|
||||||
|
public function testIndex()
|
||||||
|
{
|
||||||
|
// mock stuff:
|
||||||
|
$repository = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
$transformer = $this->overload(AccountTransformer::class);
|
||||||
|
$transformer->shouldReceive('setCurrentScope')->andReturnSelf();
|
||||||
|
$transformer->shouldReceive('transform')->andReturn($this->transformed);
|
||||||
|
|
||||||
|
$accounts = factory(Account::class, 10)->create();
|
||||||
|
$repository->shouldReceive('setUser')->once();
|
||||||
|
$repository->shouldReceive('getAccountsByType')->withAnyArgs()->andReturn($accounts)->once();
|
||||||
|
|
||||||
|
$response = $this->get('/api/v1/accounts');
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertJson(['data' => []]);
|
||||||
|
$response->assertJson(['meta' => []]);
|
||||||
|
$response->assertJson(['links' => []]);
|
||||||
|
$response->assertSee('type=all'); // default returns this.
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
@@ -128,4 +128,17 @@ abstract class TestCase extends BaseTestCase
|
|||||||
|
|
||||||
return $object;
|
return $object;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param string $class
|
||||||
|
*
|
||||||
|
* @return Mockery\MockInterface
|
||||||
|
*/
|
||||||
|
protected function overload(string $class)
|
||||||
|
{
|
||||||
|
$externalMock = Mockery::mock('overload:' . $class);
|
||||||
|
|
||||||
|
//$this->app->instance($class, $externalMock);
|
||||||
|
return $externalMock;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
399
tests/Unit/Transformers/AccountTransformerTest.php
Normal file
399
tests/Unit/Transformers/AccountTransformerTest.php
Normal file
@@ -0,0 +1,399 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* AccountTransformerTest.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\Transformers;
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use FireflyIII\Models\Account;
|
||||||
|
use FireflyIII\Models\AccountMeta;
|
||||||
|
use FireflyIII\Models\Note;
|
||||||
|
use FireflyIII\Models\Transaction;
|
||||||
|
use FireflyIII\Models\TransactionJournal;
|
||||||
|
use FireflyIII\Transformers\AccountTransformer;
|
||||||
|
use Symfony\Component\HttpFoundation\ParameterBag;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class AccountTransformerTest
|
||||||
|
*/
|
||||||
|
class AccountTransformerTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Basic account display.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Transformers\AccountTransformer::transform
|
||||||
|
*/
|
||||||
|
public function testBasic()
|
||||||
|
{
|
||||||
|
// make new account:
|
||||||
|
$account = Account::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'account_type_id' => 3, // asset account
|
||||||
|
'name' => 'Random name #' . rand(1, 10000),
|
||||||
|
'virtual_balance' => 12.34,
|
||||||
|
'iban' => 'NL85ABNA0466812694',
|
||||||
|
'active' => 1,
|
||||||
|
'encrypted' => 0,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$transformer = new AccountTransformer(new ParameterBag);
|
||||||
|
$result = $transformer->transform($account);
|
||||||
|
|
||||||
|
$this->assertEquals($account->name, $result['name']);
|
||||||
|
$this->assertEquals('Asset account', $result['type']);
|
||||||
|
$this->assertEquals(12.34, $result['virtual_balance']);
|
||||||
|
$this->assertEquals(12.34, $result['current_balance']);
|
||||||
|
$this->assertNull($result['opening_balance']);
|
||||||
|
$this->assertNull($result['opening_balance_date']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basic account display with custom date parameter.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Transformers\AccountTransformer::transform
|
||||||
|
*/
|
||||||
|
public function testBasicDate()
|
||||||
|
{
|
||||||
|
// make new account:
|
||||||
|
$account = Account::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'account_type_id' => 3, // asset account
|
||||||
|
'name' => 'Random name #' . rand(1, 10000),
|
||||||
|
'virtual_balance' => 12.34,
|
||||||
|
'iban' => 'NL85ABNA0466812694',
|
||||||
|
'active' => 1,
|
||||||
|
'encrypted' => 0,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
$parameterBag = new ParameterBag;
|
||||||
|
$parameterBag->set('date', new Carbon('2018-01-01'));
|
||||||
|
|
||||||
|
$transformer = new AccountTransformer($parameterBag);
|
||||||
|
$result = $transformer->transform($account);
|
||||||
|
|
||||||
|
$this->assertEquals($account->name, $result['name']);
|
||||||
|
$this->assertEquals('Asset account', $result['type']);
|
||||||
|
$this->assertEquals(12.34, $result['virtual_balance']);
|
||||||
|
$this->assertEquals(12.34, $result['current_balance']);
|
||||||
|
$this->assertEquals('2018-01-01', $result['current_balance_date']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Assert account has credit card meta data, should NOT be ignored in output.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Transformers\AccountTransformer::transform
|
||||||
|
*/
|
||||||
|
public function testCCDataAsset()
|
||||||
|
{
|
||||||
|
// make new account:
|
||||||
|
$account = Account::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'account_type_id' => 3, // asset account
|
||||||
|
'name' => 'Random name #' . rand(1, 10000),
|
||||||
|
'virtual_balance' => 12.34,
|
||||||
|
'iban' => 'NL85ABNA0466812694',
|
||||||
|
'active' => 1,
|
||||||
|
'encrypted' => 0,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
// add currency preference:
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'currency_id',
|
||||||
|
'data' => 1, // euro
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
// add a note:
|
||||||
|
$note = Note::create(
|
||||||
|
[
|
||||||
|
'noteable_id' => $account->id,
|
||||||
|
'noteable_type' => Account::class,
|
||||||
|
'title' => null,
|
||||||
|
'text' => 'I am a note #' . rand(1, 1000),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
// add credit card meta data (will be ignored)
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'accountRole',
|
||||||
|
'data' => 'ccAsset',
|
||||||
|
]
|
||||||
|
);
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'ccMonthlyPaymentDate',
|
||||||
|
'data' => '2018-02-01',
|
||||||
|
]
|
||||||
|
);
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'ccType',
|
||||||
|
'data' => 'monthlyFull',
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
$transformer = new AccountTransformer(new ParameterBag);
|
||||||
|
$result = $transformer->transform($account);
|
||||||
|
|
||||||
|
$this->assertEquals($account->name, $result['name']);
|
||||||
|
$this->assertEquals('Asset account', $result['type']);
|
||||||
|
$this->assertEquals(12.34, $result['virtual_balance']);
|
||||||
|
$this->assertEquals(12.34, $result['current_balance']);
|
||||||
|
$this->assertEquals(1, $result['currency_id']);
|
||||||
|
$this->assertEquals('EUR', $result['currency_code']);
|
||||||
|
$this->assertEquals($note->text, $result['notes']);
|
||||||
|
$this->assertEquals('2018-02-01', $result['monthly_payment_date']);
|
||||||
|
$this->assertEquals('monthlyFull', $result['credit_card_type']);
|
||||||
|
$this->assertEquals('ccAsset', $result['role']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Expense account has credit card meta data, should be ignored in output.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Transformers\AccountTransformer::transform
|
||||||
|
*/
|
||||||
|
public function testIgnoreCCExpense()
|
||||||
|
{
|
||||||
|
// make new account:
|
||||||
|
$account = Account::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'account_type_id' => 4, // expense account
|
||||||
|
'name' => 'Random name #' . rand(1, 10000),
|
||||||
|
'virtual_balance' => 12.34,
|
||||||
|
'iban' => 'NL85ABNA0466812694',
|
||||||
|
'active' => 1,
|
||||||
|
'encrypted' => 0,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
// add currency preference:
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'currency_id',
|
||||||
|
'data' => 1, // euro
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
// add a note:
|
||||||
|
$note = Note::create(
|
||||||
|
[
|
||||||
|
'noteable_id' => $account->id,
|
||||||
|
'noteable_type' => Account::class,
|
||||||
|
'title' => null,
|
||||||
|
'text' => 'I am a note #' . rand(1, 1000),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
// add credit card meta data (will be ignored)
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'accountRole',
|
||||||
|
'data' => 'ccAsset',
|
||||||
|
]
|
||||||
|
);
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'ccMonthlyPaymentDate',
|
||||||
|
'data' => '2018-02-01',
|
||||||
|
]
|
||||||
|
);
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'ccType',
|
||||||
|
'data' => 'monthlyFull',
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
$transformer = new AccountTransformer(new ParameterBag);
|
||||||
|
$result = $transformer->transform($account);
|
||||||
|
|
||||||
|
$this->assertEquals($account->name, $result['name']);
|
||||||
|
$this->assertEquals('Expense account', $result['type']);
|
||||||
|
$this->assertEquals(12.34, $result['virtual_balance']);
|
||||||
|
$this->assertEquals(12.34, $result['current_balance']);
|
||||||
|
$this->assertEquals(1, $result['currency_id']);
|
||||||
|
$this->assertEquals('EUR', $result['currency_code']);
|
||||||
|
$this->assertEquals($note->text, $result['notes']);
|
||||||
|
$this->assertNull($result['monthly_payment_date']);
|
||||||
|
$this->assertNull($result['credit_card_type']);
|
||||||
|
$this->assertNull($result['role']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Basic account display.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Transformers\AccountTransformer::transform
|
||||||
|
*/
|
||||||
|
public function testOpeningBalance()
|
||||||
|
{
|
||||||
|
// make new account:
|
||||||
|
$account = Account::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'account_type_id' => 3, // asset account
|
||||||
|
'name' => 'Random name #' . rand(1, 10000),
|
||||||
|
'virtual_balance' => 12.34,
|
||||||
|
'iban' => 'NL85ABNA0466812694',
|
||||||
|
'active' => 1,
|
||||||
|
'encrypted' => 0,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
// create opening balance:
|
||||||
|
$journal = TransactionJournal::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'transaction_type_id' => 4, // opening balance
|
||||||
|
'transaction_currency_id' => 1, // EUR
|
||||||
|
'description' => 'Opening',
|
||||||
|
'date' => '2018-01-01',
|
||||||
|
'completed' => 1,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
$transaction = Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'transaction_currency_id' => 1,
|
||||||
|
'amount' => '45.67',
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$transformer = new AccountTransformer(new ParameterBag);
|
||||||
|
$result = $transformer->transform($account);
|
||||||
|
|
||||||
|
$this->assertEquals($account->name, $result['name']);
|
||||||
|
$this->assertEquals('Asset account', $result['type']);
|
||||||
|
$this->assertEquals(12.34, $result['virtual_balance']);
|
||||||
|
$this->assertEquals(58.01, $result['current_balance']); // add opening balance.
|
||||||
|
$this->assertEquals(45.67, $result['opening_balance']);
|
||||||
|
$this->assertEquals('2018-01-01', $result['opening_balance_date']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Account has currency preference, should be reflected in output.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Transformers\AccountTransformer::transform
|
||||||
|
*/
|
||||||
|
public function testWithCurrency()
|
||||||
|
{
|
||||||
|
// make new account:
|
||||||
|
$account = Account::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'account_type_id' => 3, // asset account
|
||||||
|
'name' => 'Random name #' . rand(1, 10000),
|
||||||
|
'virtual_balance' => 12.34,
|
||||||
|
'iban' => 'NL85ABNA0466812694',
|
||||||
|
'active' => 1,
|
||||||
|
'encrypted' => 0,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
// add currency preference:
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'currency_id',
|
||||||
|
'data' => 1, // euro
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$transformer = new AccountTransformer(new ParameterBag);
|
||||||
|
$result = $transformer->transform($account);
|
||||||
|
|
||||||
|
$this->assertEquals($account->name, $result['name']);
|
||||||
|
$this->assertEquals('Asset account', $result['type']);
|
||||||
|
$this->assertEquals(12.34, $result['virtual_balance']);
|
||||||
|
$this->assertEquals(12.34, $result['current_balance']);
|
||||||
|
$this->assertEquals(1, $result['currency_id']);
|
||||||
|
$this->assertEquals('EUR', $result['currency_code']);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Account has notes, should be reflected in output.
|
||||||
|
*
|
||||||
|
* @covers \FireflyIII\Transformers\AccountTransformer::transform
|
||||||
|
*/
|
||||||
|
public function testWithNotes()
|
||||||
|
{
|
||||||
|
// make new account:
|
||||||
|
$account = Account::create(
|
||||||
|
[
|
||||||
|
'user_id' => $this->user()->id,
|
||||||
|
'account_type_id' => 3, // asset account
|
||||||
|
'name' => 'Random name #' . rand(1, 10000),
|
||||||
|
'virtual_balance' => 12.34,
|
||||||
|
'iban' => 'NL85ABNA0466812694',
|
||||||
|
'active' => 1,
|
||||||
|
'encrypted' => 0,
|
||||||
|
]
|
||||||
|
);
|
||||||
|
// add currency preference:
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account->id,
|
||||||
|
'name' => 'currency_id',
|
||||||
|
'data' => 1, // euro
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
// add a note:
|
||||||
|
$note = Note::create(
|
||||||
|
[
|
||||||
|
'noteable_id' => $account->id,
|
||||||
|
'noteable_type' => Account::class,
|
||||||
|
'title' => null,
|
||||||
|
'text' => 'I am a note #' . rand(1, 1000),
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
$transformer = new AccountTransformer(new ParameterBag);
|
||||||
|
$result = $transformer->transform($account);
|
||||||
|
|
||||||
|
$this->assertEquals($account->name, $result['name']);
|
||||||
|
$this->assertEquals('Asset account', $result['type']);
|
||||||
|
$this->assertEquals(12.34, $result['virtual_balance']);
|
||||||
|
$this->assertEquals(12.34, $result['current_balance']);
|
||||||
|
$this->assertEquals(1, $result['currency_id']);
|
||||||
|
$this->assertEquals('EUR', $result['currency_code']);
|
||||||
|
$this->assertEquals($note->text, $result['notes']);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
}
|
Reference in New Issue
Block a user