mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Built some new tests
This commit is contained in:
parent
067c451c1d
commit
724db6c34c
@ -84,7 +84,7 @@ class Journal extends Twig_Extension
|
|||||||
if ($tag->tagMode == 'balancingAct') {
|
if ($tag->tagMode == 'balancingAct') {
|
||||||
// return tag formatted for a "balancing act", even if other
|
// return tag formatted for a "balancing act", even if other
|
||||||
// tags are present.
|
// tags are present.
|
||||||
$amount = App::make('amount')->formatJournal($journal, false);
|
$amount = App::make('amount')->format($journal->actual_amount, false);
|
||||||
|
|
||||||
return '<a href="' . route('tags.show', $tag->id) . '" class="label label-success" title="' . $amount
|
return '<a href="' . route('tags.show', $tag->id) . '" class="label label-success" title="' . $amount
|
||||||
. '"><i class="fa fa-fw fa-refresh"></i> ' . $tag->tag . '</a>';
|
. '"><i class="fa fa-fw fa-refresh"></i> ' . $tag->tag . '</a>';
|
||||||
|
401
tests/helpers/ReportQueryTest.php
Normal file
401
tests/helpers/ReportQueryTest.php
Normal file
@ -0,0 +1,401 @@
|
|||||||
|
<?php
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use FireflyIII\Helpers\Report\ReportQuery;
|
||||||
|
use FireflyIII\Models\AccountMeta;
|
||||||
|
use FireflyIII\Models\Transaction;
|
||||||
|
use League\FactoryMuffin\Facade as FactoryMuffin;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Class ReportQueryTest
|
||||||
|
*/
|
||||||
|
class ReportQueryTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* @var ReportQuery
|
||||||
|
*/
|
||||||
|
protected $object;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sets up the fixture, for example, opens a network connection.
|
||||||
|
* This method is called before a test is executed.
|
||||||
|
*/
|
||||||
|
public function setUp()
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
FactoryMuffin::create('FireflyIII\User');
|
||||||
|
$this->object = new ReportQuery;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Tears down the fixture, for example, closes a network connection.
|
||||||
|
* This method is called after a test is executed.
|
||||||
|
*/
|
||||||
|
public function tearDown()
|
||||||
|
{
|
||||||
|
parent::tearDown();
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::expenseInPeriodCorrected
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::queryJournalsWithTransactions
|
||||||
|
*/
|
||||||
|
public function testExpenseInPeriodCorrected()
|
||||||
|
{
|
||||||
|
$start = new Carbon('2015-01-01');
|
||||||
|
$end = new Carbon('2015-02-01');
|
||||||
|
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
$type = FactoryMuffin::create('FireflyIII\Models\TransactionType');
|
||||||
|
|
||||||
|
$expense = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
$asset = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
|
||||||
|
$date = new Carbon('2015-01-12');
|
||||||
|
|
||||||
|
for ($i = 0; $i < 10; $i++) {
|
||||||
|
$journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal');
|
||||||
|
$journal->date = $date;
|
||||||
|
$journal->user_id = $user->id;
|
||||||
|
$journal->transaction_type_id = $type->id;
|
||||||
|
$journal->save();
|
||||||
|
|
||||||
|
// two transactions:
|
||||||
|
$account1 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account2 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account1->account_type_id = $asset->id;
|
||||||
|
$account1->user_id = $user->id;
|
||||||
|
$account2->account_type_id = $expense->id;
|
||||||
|
$account2->user_id = $user->id;
|
||||||
|
$account1->save();
|
||||||
|
$account2->save();
|
||||||
|
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'name' => 'accountRole',
|
||||||
|
'data' => 'defaultAsset'
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account2->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => 100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => -100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
|
||||||
|
$set = $this->object->expenseInPeriodCorrected($start, $end, false);
|
||||||
|
|
||||||
|
|
||||||
|
$this->assertCount(10, $set);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::expenseInPeriodCorrected
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::queryJournalsWithTransactions
|
||||||
|
*/
|
||||||
|
public function testExpenseInPeriodCorrectedShared()
|
||||||
|
{
|
||||||
|
$start = new Carbon('2015-01-01');
|
||||||
|
$end = new Carbon('2015-02-01');
|
||||||
|
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
$type = FactoryMuffin::create('FireflyIII\Models\TransactionType');
|
||||||
|
|
||||||
|
$expense = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
$asset = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
|
||||||
|
$date = new Carbon('2015-01-12');
|
||||||
|
|
||||||
|
for ($i = 0; $i < 10; $i++) {
|
||||||
|
$journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal');
|
||||||
|
$journal->date = $date;
|
||||||
|
$journal->user_id = $user->id;
|
||||||
|
$journal->transaction_type_id = $type->id;
|
||||||
|
$journal->save();
|
||||||
|
|
||||||
|
// two transactions:
|
||||||
|
$account1 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account2 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account1->account_type_id = $asset->id;
|
||||||
|
$account1->user_id = $user->id;
|
||||||
|
$account2->account_type_id = $expense->id;
|
||||||
|
$account2->user_id = $user->id;
|
||||||
|
$account1->save();
|
||||||
|
$account2->save();
|
||||||
|
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'name' => 'accountRole',
|
||||||
|
'data' => 'defaultAsset'
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account2->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => 100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => -100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
$set = $this->object->expenseInPeriodCorrected($start, $end, true);
|
||||||
|
|
||||||
|
$this->assertCount(10, $set);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::getAllAccounts
|
||||||
|
*/
|
||||||
|
public function testGetAllAccounts()
|
||||||
|
{
|
||||||
|
$start = new Carbon('2015-01-01');
|
||||||
|
$end = new Carbon('2015-02-01');
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$asset = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
|
||||||
|
for ($i = 0; $i < 10; $i++) {
|
||||||
|
$account = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account->account_type_id = $asset->id;
|
||||||
|
$account->user_id = $user->id;
|
||||||
|
$account->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
Steam::shouldReceive('balance')->andReturn(0);
|
||||||
|
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
$set = $this->object->getAllAccounts($start, $end, false);
|
||||||
|
$this->assertCount(10, $set);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::getAllAccounts
|
||||||
|
*/
|
||||||
|
public function testGetAllAccountsShared()
|
||||||
|
{
|
||||||
|
$start = new Carbon('2015-01-01');
|
||||||
|
$end = new Carbon('2015-02-01');
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$asset = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
|
||||||
|
for ($i = 0; $i < 10; $i++) {
|
||||||
|
$account = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account->account_type_id = $asset->id;
|
||||||
|
$account->user_id = $user->id;
|
||||||
|
$account->save();
|
||||||
|
}
|
||||||
|
|
||||||
|
Steam::shouldReceive('balance')->andReturn(0);
|
||||||
|
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
$set = $this->object->getAllAccounts($start, $end, true);
|
||||||
|
$this->assertCount(10, $set);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::incomeInPeriodCorrected
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::queryJournalsWithTransactions
|
||||||
|
*/
|
||||||
|
public function testIncomeInPeriodCorrected()
|
||||||
|
{
|
||||||
|
$start = new Carbon('2015-01-01');
|
||||||
|
$end = new Carbon('2015-02-01');
|
||||||
|
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
FactoryMuffin::create('FireflyIII\Models\TransactionType');
|
||||||
|
$type = FactoryMuffin::create('FireflyIII\Models\TransactionType');
|
||||||
|
|
||||||
|
$expense = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
$asset = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
|
||||||
|
$date = new Carbon('2015-01-12');
|
||||||
|
|
||||||
|
for ($i = 0; $i < 10; $i++) {
|
||||||
|
$journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal');
|
||||||
|
$journal->date = $date;
|
||||||
|
$journal->user_id = $user->id;
|
||||||
|
$journal->transaction_type_id = $type->id;
|
||||||
|
$journal->save();
|
||||||
|
|
||||||
|
// two transactions:
|
||||||
|
$account1 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account2 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account1->account_type_id = $asset->id;
|
||||||
|
$account1->user_id = $user->id;
|
||||||
|
$account2->account_type_id = $expense->id;
|
||||||
|
$account2->user_id = $user->id;
|
||||||
|
$account1->save();
|
||||||
|
$account2->save();
|
||||||
|
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'name' => 'accountRole',
|
||||||
|
'data' => 'defaultAsset'
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account2->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => -100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => 100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
$set = $this->object->incomeInPeriodCorrected($start, $end, false);
|
||||||
|
|
||||||
|
$this->assertCount(10, $set);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::incomeInPeriodCorrected
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::queryJournalsWithTransactions
|
||||||
|
*/
|
||||||
|
public function testIncomeInPeriodCorrectedShared()
|
||||||
|
{
|
||||||
|
$start = new Carbon('2015-01-01');
|
||||||
|
$end = new Carbon('2015-02-01');
|
||||||
|
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
FactoryMuffin::create('FireflyIII\Models\TransactionType');
|
||||||
|
$type = FactoryMuffin::create('FireflyIII\Models\TransactionType');
|
||||||
|
|
||||||
|
$expense = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
$asset = FactoryMuffin::create('FireflyIII\Models\AccountType');
|
||||||
|
|
||||||
|
$date = new Carbon('2015-01-12');
|
||||||
|
|
||||||
|
for ($i = 0; $i < 10; $i++) {
|
||||||
|
$journal = FactoryMuffin::create('FireflyIII\Models\TransactionJournal');
|
||||||
|
$journal->date = $date;
|
||||||
|
$journal->user_id = $user->id;
|
||||||
|
$journal->transaction_type_id = $type->id;
|
||||||
|
$journal->save();
|
||||||
|
|
||||||
|
// two transactions:
|
||||||
|
$account1 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account2 = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account1->account_type_id = $asset->id;
|
||||||
|
$account1->user_id = $user->id;
|
||||||
|
$account2->account_type_id = $expense->id;
|
||||||
|
$account2->user_id = $user->id;
|
||||||
|
$account1->save();
|
||||||
|
$account2->save();
|
||||||
|
|
||||||
|
AccountMeta::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'name' => 'accountRole',
|
||||||
|
'data' => 'defaultAsset'
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account2->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => -100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
Transaction::create(
|
||||||
|
[
|
||||||
|
'account_id' => $account1->id,
|
||||||
|
'transaction_journal_id' => $journal->id,
|
||||||
|
'amount' => 100
|
||||||
|
]
|
||||||
|
);
|
||||||
|
|
||||||
|
}
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
$set = $this->object->incomeInPeriodCorrected($start, $end, true);
|
||||||
|
|
||||||
|
$this->assertCount(10, $set);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::spentInBudgetCorrected
|
||||||
|
*/
|
||||||
|
public function testSpentInBudgetCorrected()
|
||||||
|
{
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
$account = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account->user_id = $user->id;
|
||||||
|
$budget = FactoryMuffin::create('FireflyIII\Models\Budget');
|
||||||
|
$budget->user_id = $user->id;
|
||||||
|
|
||||||
|
$account->save();
|
||||||
|
$budget->save();
|
||||||
|
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
$result = $this->object->spentInBudgetCorrected($account, $budget, new Carbon, new Carbon);
|
||||||
|
$this->assertEquals(0, $result);
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers FireflyIII\Helpers\Report\ReportQuery::spentNoBudget
|
||||||
|
*/
|
||||||
|
public function testSpentNoBudget()
|
||||||
|
{
|
||||||
|
|
||||||
|
$user = FactoryMuffin::create('FireflyIII\User');
|
||||||
|
$account = FactoryMuffin::create('FireflyIII\Models\Account');
|
||||||
|
$account->user_id = $user->id;
|
||||||
|
|
||||||
|
$account->save();
|
||||||
|
|
||||||
|
$this->be($user);
|
||||||
|
|
||||||
|
$result = $this->object->spentNoBudget($account, new Carbon, new Carbon);
|
||||||
|
$this->assertEquals(0, $result);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user