2018-03-04 07:56:30 +01:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* TransactionUpdateServiceTest.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\Services\Internal\Update;
|
|
|
|
|
|
|
|
|
|
|
|
use FireflyIII\Factory\BudgetFactory;
|
|
|
|
use FireflyIII\Factory\CategoryFactory;
|
|
|
|
use FireflyIII\Models\Transaction;
|
2018-03-07 10:18:50 +01:00
|
|
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
2018-03-04 07:56:30 +01:00
|
|
|
use FireflyIII\Services\Internal\Update\TransactionUpdateService;
|
|
|
|
use Tests\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Class TransactionUpdateServiceTest
|
|
|
|
*/
|
|
|
|
class TransactionUpdateServiceTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @covers \FireflyIII\Services\Internal\Update\TransactionUpdateService
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function testReconcile(): void
|
2018-03-04 07:56:30 +01:00
|
|
|
{
|
|
|
|
$transaction = $this->user()->transactions()->inRandomOrder()->first();
|
|
|
|
|
|
|
|
/** @var TransactionUpdateService $service */
|
|
|
|
$service = app(TransactionUpdateService::class);
|
|
|
|
$service->setUser($this->user());
|
|
|
|
$result = $service->reconcile($transaction->id);
|
|
|
|
$this->assertEquals($result->id, $transaction->id);
|
|
|
|
$this->assertEquals(true, $result->reconciled);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \FireflyIII\Services\Internal\Update\TransactionUpdateService
|
|
|
|
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function testReconcileNull(): void
|
2018-03-04 07:56:30 +01:00
|
|
|
{
|
|
|
|
/** @var TransactionUpdateService $service */
|
|
|
|
$service = app(TransactionUpdateService::class);
|
|
|
|
$service->setUser($this->user());
|
|
|
|
$result = $service->reconcile(-1);
|
|
|
|
$this->assertNull($result);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \FireflyIII\Services\Internal\Update\TransactionUpdateService
|
|
|
|
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function testUpdateBudget(): void
|
2018-03-04 07:56:30 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
/** @var Transaction $source */
|
|
|
|
$source = $this->user()->transactions()->where('amount', '>', 0)->inRandomOrder()->first();
|
|
|
|
$budget = $this->user()->budgets()->inRandomOrder()->first();
|
|
|
|
|
|
|
|
$factory = $this->mock(BudgetFactory::class);
|
|
|
|
$factory->shouldReceive('setUser');
|
|
|
|
$factory->shouldReceive('find')->andReturn($budget);
|
|
|
|
|
|
|
|
/** @var TransactionUpdateService $service */
|
|
|
|
$service = app(TransactionUpdateService::class);
|
|
|
|
$service->setUser($this->user());
|
|
|
|
$result = $service->updateBudget($source, $budget->id);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $result->budgets()->count());
|
|
|
|
$this->assertEquals($budget->name, $result->budgets()->first()->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \FireflyIII\Services\Internal\Update\TransactionUpdateService
|
|
|
|
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function testUpdateCategory(): void
|
2018-03-04 07:56:30 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
/** @var Transaction $source */
|
|
|
|
$source = $this->user()->transactions()->where('amount', '>', 0)->inRandomOrder()->first();
|
|
|
|
$category = $this->user()->categories()->inRandomOrder()->first();
|
|
|
|
|
|
|
|
$factory = $this->mock(CategoryFactory::class);
|
|
|
|
$factory->shouldReceive('setUser');
|
|
|
|
$factory->shouldReceive('findOrCreate')->andReturn($category);
|
|
|
|
|
|
|
|
/** @var TransactionUpdateService $service */
|
|
|
|
$service = app(TransactionUpdateService::class);
|
|
|
|
$service->setUser($this->user());
|
|
|
|
$result = $service->updateCategory($source, $category->name);
|
|
|
|
|
|
|
|
$this->assertEquals(1, $result->categories()->count());
|
|
|
|
$this->assertEquals($category->name, $result->categories()->first()->name);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \FireflyIII\Services\Internal\Update\TransactionUpdateService
|
|
|
|
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function testUpdateDestinationBasic(): void
|
2018-03-04 07:56:30 +01:00
|
|
|
{
|
|
|
|
/** @var Transaction $source */
|
|
|
|
$source = $this->user()->transactions()->where('amount', '>', 0)->inRandomOrder()->first();
|
2018-03-07 10:18:50 +01:00
|
|
|
$data = [
|
2018-03-04 07:56:30 +01:00
|
|
|
'currency_id' => 1,
|
|
|
|
'currency_code' => null,
|
|
|
|
'description' => 'Some new description',
|
|
|
|
'reconciled' => false,
|
|
|
|
'foreign_amount' => null,
|
|
|
|
'budget_id' => null,
|
|
|
|
'budget_name' => null,
|
2018-04-02 14:17:11 +02:00
|
|
|
'destination_id' => (int)$source->account_id,
|
2018-03-04 07:56:30 +01:00
|
|
|
'destination_name' => null,
|
|
|
|
'category_id' => null,
|
|
|
|
'category_name' => null,
|
|
|
|
'amount' => $source->amount,
|
|
|
|
'foreign_currency_id' => null,
|
|
|
|
'foreign_currency_code' => null,
|
|
|
|
];
|
|
|
|
|
2018-03-07 10:18:50 +01:00
|
|
|
// mock repository:
|
|
|
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
|
|
$accountRepos->shouldReceive('setUser');
|
|
|
|
$accountRepos->shouldReceive('findNull')->andReturn($source->account);
|
|
|
|
|
2018-03-04 07:56:30 +01:00
|
|
|
/** @var TransactionUpdateService $service */
|
|
|
|
$service = app(TransactionUpdateService::class);
|
|
|
|
$service->setUser($this->user());
|
|
|
|
$result = $service->update($source, $data);
|
|
|
|
|
|
|
|
$this->assertEquals($source->id, $result->id);
|
|
|
|
$this->assertEquals($result->description, $data['description']);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \FireflyIII\Services\Internal\Update\TransactionUpdateService
|
|
|
|
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function testUpdateDestinationForeign(): void
|
2018-03-04 07:56:30 +01:00
|
|
|
{
|
|
|
|
/** @var Transaction $source */
|
|
|
|
$source = $this->user()->transactions()->where('amount', '>', 0)->inRandomOrder()->first();
|
|
|
|
$data = [
|
|
|
|
'currency_id' => 1,
|
|
|
|
'currency_code' => null,
|
|
|
|
'description' => 'Some new description',
|
|
|
|
'reconciled' => false,
|
|
|
|
'foreign_amount' => '12.34',
|
|
|
|
'budget_id' => null,
|
|
|
|
'budget_name' => null,
|
2018-04-02 14:17:11 +02:00
|
|
|
'destination_id' => (int)$source->account_id,
|
2018-03-04 07:56:30 +01:00
|
|
|
'destination_name' => null,
|
|
|
|
'category_id' => null,
|
|
|
|
'category_name' => null,
|
|
|
|
'amount' => $source->amount,
|
|
|
|
'foreign_currency_id' => 2,
|
|
|
|
'foreign_currency_code' => null,
|
|
|
|
];
|
|
|
|
|
2018-03-07 10:18:50 +01:00
|
|
|
// mock repository:
|
|
|
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
|
|
$accountRepos->shouldReceive('setUser');
|
|
|
|
$accountRepos->shouldReceive('findNull')->andReturn($source->account);
|
|
|
|
|
2018-03-04 07:56:30 +01:00
|
|
|
/** @var TransactionUpdateService $service */
|
|
|
|
$service = app(TransactionUpdateService::class);
|
|
|
|
$service->setUser($this->user());
|
|
|
|
$result = $service->update($source, $data);
|
|
|
|
|
2018-03-07 10:18:50 +01:00
|
|
|
|
|
|
|
|
2018-03-04 07:56:30 +01:00
|
|
|
$this->assertEquals($source->id, $result->id);
|
|
|
|
$this->assertEquals($result->description, $data['description']);
|
|
|
|
$this->assertEquals($data['foreign_amount'], $result->foreign_amount);
|
|
|
|
$this->assertEquals($data['foreign_currency_id'], $result->foreign_currency_id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @covers \FireflyIII\Services\Internal\Update\TransactionUpdateService
|
|
|
|
* @covers \FireflyIII\Services\Internal\Support\TransactionServiceTrait
|
|
|
|
*/
|
2018-05-11 19:58:10 +02:00
|
|
|
public function testUpdateSourceBasic(): void
|
2018-03-04 07:56:30 +01:00
|
|
|
{
|
|
|
|
/** @var Transaction $source */
|
|
|
|
$source = $this->user()->transactions()->where('amount', '<', 0)->inRandomOrder()->first();
|
|
|
|
$data = [
|
|
|
|
'currency_id' => 1,
|
|
|
|
'currency_code' => null,
|
|
|
|
'description' => 'Some new description',
|
|
|
|
'reconciled' => false,
|
|
|
|
'foreign_amount' => null,
|
|
|
|
'budget_id' => null,
|
|
|
|
'budget_name' => null,
|
2018-04-02 14:17:11 +02:00
|
|
|
'source_id' => (int)$source->account_id,
|
2018-03-04 07:56:30 +01:00
|
|
|
'source_name' => null,
|
|
|
|
'category_id' => null,
|
|
|
|
'category_name' => null,
|
|
|
|
'amount' => $source->amount,
|
|
|
|
'foreign_currency_id' => null,
|
|
|
|
'foreign_currency_code' => null,
|
|
|
|
];
|
|
|
|
|
2018-03-07 10:18:50 +01:00
|
|
|
// mock repository:
|
|
|
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
|
|
$accountRepos->shouldReceive('setUser');
|
|
|
|
$accountRepos->shouldReceive('findNull')->andReturn($source->account);
|
|
|
|
|
2018-03-04 07:56:30 +01:00
|
|
|
/** @var TransactionUpdateService $service */
|
|
|
|
$service = app(TransactionUpdateService::class);
|
|
|
|
$service->setUser($this->user());
|
|
|
|
$result = $service->update($source, $data);
|
|
|
|
|
|
|
|
$this->assertEquals($source->id, $result->id);
|
|
|
|
$this->assertEquals($result->description, $data['description']);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2018-03-04 15:14:29 +01:00
|
|
|
}
|