mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-27 16:56:46 -06:00
129 lines
4.1 KiB
PHP
129 lines
4.1 KiB
PHP
<?php
|
|
/**
|
|
* ConvertToWithdrawalTest.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\Actions;
|
|
|
|
|
|
use Exception;
|
|
use FireflyIII\Factory\AccountFactory;
|
|
use FireflyIII\Models\AccountType;
|
|
use FireflyIII\Models\RuleAction;
|
|
use FireflyIII\Models\TransactionType;
|
|
use FireflyIII\TransactionRules\Actions\ConvertToWithdrawal;
|
|
use Log;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
*
|
|
* Class ConvertToWithdrawalTest
|
|
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
|
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
|
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
|
|
*/
|
|
class ConvertToWithdrawalTest extends TestCase
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
Log::info(sprintf('Now in %s.', get_class($this)));
|
|
}
|
|
|
|
/**
|
|
* Convert a deposit to a withdrawal.
|
|
*
|
|
* @covers \FireflyIII\TransactionRules\Actions\ConvertToWithdrawal
|
|
*/
|
|
public function testActDeposit()
|
|
{
|
|
$expense = $this->getRandomExpense();
|
|
$name = 'Random expense #' . $this->randomInt();
|
|
$deposit = $this->getRandomDeposit();
|
|
|
|
// journal is a deposit:
|
|
$this->assertEquals(TransactionType::DEPOSIT, $deposit->transactionType->type);
|
|
|
|
// mock used stuff:
|
|
$factory = $this->mock(AccountFactory::class);
|
|
$factory->shouldReceive('setUser')->once();
|
|
$factory->shouldReceive('findOrCreate')->once()->withArgs([$name, AccountType::EXPENSE])->andReturn($expense);
|
|
|
|
|
|
// fire the action:
|
|
$ruleAction = new RuleAction;
|
|
$ruleAction->action_value = $name;
|
|
$action = new ConvertToWithdrawal($ruleAction);
|
|
try {
|
|
$result = $action->act($deposit);
|
|
} catch (Exception $e) {
|
|
Log::error($e->getMessage());
|
|
Log::error($e->getTraceAsString());
|
|
$this->assertTrue(false, $e->getMessage());
|
|
}
|
|
$this->assertTrue($result);
|
|
|
|
// journal is now a withdrawal.
|
|
$deposit->refresh();
|
|
$this->assertEquals(TransactionType::WITHDRAWAL, $deposit->transactionType->type);
|
|
}
|
|
|
|
/**
|
|
* Convert a transfer to a deposit.
|
|
*
|
|
* @covers \FireflyIII\TransactionRules\Actions\ConvertToWithdrawal
|
|
*/
|
|
public function testActTransfer()
|
|
{
|
|
$expense = $this->getRandomExpense();
|
|
$name = 'Random expense #' . $this->randomInt();
|
|
$transfer = $this->getRandomTransfer();
|
|
|
|
// mock used stuff:
|
|
$factory = $this->mock(AccountFactory::class);
|
|
$factory->shouldReceive('setUser')->once();
|
|
$factory->shouldReceive('findOrCreate')->once()->withArgs([$name, AccountType::EXPENSE])->andReturn($expense);
|
|
|
|
|
|
// fire the action:
|
|
$ruleAction = new RuleAction;
|
|
$ruleAction->action_value = $name;
|
|
$action = new ConvertToWithdrawal($ruleAction);
|
|
try {
|
|
$result = $action->act($transfer);
|
|
} catch (Exception $e) {
|
|
Log::error($e->getMessage());
|
|
Log::error($e->getTraceAsString());
|
|
$this->assertTrue(false, $e->getMessage());
|
|
}
|
|
$this->assertTrue($result);
|
|
|
|
// journal is now a deposit.
|
|
$transfer->refresh();
|
|
$this->assertEquals(TransactionType::WITHDRAWAL, $transfer->transactionType->type);
|
|
}
|
|
|
|
|
|
}
|