mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-21 11:45:14 +00:00
125 lines
4.0 KiB
PHP
125 lines
4.0 KiB
PHP
<?php
|
|
/**
|
|
* HasAnyBudgetTest.php
|
|
* Copyright (c) 2019 james@firefly-iii.org
|
|
*
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
|
*
|
|
* This program is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
* License, or (at your option) any later version.
|
|
*
|
|
* This program 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 Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Unit\TransactionRules\Triggers;
|
|
|
|
use FireflyIII\Models\Transaction;
|
|
use FireflyIII\TransactionRules\Triggers\HasAnyBudget;
|
|
use Log;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Class HasAnyBudgetTest
|
|
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
|
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
|
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
|
|
*/
|
|
class HasAnyBudgetTest extends TestCase
|
|
{
|
|
/**
|
|
* Set up test
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
self::markTestIncomplete('Incomplete for refactor.');
|
|
|
|
return;
|
|
}
|
|
/**
|
|
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
|
|
*/
|
|
public function testTriggered(): void
|
|
{
|
|
$withdrawal = $this->getRandomWithdrawal();
|
|
|
|
$budget = $withdrawal->user->budgets()->first();
|
|
$withdrawal->budgets()->detach();
|
|
$withdrawal->budgets()->save($budget);
|
|
|
|
$this->assertEquals(1, $withdrawal->budgets()->count());
|
|
$trigger = HasAnyBudget::makeFromStrings('', false);
|
|
$result = $trigger->triggered($withdrawal);
|
|
$this->assertTrue($result);
|
|
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
|
|
*/
|
|
public function testTriggeredNot(): void
|
|
{
|
|
$withdrawal = $this->getRandomWithdrawal();
|
|
$withdrawal->budgets()->detach();
|
|
$this->assertEquals(0, $withdrawal->budgets()->count());
|
|
|
|
// also detach all transactions:
|
|
/** @var Transaction $transaction */
|
|
foreach ($withdrawal->transactions()->get() as $transaction) {
|
|
$transaction->budgets()->detach();
|
|
}
|
|
|
|
$trigger = HasAnyBudget::makeFromStrings('', false);
|
|
$result = $trigger->triggered($withdrawal);
|
|
$this->assertFalse($result);
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
|
|
*/
|
|
public function testTriggeredTransactions(): void
|
|
{
|
|
Log::debug('Now in testTriggeredTransactions()');
|
|
$withdrawal = $this->getRandomWithdrawal();
|
|
|
|
$budget = $withdrawal->user->budgets()->first();
|
|
Log::debug(sprintf('First budget is %d ("%s")', $budget->id, $budget->name));
|
|
$withdrawal->budgets()->detach();
|
|
$this->assertEquals(0, $withdrawal->budgets()->count());
|
|
Log::debug('Survived the assumption.');
|
|
|
|
// append to transaction
|
|
Log::debug('Do transaction loop.');
|
|
foreach ($withdrawal->transactions()->get() as $index => $transaction) {
|
|
Log::debug(sprintf('Now at index #%d, transaction #%d', $index, $transaction->id));
|
|
$transaction->budgets()->detach();
|
|
if (0 === $index) {
|
|
Log::debug('Index is zero, attach budget.');
|
|
$transaction->budgets()->save($budget);
|
|
}
|
|
}
|
|
Log::debug('Done with loop, make trigger');
|
|
$trigger = HasAnyBudget::makeFromStrings('', false);
|
|
$result = $trigger->triggered($withdrawal);
|
|
$this->assertTrue($result);
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\TransactionRules\Triggers\HasAnyBudget
|
|
*/
|
|
public function testWillMatchEverything(): void
|
|
{
|
|
$value = '';
|
|
$result = HasAnyBudget::willMatchEverything($value);
|
|
$this->assertFalse($result);
|
|
}
|
|
}
|