mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-30 10:33:30 +00:00
Improve category code quality.
This commit is contained in:
@@ -97,8 +97,11 @@ class BudgetLimitController extends Controller
|
|||||||
$baseUrl = $request->getSchemeAndHttpHost() . '/api/v1';
|
$baseUrl = $request->getSchemeAndHttpHost() . '/api/v1';
|
||||||
$budgetId = (int)($request->get('budget_id') ?? 0);
|
$budgetId = (int)($request->get('budget_id') ?? 0);
|
||||||
$budget = $this->repository->findNull($budgetId);
|
$budget = $this->repository->findNull($budgetId);
|
||||||
|
$start = null;
|
||||||
|
$end = null;
|
||||||
$this->parameters->set('budget_id', $budgetId);
|
$this->parameters->set('budget_id', $budgetId);
|
||||||
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$start = Carbon::createFromFormat('Y-m-d', $request->get('start'));
|
$start = Carbon::createFromFormat('Y-m-d', $request->get('start'));
|
||||||
$this->parameters->set('start', $start->format('Y-m-d'));
|
$this->parameters->set('start', $start->format('Y-m-d'));
|
||||||
|
@@ -228,6 +228,8 @@ class ShowController extends Controller
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @return Collection
|
* @return Collection
|
||||||
|
*
|
||||||
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
||||||
*/
|
*/
|
||||||
private function getPeriodOverview(): Collection
|
private function getPeriodOverview(): Collection
|
||||||
{
|
{
|
||||||
|
225
app/Http/Controllers/Category/NoCategoryController.php
Normal file
225
app/Http/Controllers/Category/NoCategoryController.php
Normal file
@@ -0,0 +1,225 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* NoCategoryController.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 FireflyIII\Http\Controllers\Category;
|
||||||
|
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
||||||
|
use FireflyIII\Helpers\Filter\InternalTransferFilter;
|
||||||
|
use FireflyIII\Http\Controllers\Controller;
|
||||||
|
use FireflyIII\Models\TransactionType;
|
||||||
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
|
use FireflyIII\Support\CacheProperties;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
use Log;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Class NoCategoryController
|
||||||
|
*/
|
||||||
|
class NoCategoryController extends Controller
|
||||||
|
{
|
||||||
|
|
||||||
|
/** @var JournalRepositoryInterface */
|
||||||
|
private $journalRepos;
|
||||||
|
/** @var CategoryRepositoryInterface */
|
||||||
|
private $repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CategoryController constructor.
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
|
||||||
|
$this->middleware(
|
||||||
|
function ($request, $next) {
|
||||||
|
app('view')->share('title', trans('firefly.categories'));
|
||||||
|
app('view')->share('mainTitleIcon', 'fa-bar-chart');
|
||||||
|
$this->journalRepos = app(JournalRepositoryInterface::class);
|
||||||
|
$this->repository = app(CategoryRepositoryInterface::class);
|
||||||
|
|
||||||
|
return $next($request);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param string|null $moment
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||||
|
*/
|
||||||
|
public function show(Request $request, Carbon $start = null, Carbon $end = null)
|
||||||
|
{
|
||||||
|
Log::debug('Start of noCategory()');
|
||||||
|
/** @var Carbon $start */
|
||||||
|
$start = $start ?? session('start');
|
||||||
|
/** @var Carbon $end */
|
||||||
|
$end = $end ?? session('end');
|
||||||
|
$moment = '';
|
||||||
|
$page = (int)$request->get('page');
|
||||||
|
$pageSize = (int)app('preferences')->get('listPageSize', 50)->data;
|
||||||
|
$subTitle = trans(
|
||||||
|
'firefly.without_category_between',
|
||||||
|
['start' => $start->formatLocalized($this->monthAndDayFormat), 'end' => $end->formatLocalized($this->monthAndDayFormat)]
|
||||||
|
);
|
||||||
|
$periods = $this->getNoCategoryPeriodOverview($start);
|
||||||
|
|
||||||
|
Log::debug(sprintf('Start for noCategory() is %s', $start->format('Y-m-d')));
|
||||||
|
Log::debug(sprintf('End for noCategory() is %s', $end->format('Y-m-d')));
|
||||||
|
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($start, $end)->setLimit($pageSize)->setPage($page)->withoutCategory()->withOpposingAccount()
|
||||||
|
->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]);
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$transactions = $collector->getPaginatedJournals();
|
||||||
|
$transactions->setPath(route('categories.no-category'));
|
||||||
|
|
||||||
|
return view('categories.no-category', compact('transactions', 'subTitle', 'moment', 'periods', 'start', 'end'));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param string|null $moment
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||||
|
*/
|
||||||
|
public function showAll(Request $request, string $moment = null)
|
||||||
|
{
|
||||||
|
// default values:
|
||||||
|
$moment = $moment ?? '';
|
||||||
|
$start = null;
|
||||||
|
$end = null;
|
||||||
|
$periods = new Collection;
|
||||||
|
$page = (int)$request->get('page');
|
||||||
|
$pageSize = (int)app('preferences')->get('listPageSize', 50)->data;
|
||||||
|
Log::debug('Start of noCategory()');
|
||||||
|
$subTitle = trans('firefly.all_journals_without_category');
|
||||||
|
$first = $this->journalRepos->firstNull();
|
||||||
|
$start = null === $first ? new Carbon : $first->date;
|
||||||
|
$end = new Carbon;
|
||||||
|
Log::debug(sprintf('Start for noCategory() is %s', $start->format('Y-m-d')));
|
||||||
|
Log::debug(sprintf('End for noCategory() is %s', $end->format('Y-m-d')));
|
||||||
|
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($start, $end)->setLimit($pageSize)->setPage($page)->withoutCategory()->withOpposingAccount()
|
||||||
|
->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]);
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$transactions = $collector->getPaginatedJournals();
|
||||||
|
$transactions->setPath(route('categories.no-category'));
|
||||||
|
|
||||||
|
return view('categories.no-category', compact('transactions', 'subTitle', 'moment', 'periods', 'start', 'end'));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Carbon $theDate
|
||||||
|
*
|
||||||
|
* @return Collection
|
||||||
|
*/
|
||||||
|
private function getNoCategoryPeriodOverview(Carbon $theDate): Collection
|
||||||
|
{
|
||||||
|
Log::debug(sprintf('Now in getNoCategoryPeriodOverview(%s)', $theDate->format('Y-m-d')));
|
||||||
|
$range = app('preferences')->get('viewRange', '1M')->data;
|
||||||
|
$first = $this->journalRepos->firstNull();
|
||||||
|
$start = null === $first ? new Carbon : $first->date;
|
||||||
|
$end = $theDate ?? new Carbon;
|
||||||
|
|
||||||
|
Log::debug(sprintf('Start for getNoCategoryPeriodOverview() is %s', $start->format('Y-m-d')));
|
||||||
|
Log::debug(sprintf('End for getNoCategoryPeriodOverview() is %s', $end->format('Y-m-d')));
|
||||||
|
|
||||||
|
// properties for cache
|
||||||
|
$cache = new CacheProperties;
|
||||||
|
$cache->addProperty($start);
|
||||||
|
$cache->addProperty($end);
|
||||||
|
$cache->addProperty('no-category-period-entries');
|
||||||
|
|
||||||
|
if ($cache->has()) {
|
||||||
|
return $cache->get(); // @codeCoverageIgnore
|
||||||
|
}
|
||||||
|
|
||||||
|
$dates = app('navigation')->blockPeriods($start, $end, $range);
|
||||||
|
$entries = new Collection;
|
||||||
|
|
||||||
|
foreach ($dates as $date) {
|
||||||
|
|
||||||
|
// count journals without category in this period:
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
||||||
|
->withOpposingAccount()->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]);
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$count = $collector->getJournals()->count();
|
||||||
|
|
||||||
|
// amount transferred
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
||||||
|
->withOpposingAccount()->setTypes([TransactionType::TRANSFER]);
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$transferred = app('steam')->positive((string)$collector->getJournals()->sum('transaction_amount'));
|
||||||
|
|
||||||
|
// amount spent
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
||||||
|
[TransactionType::WITHDRAWAL]
|
||||||
|
);
|
||||||
|
$spent = $collector->getJournals()->sum('transaction_amount');
|
||||||
|
|
||||||
|
// amount earned
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
||||||
|
[TransactionType::DEPOSIT]
|
||||||
|
);
|
||||||
|
$earned = $collector->getJournals()->sum('transaction_amount');
|
||||||
|
/** @noinspection PhpUndefinedMethodInspection */
|
||||||
|
$dateStr = $date['end']->format('Y-m-d');
|
||||||
|
$dateName = app('navigation')->periodShow($date['end'], $date['period']);
|
||||||
|
$entries->push(
|
||||||
|
[
|
||||||
|
'string' => $dateStr,
|
||||||
|
'name' => $dateName,
|
||||||
|
'count' => $count,
|
||||||
|
'spent' => $spent,
|
||||||
|
'earned' => $earned,
|
||||||
|
'transferred' => $transferred,
|
||||||
|
'start' => clone $date['start'],
|
||||||
|
'end' => clone $date['end'],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
Log::debug('End of loops');
|
||||||
|
$cache->store($entries);
|
||||||
|
|
||||||
|
return $entries;
|
||||||
|
}
|
||||||
|
}
|
217
app/Http/Controllers/Category/ShowController.php
Normal file
217
app/Http/Controllers/Category/ShowController.php
Normal file
@@ -0,0 +1,217 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* ShowController.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 FireflyIII\Http\Controllers\Category;
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
||||||
|
use FireflyIII\Helpers\Filter\InternalTransferFilter;
|
||||||
|
use FireflyIII\Http\Controllers\Controller;
|
||||||
|
use FireflyIII\Models\AccountType;
|
||||||
|
use FireflyIII\Models\Category;
|
||||||
|
use FireflyIII\Models\TransactionType;
|
||||||
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
|
use FireflyIII\Support\CacheProperties;
|
||||||
|
use Illuminate\Http\Request;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Class ShowController
|
||||||
|
*
|
||||||
|
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
|
||||||
|
*/
|
||||||
|
class ShowController extends Controller
|
||||||
|
{
|
||||||
|
|
||||||
|
/** @var AccountRepositoryInterface */
|
||||||
|
private $accountRepos;
|
||||||
|
/** @var JournalRepositoryInterface */
|
||||||
|
private $journalRepos;
|
||||||
|
/** @var CategoryRepositoryInterface */
|
||||||
|
private $repository;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* CategoryController constructor.
|
||||||
|
*/
|
||||||
|
public function __construct()
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
|
||||||
|
$this->middleware(
|
||||||
|
function ($request, $next) {
|
||||||
|
app('view')->share('title', trans('firefly.categories'));
|
||||||
|
app('view')->share('mainTitleIcon', 'fa-bar-chart');
|
||||||
|
$this->journalRepos = app(JournalRepositoryInterface::class);
|
||||||
|
$this->repository = app(CategoryRepositoryInterface::class);
|
||||||
|
$this->accountRepos = app(AccountRepositoryInterface::class);
|
||||||
|
|
||||||
|
return $next($request);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/** @noinspection MoreThanThreeArgumentsInspection */
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param Category $category
|
||||||
|
* @param Carbon|null $start
|
||||||
|
* @param Carbon|null $end
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||||
|
*/
|
||||||
|
public function show(Request $request, Category $category, Carbon $start = null, Carbon $end = null)
|
||||||
|
{
|
||||||
|
/** @var Carbon $start */
|
||||||
|
$start = $start ?? session('start');
|
||||||
|
/** @var Carbon $end */
|
||||||
|
$end = $end ?? session('end');
|
||||||
|
$subTitleIcon = 'fa-bar-chart';
|
||||||
|
$moment = '';
|
||||||
|
$page = (int)$request->get('page');
|
||||||
|
$pageSize = (int)app('preferences')->get('listPageSize', 50)->data;
|
||||||
|
$periods = $this->getPeriodOverview($category, $start);
|
||||||
|
$path = route('categories.show', [$category->id, $start->format('Y-m-d'), $end->format('Y-m-d')]);
|
||||||
|
$subTitle = trans(
|
||||||
|
'firefly.journals_in_period_for_category',
|
||||||
|
['name' => $category->name, 'start' => $start->formatLocalized($this->monthAndDayFormat),
|
||||||
|
'end' => $end->formatLocalized($this->monthAndDayFormat),]
|
||||||
|
);
|
||||||
|
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($start, $end)->setLimit($pageSize)->setPage($page)->withOpposingAccount()
|
||||||
|
->setCategory($category)->withBudgetInformation()->withCategoryInformation();
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$transactions = $collector->getPaginatedJournals();
|
||||||
|
$transactions->setPath($path);
|
||||||
|
|
||||||
|
return view('categories.show', compact('category', 'transactions', 'moment', 'periods', 'subTitle', 'subTitleIcon', 'start', 'end'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Request $request
|
||||||
|
* @param Category $category
|
||||||
|
*
|
||||||
|
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
||||||
|
*/
|
||||||
|
public function showAll(Request $request, Category $category)
|
||||||
|
{
|
||||||
|
// default values:
|
||||||
|
$subTitleIcon = 'fa-bar-chart';
|
||||||
|
$page = (int)$request->get('page');
|
||||||
|
$pageSize = (int)app('preferences')->get('listPageSize', 50)->data;
|
||||||
|
$start = null;
|
||||||
|
$end = null;
|
||||||
|
$periods = new Collection;
|
||||||
|
$moment = 'all';
|
||||||
|
|
||||||
|
$subTitle = trans('firefly.all_journals_for_category', ['name' => $category->name]);
|
||||||
|
$first = $this->repository->firstUseDate($category);
|
||||||
|
/** @var Carbon $start */
|
||||||
|
$start = $first ?? new Carbon;
|
||||||
|
$end = new Carbon;
|
||||||
|
$path = route('categories.show-all', [$category->id]);
|
||||||
|
|
||||||
|
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($start, $end)->setLimit($pageSize)->setPage($page)->withOpposingAccount()
|
||||||
|
->setCategory($category)->withBudgetInformation()->withCategoryInformation();
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$transactions = $collector->getPaginatedJournals();
|
||||||
|
$transactions->setPath($path);
|
||||||
|
|
||||||
|
return view('categories.show', compact('category', 'moment', 'transactions', 'periods', 'subTitle', 'subTitleIcon', 'start', 'end'));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @param Category $category
|
||||||
|
*
|
||||||
|
* @param Carbon $date
|
||||||
|
*
|
||||||
|
* @return Collection
|
||||||
|
*
|
||||||
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
||||||
|
*/
|
||||||
|
private function getPeriodOverview(Category $category, Carbon $date): Collection
|
||||||
|
{
|
||||||
|
$range = app('preferences')->get('viewRange', '1M')->data;
|
||||||
|
$first = $this->journalRepos->firstNull();
|
||||||
|
$start = null === $first ? new Carbon : $first->date;
|
||||||
|
$end = $date ?? new Carbon;
|
||||||
|
$accounts = $this->accountRepos->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET]);
|
||||||
|
|
||||||
|
// properties for entries with their amounts.
|
||||||
|
$cache = new CacheProperties();
|
||||||
|
$cache->addProperty($start);
|
||||||
|
$cache->addProperty($end);
|
||||||
|
$cache->addProperty($range);
|
||||||
|
$cache->addProperty('categories.entries');
|
||||||
|
$cache->addProperty($category->id);
|
||||||
|
|
||||||
|
if ($cache->has()) {
|
||||||
|
return $cache->get(); // @codeCoverageIgnore
|
||||||
|
}
|
||||||
|
/** @var array $dates */
|
||||||
|
$dates = app('navigation')->blockPeriods($start, $end, $range);
|
||||||
|
$entries = new Collection;
|
||||||
|
|
||||||
|
foreach ($dates as $currentDate) {
|
||||||
|
$spent = $this->repository->spentInPeriod(new Collection([$category]), $accounts, $currentDate['start'], $currentDate['end']);
|
||||||
|
$earned = $this->repository->earnedInPeriod(new Collection([$category]), $accounts, $currentDate['start'], $currentDate['end']);
|
||||||
|
/** @noinspection PhpUndefinedMethodInspection */
|
||||||
|
$dateStr = $currentDate['end']->format('Y-m-d');
|
||||||
|
$dateName = app('navigation')->periodShow($currentDate['end'], $currentDate['period']);
|
||||||
|
|
||||||
|
// amount transferred
|
||||||
|
/** @var JournalCollectorInterface $collector */
|
||||||
|
$collector = app(JournalCollectorInterface::class);
|
||||||
|
$collector->setAllAssetAccounts()->setRange($currentDate['start'], $currentDate['end'])->setCategory($category)
|
||||||
|
->withOpposingAccount()->setTypes([TransactionType::TRANSFER]);
|
||||||
|
$collector->removeFilter(InternalTransferFilter::class);
|
||||||
|
$transferred = app('steam')->positive((string)$collector->getJournals()->sum('transaction_amount'));
|
||||||
|
|
||||||
|
$entries->push(
|
||||||
|
[
|
||||||
|
'string' => $dateStr,
|
||||||
|
'name' => $dateName,
|
||||||
|
'spent' => $spent,
|
||||||
|
'earned' => $earned,
|
||||||
|
'sum' => bcadd($earned, $spent),
|
||||||
|
'transferred' => $transferred,
|
||||||
|
'start' => clone $currentDate['start'],
|
||||||
|
'end' => clone $currentDate['end'],
|
||||||
|
]
|
||||||
|
);
|
||||||
|
}
|
||||||
|
$cache->store($entries);
|
||||||
|
|
||||||
|
return $entries;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -22,31 +22,18 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
namespace FireflyIII\Http\Controllers;
|
namespace FireflyIII\Http\Controllers;
|
||||||
|
|
||||||
use Carbon\Carbon;
|
|
||||||
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
|
||||||
use FireflyIII\Helpers\Filter\InternalTransferFilter;
|
|
||||||
use FireflyIII\Http\Requests\CategoryFormRequest;
|
use FireflyIII\Http\Requests\CategoryFormRequest;
|
||||||
use FireflyIII\Models\AccountType;
|
|
||||||
use FireflyIII\Models\Category;
|
use FireflyIII\Models\Category;
|
||||||
use FireflyIII\Models\TransactionType;
|
|
||||||
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
|
||||||
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
|
||||||
use FireflyIII\Support\CacheProperties;
|
|
||||||
use Illuminate\Http\Request;
|
use Illuminate\Http\Request;
|
||||||
use Illuminate\Pagination\LengthAwarePaginator;
|
use Illuminate\Pagination\LengthAwarePaginator;
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Log;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Class CategoryController.
|
* Class CategoryController.
|
||||||
*/
|
*/
|
||||||
class CategoryController extends Controller
|
class CategoryController extends Controller
|
||||||
{
|
{
|
||||||
/** @var AccountRepositoryInterface */
|
|
||||||
private $accountRepos;
|
|
||||||
/** @var JournalRepositoryInterface */
|
|
||||||
private $journalRepos;
|
|
||||||
/** @var CategoryRepositoryInterface */
|
/** @var CategoryRepositoryInterface */
|
||||||
private $repository;
|
private $repository;
|
||||||
|
|
||||||
@@ -61,9 +48,7 @@ class CategoryController extends Controller
|
|||||||
function ($request, $next) {
|
function ($request, $next) {
|
||||||
app('view')->share('title', trans('firefly.categories'));
|
app('view')->share('title', trans('firefly.categories'));
|
||||||
app('view')->share('mainTitleIcon', 'fa-bar-chart');
|
app('view')->share('mainTitleIcon', 'fa-bar-chart');
|
||||||
$this->journalRepos = app(JournalRepositoryInterface::class);
|
|
||||||
$this->repository = app(CategoryRepositoryInterface::class);
|
$this->repository = app(CategoryRepositoryInterface::class);
|
||||||
$this->accountRepos = app(AccountRepositoryInterface::class);
|
|
||||||
|
|
||||||
return $next($request);
|
return $next($request);
|
||||||
}
|
}
|
||||||
@@ -163,139 +148,6 @@ class CategoryController extends Controller
|
|||||||
return view('categories.index', compact('categories'));
|
return view('categories.index', compact('categories'));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Request $request
|
|
||||||
* @param string|null $moment
|
|
||||||
*
|
|
||||||
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
||||||
*/
|
|
||||||
public function noCategory(Request $request, string $moment = null)
|
|
||||||
{
|
|
||||||
// default values:
|
|
||||||
$moment = $moment ?? '';
|
|
||||||
$range = app('preferences')->get('viewRange', '1M')->data;
|
|
||||||
$start = null;
|
|
||||||
$end = null;
|
|
||||||
$periods = new Collection;
|
|
||||||
$page = (int)$request->get('page');
|
|
||||||
$pageSize = (int)app('preferences')->get('listPageSize', 50)->data;
|
|
||||||
Log::debug('Start of noCategory()');
|
|
||||||
// prep for "all" view.
|
|
||||||
if ('all' === $moment) {
|
|
||||||
$subTitle = trans('firefly.all_journals_without_category');
|
|
||||||
$first = $this->journalRepos->firstNull();
|
|
||||||
$start = null === $first ? new Carbon : $first->date;
|
|
||||||
$end = new Carbon;
|
|
||||||
Log::debug('Moment is all()');
|
|
||||||
}
|
|
||||||
|
|
||||||
// prep for "specific date" view.
|
|
||||||
if ('all' !== $moment && \strlen($moment) > 0) {
|
|
||||||
/** @var Carbon $start */
|
|
||||||
$start = app('navigation')->startOfPeriod(new Carbon($moment), $range);
|
|
||||||
/** @var Carbon $end */
|
|
||||||
$end = app('navigation')->endOfPeriod($start, $range);
|
|
||||||
$subTitle = trans(
|
|
||||||
'firefly.without_category_between',
|
|
||||||
['start' => $start->formatLocalized($this->monthAndDayFormat), 'end' => $end->formatLocalized($this->monthAndDayFormat)]
|
|
||||||
);
|
|
||||||
$periods = $this->getNoCategoryPeriodOverview($start);
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
// prep for current period
|
|
||||||
if ('' === $moment) {
|
|
||||||
$start = clone session('start', app('navigation')->startOfPeriod(new Carbon, $range));
|
|
||||||
$end = clone session('end', app('navigation')->endOfPeriod(new Carbon, $range));
|
|
||||||
$periods = $this->getNoCategoryPeriodOverview($start);
|
|
||||||
$subTitle = trans(
|
|
||||||
'firefly.without_category_between',
|
|
||||||
['start' => $start->formatLocalized($this->monthAndDayFormat), 'end' => $end->formatLocalized($this->monthAndDayFormat)]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Log::debug(sprintf('Start for noCategory() is %s', $start->format('Y-m-d')));
|
|
||||||
Log::debug(sprintf('End for noCategory() is %s', $end->format('Y-m-d')));
|
|
||||||
|
|
||||||
/** @var JournalCollectorInterface $collector */
|
|
||||||
$collector = app(JournalCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($start, $end)->setLimit($pageSize)->setPage($page)->withoutCategory()->withOpposingAccount()
|
|
||||||
->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]);
|
|
||||||
$collector->removeFilter(InternalTransferFilter::class);
|
|
||||||
$transactions = $collector->getPaginatedJournals();
|
|
||||||
$transactions->setPath(route('categories.no-category'));
|
|
||||||
|
|
||||||
return view('categories.no-category', compact('transactions', 'subTitle', 'moment', 'periods', 'start', 'end'));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Request $request
|
|
||||||
* @param Category $category
|
|
||||||
* @param string|null $moment
|
|
||||||
*
|
|
||||||
* @return \Illuminate\Contracts\View\Factory|\Illuminate\View\View
|
|
||||||
*/
|
|
||||||
public function show(Request $request, Category $category, string $moment = null)
|
|
||||||
{
|
|
||||||
// default values:
|
|
||||||
$moment = $moment ?? '';
|
|
||||||
$subTitle = $category->name;
|
|
||||||
$subTitleIcon = 'fa-bar-chart';
|
|
||||||
$page = (int)$request->get('page');
|
|
||||||
$pageSize = (int)app('preferences')->get('listPageSize', 50)->data;
|
|
||||||
$range = app('preferences')->get('viewRange', '1M')->data;
|
|
||||||
$start = null;
|
|
||||||
$end = null;
|
|
||||||
$periods = new Collection;
|
|
||||||
$path = route('categories.show', [$category->id]);
|
|
||||||
|
|
||||||
// prep for "all" view.
|
|
||||||
if ('all' === $moment) {
|
|
||||||
$subTitle = trans('firefly.all_journals_for_category', ['name' => $category->name]);
|
|
||||||
$first = $this->repository->firstUseDate($category);
|
|
||||||
/** @var Carbon $start */
|
|
||||||
$start = $first ?? new Carbon;
|
|
||||||
$end = new Carbon;
|
|
||||||
$path = route('categories.show', [$category->id, 'all']);
|
|
||||||
}
|
|
||||||
|
|
||||||
// prep for "specific date" view.
|
|
||||||
if ('all' !== $moment && \strlen($moment) > 0) {
|
|
||||||
$start = app('navigation')->startOfPeriod(new Carbon($moment), $range);
|
|
||||||
/** @var Carbon $end */
|
|
||||||
$end = app('navigation')->endOfPeriod($start, $range);
|
|
||||||
$subTitle = trans(
|
|
||||||
'firefly.journals_in_period_for_category',
|
|
||||||
['name' => $category->name,
|
|
||||||
'start' => $start->formatLocalized($this->monthAndDayFormat), 'end' => $end->formatLocalized($this->monthAndDayFormat),]
|
|
||||||
);
|
|
||||||
$periods = $this->getPeriodOverview($category, $start);
|
|
||||||
$path = route('categories.show', [$category->id, $moment]);
|
|
||||||
}
|
|
||||||
|
|
||||||
// prep for current period
|
|
||||||
if ('' === $moment) {
|
|
||||||
/** @var Carbon $start */
|
|
||||||
$start = clone session('start', app('navigation')->startOfPeriod(new Carbon, $range));
|
|
||||||
/** @var Carbon $end */
|
|
||||||
$end = clone session('end', app('navigation')->endOfPeriod(new Carbon, $range));
|
|
||||||
$periods = $this->getPeriodOverview($category, $start);
|
|
||||||
$subTitle = trans(
|
|
||||||
'firefly.journals_in_period_for_category',
|
|
||||||
['name' => $category->name, 'start' => $start->formatLocalized($this->monthAndDayFormat),
|
|
||||||
'end' => $end->formatLocalized($this->monthAndDayFormat),]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/** @var JournalCollectorInterface $collector */
|
|
||||||
$collector = app(JournalCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($start, $end)->setLimit($pageSize)->setPage($page)->withOpposingAccount()
|
|
||||||
->setCategory($category)->withBudgetInformation()->withCategoryInformation();
|
|
||||||
$collector->removeFilter(InternalTransferFilter::class);
|
|
||||||
$transactions = $collector->getPaginatedJournals();
|
|
||||||
$transactions->setPath($path);
|
|
||||||
|
|
||||||
return view('categories.show', compact('category', 'moment', 'transactions', 'periods', 'subTitle', 'subTitleIcon', 'start', 'end'));
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param CategoryFormRequest $request
|
* @param CategoryFormRequest $request
|
||||||
@@ -353,149 +205,4 @@ class CategoryController extends Controller
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Carbon $theDate
|
|
||||||
*
|
|
||||||
* @return Collection
|
|
||||||
*/
|
|
||||||
private function getNoCategoryPeriodOverview(Carbon $theDate): Collection
|
|
||||||
{
|
|
||||||
Log::debug(sprintf('Now in getNoCategoryPeriodOverview(%s)', $theDate->format('Y-m-d')));
|
|
||||||
$range = app('preferences')->get('viewRange', '1M')->data;
|
|
||||||
$first = $this->journalRepos->firstNull();
|
|
||||||
$start = null === $first ? new Carbon : $first->date;
|
|
||||||
$end = $theDate ?? new Carbon;
|
|
||||||
|
|
||||||
Log::debug(sprintf('Start for getNoCategoryPeriodOverview() is %s', $start->format('Y-m-d')));
|
|
||||||
Log::debug(sprintf('End for getNoCategoryPeriodOverview() is %s', $end->format('Y-m-d')));
|
|
||||||
|
|
||||||
// properties for cache
|
|
||||||
$cache = new CacheProperties;
|
|
||||||
$cache->addProperty($start);
|
|
||||||
$cache->addProperty($end);
|
|
||||||
$cache->addProperty('no-category-period-entries');
|
|
||||||
|
|
||||||
if ($cache->has()) {
|
|
||||||
return $cache->get(); // @codeCoverageIgnore
|
|
||||||
}
|
|
||||||
|
|
||||||
$dates = app('navigation')->blockPeriods($start, $end, $range);
|
|
||||||
$entries = new Collection;
|
|
||||||
|
|
||||||
foreach ($dates as $date) {
|
|
||||||
|
|
||||||
// count journals without category in this period:
|
|
||||||
/** @var JournalCollectorInterface $collector */
|
|
||||||
$collector = app(JournalCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
|
||||||
->withOpposingAccount()->setTypes([TransactionType::WITHDRAWAL, TransactionType::DEPOSIT, TransactionType::TRANSFER]);
|
|
||||||
$collector->removeFilter(InternalTransferFilter::class);
|
|
||||||
$count = $collector->getJournals()->count();
|
|
||||||
|
|
||||||
// amount transferred
|
|
||||||
/** @var JournalCollectorInterface $collector */
|
|
||||||
$collector = app(JournalCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()
|
|
||||||
->withOpposingAccount()->setTypes([TransactionType::TRANSFER]);
|
|
||||||
$collector->removeFilter(InternalTransferFilter::class);
|
|
||||||
$transferred = app('steam')->positive((string)$collector->getJournals()->sum('transaction_amount'));
|
|
||||||
|
|
||||||
// amount spent
|
|
||||||
/** @var JournalCollectorInterface $collector */
|
|
||||||
$collector = app(JournalCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
|
||||||
[TransactionType::WITHDRAWAL]
|
|
||||||
);
|
|
||||||
$spent = $collector->getJournals()->sum('transaction_amount');
|
|
||||||
|
|
||||||
// amount earned
|
|
||||||
/** @var JournalCollectorInterface $collector */
|
|
||||||
$collector = app(JournalCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($date['start'], $date['end'])->withoutCategory()->withOpposingAccount()->setTypes(
|
|
||||||
[TransactionType::DEPOSIT]
|
|
||||||
);
|
|
||||||
$earned = $collector->getJournals()->sum('transaction_amount');
|
|
||||||
/** @noinspection PhpUndefinedMethodInspection */
|
|
||||||
$dateStr = $date['end']->format('Y-m-d');
|
|
||||||
$dateName = app('navigation')->periodShow($date['end'], $date['period']);
|
|
||||||
$entries->push(
|
|
||||||
[
|
|
||||||
'string' => $dateStr,
|
|
||||||
'name' => $dateName,
|
|
||||||
'count' => $count,
|
|
||||||
'spent' => $spent,
|
|
||||||
'earned' => $earned,
|
|
||||||
'transferred' => $transferred,
|
|
||||||
'date' => clone $date['end'],
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
Log::debug('End of loops');
|
|
||||||
$cache->store($entries);
|
|
||||||
|
|
||||||
return $entries;
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @param Category $category
|
|
||||||
*
|
|
||||||
* @param Carbon $date
|
|
||||||
*
|
|
||||||
* @return Collection
|
|
||||||
*/
|
|
||||||
private function getPeriodOverview(Category $category, Carbon $date): Collection
|
|
||||||
{
|
|
||||||
$range = app('preferences')->get('viewRange', '1M')->data;
|
|
||||||
$first = $this->journalRepos->firstNull();
|
|
||||||
$start = null === $first ? new Carbon : $first->date;
|
|
||||||
$end = $date ?? new Carbon;
|
|
||||||
$accounts = $this->accountRepos->getAccountsByType([AccountType::DEFAULT, AccountType::ASSET]);
|
|
||||||
|
|
||||||
// properties for entries with their amounts.
|
|
||||||
$cache = new CacheProperties();
|
|
||||||
$cache->addProperty($start);
|
|
||||||
$cache->addProperty($end);
|
|
||||||
$cache->addProperty($range);
|
|
||||||
$cache->addProperty('categories.entries');
|
|
||||||
$cache->addProperty($category->id);
|
|
||||||
|
|
||||||
if ($cache->has()) {
|
|
||||||
return $cache->get(); // @codeCoverageIgnore
|
|
||||||
}
|
|
||||||
/** @var array $dates */
|
|
||||||
$dates = app('navigation')->blockPeriods($start, $end, $range);
|
|
||||||
$entries = new Collection;
|
|
||||||
|
|
||||||
foreach ($dates as $currentDate) {
|
|
||||||
$spent = $this->repository->spentInPeriod(new Collection([$category]), $accounts, $currentDate['start'], $currentDate['end']);
|
|
||||||
$earned = $this->repository->earnedInPeriod(new Collection([$category]), $accounts, $currentDate['start'], $currentDate['end']);
|
|
||||||
/** @noinspection PhpUndefinedMethodInspection */
|
|
||||||
$dateStr = $currentDate['end']->format('Y-m-d');
|
|
||||||
$dateName = app('navigation')->periodShow($currentDate['end'], $currentDate['period']);
|
|
||||||
|
|
||||||
// amount transferred
|
|
||||||
/** @var JournalCollectorInterface $collector */
|
|
||||||
$collector = app(JournalCollectorInterface::class);
|
|
||||||
$collector->setAllAssetAccounts()->setRange($currentDate['start'], $currentDate['end'])->setCategory($category)
|
|
||||||
->withOpposingAccount()->setTypes([TransactionType::TRANSFER]);
|
|
||||||
$collector->removeFilter(InternalTransferFilter::class);
|
|
||||||
$transferred = app('steam')->positive((string)$collector->getJournals()->sum('transaction_amount'));
|
|
||||||
|
|
||||||
$entries->push(
|
|
||||||
[
|
|
||||||
'string' => $dateStr,
|
|
||||||
'name' => $dateName,
|
|
||||||
'spent' => $spent,
|
|
||||||
'earned' => $earned,
|
|
||||||
'sum' => bcadd($earned, $spent),
|
|
||||||
'transferred' => $transferred,
|
|
||||||
'date' => clone $currentDate['end'],
|
|
||||||
]
|
|
||||||
);
|
|
||||||
}
|
|
||||||
$cache->store($entries);
|
|
||||||
|
|
||||||
return $entries;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
@@ -10,7 +10,7 @@
|
|||||||
{% if periods.count > 0 %}
|
{% if periods.count > 0 %}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-offset-10 col-lg-2 col-md-offset-9 col-md-3 col-sm-12 col-xs-12">
|
<div class="col-lg-offset-10 col-lg-2 col-md-offset-9 col-md-3 col-sm-12 col-xs-12">
|
||||||
<p class="small text-center"><a href="{{ route('categories.no-category',['all']) }}">{{ 'showEverything'|_ }}</a></p>
|
<p class="small text-center"><a href="{{ route('categories.no-category-all') }}">{{ 'showEverything'|_ }}</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -26,7 +26,7 @@
|
|||||||
{% if periods.count > 0 %}
|
{% if periods.count > 0 %}
|
||||||
<p>
|
<p>
|
||||||
<i class="fa fa-calendar"></i>
|
<i class="fa fa-calendar"></i>
|
||||||
<a href="{{ route('categories.no-category', ['all']) }}">{{ 'show_all_no_filter'|_ }}</a>
|
<a href="{{ route('categories.no-category-all') }}">{{ 'show_all_no_filter'|_ }}</a>
|
||||||
</p>
|
</p>
|
||||||
{% else %}
|
{% else %}
|
||||||
<p>
|
<p>
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
{% if period.count > 0 %}
|
{% if period.count > 0 %}
|
||||||
<div class="box {% if period.date == end %}box-solid box-primary{% endif %}">
|
<div class="box {% if period.date == end %}box-solid box-primary{% endif %}">
|
||||||
<div class="box-header with-border">
|
<div class="box-header with-border">
|
||||||
<h3 class="box-title"><a href="{{ route('categories.no-category',[period.string]) }}">{{ period.name }}</a>
|
<h3 class="box-title"><a href="{{ route('categories.no-category', [period.start.format('Y-m-d'), period.end.format('Y-m-d')]) }}">{{ period.name }}</a>
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-body no-padding">
|
<div class="box-body no-padding">
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{% extends "./layout/default" %}
|
{% extends "./layout/default" %}
|
||||||
|
|
||||||
{% block breadcrumbs %}
|
{% block breadcrumbs %}
|
||||||
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, category, moment, start, end) }}
|
{{ Breadcrumbs.render(Route.getCurrentRoute.getName, category, '', start, end) }}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
@@ -52,7 +52,7 @@
|
|||||||
{% if periods.count > 0 %}
|
{% if periods.count > 0 %}
|
||||||
<div class="row">
|
<div class="row">
|
||||||
<div class="col-lg-offset-10 col-lg-2 col-md-offset-10 col-md-2 col-sm-12 col-xs-12">
|
<div class="col-lg-offset-10 col-lg-2 col-md-offset-10 col-md-2 col-sm-12 col-xs-12">
|
||||||
<p class="small text-center"><a href="{{ route('categories.show',[category.id,'all']) }}">{{ 'showEverything'|_ }}</a></p>
|
<p class="small text-center"><a href="{{ route('categories.show-all',[category.id]) }}">{{ 'showEverything'|_ }}</a></p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
@@ -69,7 +69,7 @@
|
|||||||
{% if periods.count > 0 %}
|
{% if periods.count > 0 %}
|
||||||
<p>
|
<p>
|
||||||
<i class="fa fa-calendar"></i>
|
<i class="fa fa-calendar"></i>
|
||||||
<a href="{{ route('categories.show', [category.id,'all']) }}">
|
<a href="{{ route('categories.show-all', [category.id]) }}">
|
||||||
{{ 'show_all_no_filter'|_ }}
|
{{ 'show_all_no_filter'|_ }}
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
@@ -90,7 +90,7 @@
|
|||||||
{% if period.spent != 0 or period.earned != 0 or period.sum != 0 %}
|
{% if period.spent != 0 or period.earned != 0 or period.sum != 0 %}
|
||||||
<div class="box {% if period.date == end %}box-solid box-primary{% endif %}">
|
<div class="box {% if period.date == end %}box-solid box-primary{% endif %}">
|
||||||
<div class="box-header with-border">
|
<div class="box-header with-border">
|
||||||
<h3 class="box-title"><a href="{{ route('categories.show',[category.id,period.string]) }}">{{ period.name }}</a>
|
<h3 class="box-title"><a href="{{ route('categories.show',[category.id, period.start.format('Y-m-d'),period.end.format('Y-m-d')]) }}">{{ period.name }}</a>
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="box-body no-padding">
|
<div class="box-body no-padding">
|
||||||
|
@@ -441,13 +441,6 @@ try {
|
|||||||
function (BreadCrumbsGenerator $breadcrumbs, Category $category, string $moment, Carbon $start, Carbon $end) {
|
function (BreadCrumbsGenerator $breadcrumbs, Category $category, string $moment, Carbon $start, Carbon $end) {
|
||||||
$breadcrumbs->parent('categories.index');
|
$breadcrumbs->parent('categories.index');
|
||||||
$breadcrumbs->push($category->name, route('categories.show', [$category->id]));
|
$breadcrumbs->push($category->name, route('categories.show', [$category->id]));
|
||||||
|
|
||||||
// push when is all:
|
|
||||||
if ('all' === $moment) {
|
|
||||||
$breadcrumbs->push(trans('firefly.everything'), route('categories.show', [$category->id, 'all']));
|
|
||||||
}
|
|
||||||
// when is specific period or when empty:
|
|
||||||
if ('all' !== $moment && '(nothing)' !== $moment) {
|
|
||||||
$title = trans(
|
$title = trans(
|
||||||
'firefly.between_dates_breadcrumb',
|
'firefly.between_dates_breadcrumb',
|
||||||
['start' => $start->formatLocalized((string)trans('config.month_and_day')),
|
['start' => $start->formatLocalized((string)trans('config.month_and_day')),
|
||||||
@@ -455,6 +448,14 @@ try {
|
|||||||
);
|
);
|
||||||
$breadcrumbs->push($title, route('categories.show', [$category->id, $moment]));
|
$breadcrumbs->push($title, route('categories.show', [$category->id, $moment]));
|
||||||
}
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
Breadcrumbs::register(
|
||||||
|
'categories.show-all',
|
||||||
|
function (BreadCrumbsGenerator $breadcrumbs, Category $category, string $moment, Carbon $start, Carbon $end) {
|
||||||
|
$breadcrumbs->parent('categories.index');
|
||||||
|
$breadcrumbs->push($category->name, route('categories.show', [$category->id]));
|
||||||
|
$breadcrumbs->push(trans('firefly.everything'), route('categories.show', [$category->id, 'all']));
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -463,13 +464,6 @@ try {
|
|||||||
function (BreadCrumbsGenerator $breadcrumbs, string $moment, Carbon $start, Carbon $end) {
|
function (BreadCrumbsGenerator $breadcrumbs, string $moment, Carbon $start, Carbon $end) {
|
||||||
$breadcrumbs->parent('categories.index');
|
$breadcrumbs->parent('categories.index');
|
||||||
$breadcrumbs->push(trans('firefly.journals_without_category'), route('categories.no-category'));
|
$breadcrumbs->push(trans('firefly.journals_without_category'), route('categories.no-category'));
|
||||||
|
|
||||||
// push when is all:
|
|
||||||
if ('all' === $moment) {
|
|
||||||
$breadcrumbs->push(trans('firefly.everything'), route('categories.no-category', ['all']));
|
|
||||||
}
|
|
||||||
// when is specific period or when empty:
|
|
||||||
if ('all' !== $moment && '(nothing)' !== $moment) {
|
|
||||||
$title = trans(
|
$title = trans(
|
||||||
'firefly.between_dates_breadcrumb',
|
'firefly.between_dates_breadcrumb',
|
||||||
['start' => $start->formatLocalized((string)trans('config.month_and_day')),
|
['start' => $start->formatLocalized((string)trans('config.month_and_day')),
|
||||||
@@ -477,6 +471,15 @@ try {
|
|||||||
);
|
);
|
||||||
$breadcrumbs->push($title, route('categories.no-category', [$moment]));
|
$breadcrumbs->push($title, route('categories.no-category', [$moment]));
|
||||||
}
|
}
|
||||||
|
);
|
||||||
|
|
||||||
|
|
||||||
|
Breadcrumbs::register(
|
||||||
|
'categories.no-category-all',
|
||||||
|
function (BreadCrumbsGenerator $breadcrumbs, string $moment, Carbon $start, Carbon $end) {
|
||||||
|
$breadcrumbs->parent('categories.index');
|
||||||
|
$breadcrumbs->push(trans('firefly.journals_without_category'), route('categories.no-category'));
|
||||||
|
$breadcrumbs->push(trans('firefly.everything'), route('categories.no-category-all'));
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
@@ -225,17 +225,30 @@ Route::group(
|
|||||||
*/
|
*/
|
||||||
Route::group(
|
Route::group(
|
||||||
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'categories', 'as' => 'categories.'], function () {
|
['middleware' => 'user-full-auth', 'namespace' => 'FireflyIII\Http\Controllers', 'prefix' => 'categories', 'as' => 'categories.'], function () {
|
||||||
|
|
||||||
|
// index:
|
||||||
Route::get('', ['uses' => 'CategoryController@index', 'as' => 'index']);
|
Route::get('', ['uses' => 'CategoryController@index', 'as' => 'index']);
|
||||||
|
|
||||||
|
// create
|
||||||
Route::get('create', ['uses' => 'CategoryController@create', 'as' => 'create']);
|
Route::get('create', ['uses' => 'CategoryController@create', 'as' => 'create']);
|
||||||
Route::get('edit/{category}', ['uses' => 'CategoryController@edit', 'as' => 'edit']);
|
|
||||||
Route::get('delete/{category}', ['uses' => 'CategoryController@delete', 'as' => 'delete']);
|
|
||||||
|
|
||||||
Route::get('show/{category}/{moment?}', ['uses' => 'CategoryController@show', 'as' => 'show']);
|
|
||||||
Route::get('list/no-category/{moment?}', ['uses' => 'CategoryController@noCategory', 'as' => 'no-category']);
|
|
||||||
|
|
||||||
Route::post('store', ['uses' => 'CategoryController@store', 'as' => 'store']);
|
Route::post('store', ['uses' => 'CategoryController@store', 'as' => 'store']);
|
||||||
|
|
||||||
|
// edit
|
||||||
|
Route::get('edit/{category}', ['uses' => 'CategoryController@edit', 'as' => 'edit']);
|
||||||
Route::post('update/{category}', ['uses' => 'CategoryController@update', 'as' => 'update']);
|
Route::post('update/{category}', ['uses' => 'CategoryController@update', 'as' => 'update']);
|
||||||
|
|
||||||
|
// delete
|
||||||
|
Route::get('delete/{category}', ['uses' => 'CategoryController@delete', 'as' => 'delete']);
|
||||||
Route::post('destroy/{category}', ['uses' => 'CategoryController@destroy', 'as' => 'destroy']);
|
Route::post('destroy/{category}', ['uses' => 'CategoryController@destroy', 'as' => 'destroy']);
|
||||||
|
|
||||||
|
// show category:
|
||||||
|
Route::get('show/{category}/all', ['uses' => 'Category\ShowController@showAll', 'as' => 'show-all']);
|
||||||
|
Route::get('show/{category}/{start_date?}/{end_date?}', ['uses' => 'Category\ShowController@show', 'as' => 'show']);
|
||||||
|
|
||||||
|
// no category controller:
|
||||||
|
Route::get('list/no-category/all', ['uses' => 'Category\NoCategoryController@showAll', 'as' => 'no-category-all']);
|
||||||
|
Route::get('list/no-category/{start_date?}/{end_date?}', ['uses' => 'Category\NoCategoryController@show', 'as' => 'no-category']);
|
||||||
|
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
175
tests/Feature/Controllers/Category/NoCategoryControllerTest.php
Normal file
175
tests/Feature/Controllers/Category/NoCategoryControllerTest.php
Normal file
@@ -0,0 +1,175 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* NoCategoryControllerTest.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\Feature\Controllers\Category;
|
||||||
|
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
||||||
|
use FireflyIII\Helpers\Filter\InternalTransferFilter;
|
||||||
|
use FireflyIII\Models\TransactionJournal;
|
||||||
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
|
use Illuminate\Pagination\LengthAwarePaginator;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
use Log;
|
||||||
|
use Navigation;
|
||||||
|
use Tests\TestCase;
|
||||||
|
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Class NoCategoryControllerTest
|
||||||
|
*/
|
||||||
|
class NoCategoryControllerTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
Log::debug(sprintf('Now in %s.', \get_class($this)));
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\Category\NoCategoryController
|
||||||
|
* @dataProvider dateRangeProvider
|
||||||
|
*
|
||||||
|
* @param string $range
|
||||||
|
*/
|
||||||
|
public function testNoCategory(string $range): void
|
||||||
|
{
|
||||||
|
Log::debug(sprintf('Test noCategory(%s)', $range));
|
||||||
|
// mock stuff
|
||||||
|
$collector = $this->mock(JournalCollectorInterface::class);
|
||||||
|
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
||||||
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||||
|
|
||||||
|
|
||||||
|
// get the journal with the most recent date for firstNull:
|
||||||
|
$journal = $this->user()->transactionJournals()->orderBy('date', 'DESC')->first();
|
||||||
|
$journalRepos->shouldReceive('firstNull')->twice()->andReturn($journal);
|
||||||
|
|
||||||
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setTypes')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setRange')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('withOpposingAccount')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('withoutCategory')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('getJournals')->andReturn(new Collection);
|
||||||
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10));
|
||||||
|
|
||||||
|
$collector->shouldReceive('setPage')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setLimit')->andReturnSelf();
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$this->changeDateRange($this->user(), $range);
|
||||||
|
$response = $this->get(route('categories.no-category'));
|
||||||
|
$response->assertStatus(200);
|
||||||
|
// has bread crumb
|
||||||
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\Category\NoCategoryController
|
||||||
|
* @dataProvider dateRangeProvider
|
||||||
|
*
|
||||||
|
* @param string $range
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function testNoCategoryAll(string $range): void
|
||||||
|
{
|
||||||
|
Log::debug('Test nocategoryAll()');
|
||||||
|
// mock stuff
|
||||||
|
$collector = $this->mock(JournalCollectorInterface::class);
|
||||||
|
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
||||||
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||||
|
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
||||||
|
|
||||||
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setTypes')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setRange')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('withOpposingAccount')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('withoutCategory')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('getJournals')->andReturn(new Collection);
|
||||||
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10));
|
||||||
|
|
||||||
|
$collector->shouldReceive('setPage')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setLimit')->andReturnSelf();
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$this->changeDateRange($this->user(), $range);
|
||||||
|
$response = $this->get(route('categories.no-category', ['all']));
|
||||||
|
$response->assertStatus(200);
|
||||||
|
// has bread crumb
|
||||||
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\Category\NoCategoryController
|
||||||
|
* @dataProvider dateRangeProvider
|
||||||
|
*
|
||||||
|
* @param string $range
|
||||||
|
*/
|
||||||
|
public function testNoCategoryDate(string $range): void
|
||||||
|
{
|
||||||
|
Log::debug('Test nocategorydate()');
|
||||||
|
// mock stuff
|
||||||
|
$collector = $this->mock(JournalCollectorInterface::class);
|
||||||
|
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
||||||
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||||
|
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
||||||
|
|
||||||
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setTypes')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setRange')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('withOpposingAccount')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('withoutCategory')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('getJournals')->andReturn(new Collection);
|
||||||
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10));
|
||||||
|
|
||||||
|
$collector->shouldReceive('setPage')->andReturnSelf();
|
||||||
|
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf();
|
||||||
|
$collector->shouldReceive('setLimit')->andReturnSelf();
|
||||||
|
|
||||||
|
Navigation::shouldReceive('updateStartDate')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('updateEndDate')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('startOfPeriod')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('endOfPeriod')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('periodShow')->andReturn('Some date');
|
||||||
|
Navigation::shouldReceive('blockPeriods')->andReturn([['period' => '1M', 'start' => new Carbon, 'end' => new Carbon]])->once();
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$this->changeDateRange($this->user(), $range);
|
||||||
|
$response = $this->get(route('categories.no-category', ['2016-01-01']));
|
||||||
|
$response->assertStatus(200);
|
||||||
|
// has bread crumb
|
||||||
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
|
}
|
||||||
|
}
|
236
tests/Feature/Controllers/Category/ShowControllerTest.php
Normal file
236
tests/Feature/Controllers/Category/ShowControllerTest.php
Normal file
@@ -0,0 +1,236 @@
|
|||||||
|
<?php
|
||||||
|
/**
|
||||||
|
* ShowControllerTest.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\Feature\Controllers\Category;
|
||||||
|
|
||||||
|
|
||||||
|
use Tests\TestCase;
|
||||||
|
use Log;
|
||||||
|
|
||||||
|
use Carbon\Carbon;
|
||||||
|
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
||||||
|
use FireflyIII\Helpers\Filter\InternalTransferFilter;
|
||||||
|
use FireflyIII\Models\Category;
|
||||||
|
use FireflyIII\Models\Transaction;
|
||||||
|
use FireflyIII\Models\TransactionJournal;
|
||||||
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
|
use Illuminate\Pagination\LengthAwarePaginator;
|
||||||
|
use Illuminate\Support\Collection;
|
||||||
|
use Navigation;
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
* Class ShowControllerTest
|
||||||
|
*/
|
||||||
|
class ShowControllerTest extends TestCase
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
public function setUp(): void
|
||||||
|
{
|
||||||
|
parent::setUp();
|
||||||
|
Log::debug(sprintf('Now in %s.', \get_class($this)));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\Category\ShowController
|
||||||
|
*
|
||||||
|
* @dataProvider dateRangeProvider
|
||||||
|
*
|
||||||
|
* @param string $range
|
||||||
|
*/
|
||||||
|
public function testShow(string $range): void
|
||||||
|
{
|
||||||
|
Log::debug('Test show()');
|
||||||
|
$transaction = factory(Transaction::class)->make();
|
||||||
|
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
||||||
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||||
|
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
||||||
|
|
||||||
|
// mock stuff
|
||||||
|
$categoryRepos->shouldReceive('spentInPeriod')->andReturn('0');
|
||||||
|
$categoryRepos->shouldReceive('earnedInPeriod')->andReturn('0');
|
||||||
|
|
||||||
|
$accountRepos->shouldReceive('getAccountsByType')->once()->andReturn(new Collection);
|
||||||
|
|
||||||
|
$collector = $this->mock(JournalCollectorInterface::class);
|
||||||
|
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->atLeast(2);
|
||||||
|
$collector->shouldReceive('setRange')->andReturnSelf()->atLeast(2);
|
||||||
|
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->atLeast(2);
|
||||||
|
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->atLeast(2);
|
||||||
|
$collector->shouldReceive('setCategory')->andReturnSelf()->atLeast(2);
|
||||||
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([$transaction], 0, 10))->once();
|
||||||
|
|
||||||
|
$collector->shouldReceive('setTypes')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('getJournals')->andReturn(new Collection)->atLeast(1);
|
||||||
|
|
||||||
|
Navigation::shouldReceive('updateStartDate')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('updateEndDate')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('startOfPeriod')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('endOfPeriod')->andReturn(new Carbon);
|
||||||
|
Navigation::shouldReceive('periodShow')->andReturn('Some date');
|
||||||
|
Navigation::shouldReceive('blockPeriods')->andReturn([['period' => '1M', 'start' => new Carbon, 'end' => new Carbon]])->once();
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$this->changeDateRange($this->user(), $range);
|
||||||
|
$response = $this->get(route('categories.show', [1]));
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\Category\ShowController
|
||||||
|
* @dataProvider dateRangeProvider
|
||||||
|
*
|
||||||
|
* @param string $range
|
||||||
|
*/
|
||||||
|
public function testShowAll(string $range): void
|
||||||
|
{
|
||||||
|
Log::debug('Test showAll()');
|
||||||
|
// mock stuff
|
||||||
|
$transaction = factory(Transaction::class)->make();
|
||||||
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||||
|
$repository = $this->mock(CategoryRepositoryInterface::class);
|
||||||
|
$collector = $this->mock(JournalCollectorInterface::class);
|
||||||
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
|
||||||
|
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setRange')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->once();
|
||||||
|
|
||||||
|
$collector->shouldReceive('setCategory')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([$transaction], 0, 10))->once();
|
||||||
|
|
||||||
|
$journalRepos->shouldReceive('firstNull')->once()->andReturn(TransactionJournal::first());
|
||||||
|
$repository->shouldReceive('firstUseDate')->andReturn(new Carbon);
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$this->changeDateRange($this->user(), $range);
|
||||||
|
$response = $this->get(route('categories.show', [1, 'all']));
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\Category\ShowController
|
||||||
|
* @dataProvider dateRangeProvider
|
||||||
|
*
|
||||||
|
* @param string $range
|
||||||
|
*/
|
||||||
|
public function testShowByDate(string $range): void
|
||||||
|
{
|
||||||
|
Log::debug('Test showbydate()');
|
||||||
|
// mock stuff
|
||||||
|
$transaction = factory(Transaction::class)->make();
|
||||||
|
$repository = $this->mock(CategoryRepositoryInterface::class);
|
||||||
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
$collector = $this->mock(JournalCollectorInterface::class);
|
||||||
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||||
|
$month = new Carbon();
|
||||||
|
$month->startOfMonth();
|
||||||
|
$journal = TransactionJournal::where('date', '>=', $month->format('Y-m-d') . ' 00:00:00')->first();
|
||||||
|
$journalRepos->shouldReceive('firstNull')->twice()->andReturn($journal);
|
||||||
|
|
||||||
|
$accountRepos->shouldReceive('getAccountsByType')->andReturn(new Collection);
|
||||||
|
|
||||||
|
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('setRange')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('setTypes')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('setCategory')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('getJournals')->andReturn(new Collection)->atLeast(1);
|
||||||
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([$transaction], 0, 10))->once();
|
||||||
|
|
||||||
|
$repository->shouldReceive('spentInPeriod')->andReturn('-1');
|
||||||
|
$repository->shouldReceive('earnedInPeriod')->andReturn('1');
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$this->changeDateRange($this->user(), $range);
|
||||||
|
$today = new Carbon();
|
||||||
|
$today->subDay();
|
||||||
|
$response = $this->get(route('categories.show', [1, $today->format('Y-m-d')]));
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @covers \FireflyIII\Http\Controllers\Category\ShowController
|
||||||
|
*
|
||||||
|
* @dataProvider dateRangeProvider
|
||||||
|
*
|
||||||
|
* @param string $range
|
||||||
|
*/
|
||||||
|
public function testShowEmpty(string $range): void
|
||||||
|
{
|
||||||
|
Log::debug('Test showempty()');
|
||||||
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
||||||
|
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
||||||
|
|
||||||
|
// mock stuff
|
||||||
|
$repository = $this->mock(CategoryRepositoryInterface::class);
|
||||||
|
$repository->shouldReceive('spentInPeriod')->andReturn('0');
|
||||||
|
$repository->shouldReceive('earnedInPeriod')->andReturn('0');
|
||||||
|
|
||||||
|
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
||||||
|
$accountRepos->shouldReceive('getAccountsByType')->once()->andReturn(new Collection);
|
||||||
|
|
||||||
|
$collector = $this->mock(JournalCollectorInterface::class);
|
||||||
|
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
||||||
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('setRange')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('setCategory')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('setTypes')->andReturnSelf()->atLeast(1);
|
||||||
|
$collector->shouldReceive('getJournals')->andReturn(new Collection)->atLeast(1);
|
||||||
|
|
||||||
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10))->atLeast(1);
|
||||||
|
|
||||||
|
$this->be($this->user());
|
||||||
|
$this->changeDateRange($this->user(), $range);
|
||||||
|
$response = $this->get(route('categories.show', [1]));
|
||||||
|
$response->assertStatus(200);
|
||||||
|
$response->assertSee('<ol class="breadcrumb">');
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@@ -23,18 +23,13 @@ declare(strict_types=1);
|
|||||||
namespace Tests\Feature\Controllers;
|
namespace Tests\Feature\Controllers;
|
||||||
|
|
||||||
use Carbon\Carbon;
|
use Carbon\Carbon;
|
||||||
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
|
||||||
use FireflyIII\Helpers\Filter\InternalTransferFilter;
|
|
||||||
use FireflyIII\Models\Category;
|
use FireflyIII\Models\Category;
|
||||||
use FireflyIII\Models\Transaction;
|
|
||||||
use FireflyIII\Models\TransactionJournal;
|
use FireflyIII\Models\TransactionJournal;
|
||||||
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
use FireflyIII\Repositories\Account\AccountRepositoryInterface;
|
||||||
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
use FireflyIII\Repositories\Category\CategoryRepositoryInterface;
|
||||||
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
||||||
use Illuminate\Pagination\LengthAwarePaginator;
|
|
||||||
use Illuminate\Support\Collection;
|
use Illuminate\Support\Collection;
|
||||||
use Log;
|
use Log;
|
||||||
use Navigation;
|
|
||||||
use Tests\TestCase;
|
use Tests\TestCase;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -49,14 +44,14 @@ class CategoryControllerTest extends TestCase
|
|||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
public function setUp()
|
public function setUp(): void
|
||||||
{
|
{
|
||||||
parent::setUp();
|
parent::setUp();
|
||||||
Log::debug(sprintf('Now in %s.', \get_class($this)));
|
Log::debug(sprintf('Now in %s.', \get_class($this)));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::create
|
* @covers \FireflyIII\Http\Controllers\CategoryController
|
||||||
*/
|
*/
|
||||||
public function testCreate(): void
|
public function testCreate(): void
|
||||||
{
|
{
|
||||||
@@ -75,7 +70,7 @@ class CategoryControllerTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::delete
|
* @covers \FireflyIII\Http\Controllers\CategoryController
|
||||||
*/
|
*/
|
||||||
public function testDelete(): void
|
public function testDelete(): void
|
||||||
{
|
{
|
||||||
@@ -94,7 +89,7 @@ class CategoryControllerTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::destroy
|
* @covers \FireflyIII\Http\Controllers\CategoryController
|
||||||
*/
|
*/
|
||||||
public function testDestroy(): void
|
public function testDestroy(): void
|
||||||
{
|
{
|
||||||
@@ -115,7 +110,7 @@ class CategoryControllerTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::edit
|
* @covers \FireflyIII\Http\Controllers\CategoryController
|
||||||
*/
|
*/
|
||||||
public function testEdit(): void
|
public function testEdit(): void
|
||||||
{
|
{
|
||||||
@@ -134,8 +129,7 @@ class CategoryControllerTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::index
|
* @covers \FireflyIII\Http\Controllers\CategoryController
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::__construct
|
|
||||||
*/
|
*/
|
||||||
public function testIndex(): void
|
public function testIndex(): void
|
||||||
{
|
{
|
||||||
@@ -157,312 +151,7 @@ class CategoryControllerTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::noCategory
|
* @covers \FireflyIII\Http\Controllers\CategoryController
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::getNoCategoryPeriodOverview
|
|
||||||
* @dataProvider dateRangeProvider
|
|
||||||
*
|
|
||||||
* @param string $range
|
|
||||||
*/
|
|
||||||
public function testNoCategory(string $range): void
|
|
||||||
{
|
|
||||||
Log::debug(sprintf('Test noCategory(%s)', $range));
|
|
||||||
// mock stuff
|
|
||||||
$collector = $this->mock(JournalCollectorInterface::class);
|
|
||||||
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
|
||||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
||||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
||||||
|
|
||||||
|
|
||||||
// get the journal with the most recent date for firstNull:
|
|
||||||
$journal = $this->user()->transactionJournals()->orderBy('date','DESC')->first();
|
|
||||||
$journalRepos->shouldReceive('firstNull')->twice()->andReturn($journal);
|
|
||||||
|
|
||||||
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setTypes')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setRange')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('withOpposingAccount')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('withoutCategory')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('getJournals')->andReturn(new Collection);
|
|
||||||
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10));
|
|
||||||
|
|
||||||
$collector->shouldReceive('setPage')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setLimit')->andReturnSelf();
|
|
||||||
|
|
||||||
$this->be($this->user());
|
|
||||||
$this->changeDateRange($this->user(), $range);
|
|
||||||
$response = $this->get(route('categories.no-category'));
|
|
||||||
$response->assertStatus(200);
|
|
||||||
// has bread crumb
|
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::noCategory
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::getNoCategoryPeriodOverview
|
|
||||||
* @dataProvider dateRangeProvider
|
|
||||||
*
|
|
||||||
* @param string $range
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
public function testNoCategoryAll(string $range): void
|
|
||||||
{
|
|
||||||
Log::debug('Test nocategoryAll()');
|
|
||||||
// mock stuff
|
|
||||||
$collector = $this->mock(JournalCollectorInterface::class);
|
|
||||||
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
|
||||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
||||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
||||||
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
|
||||||
|
|
||||||
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setTypes')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setRange')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('withOpposingAccount')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('withoutCategory')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('getJournals')->andReturn(new Collection);
|
|
||||||
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10));
|
|
||||||
|
|
||||||
$collector->shouldReceive('setPage')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setLimit')->andReturnSelf();
|
|
||||||
|
|
||||||
$this->be($this->user());
|
|
||||||
$this->changeDateRange($this->user(), $range);
|
|
||||||
$response = $this->get(route('categories.no-category', ['all']));
|
|
||||||
$response->assertStatus(200);
|
|
||||||
// has bread crumb
|
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::noCategory
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::getNoCategoryPeriodOverview
|
|
||||||
* @dataProvider dateRangeProvider
|
|
||||||
*
|
|
||||||
* @param string $range
|
|
||||||
*/
|
|
||||||
public function testNoCategoryDate(string $range): void
|
|
||||||
{
|
|
||||||
Log::debug('Test nocategorydate()');
|
|
||||||
// mock stuff
|
|
||||||
$collector = $this->mock(JournalCollectorInterface::class);
|
|
||||||
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
|
||||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
||||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
||||||
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
|
||||||
|
|
||||||
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setTypes')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setRange')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('withOpposingAccount')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('withoutCategory')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('getJournals')->andReturn(new Collection);
|
|
||||||
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10));
|
|
||||||
|
|
||||||
$collector->shouldReceive('setPage')->andReturnSelf();
|
|
||||||
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf();
|
|
||||||
$collector->shouldReceive('setLimit')->andReturnSelf();
|
|
||||||
|
|
||||||
Navigation::shouldReceive('updateStartDate')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('updateEndDate')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('startOfPeriod')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('endOfPeriod')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('periodShow')->andReturn('Some date');
|
|
||||||
Navigation::shouldReceive('blockPeriods')->andReturn([['period' => '1M', 'start' => new Carbon, 'end' => new Carbon]])->once();
|
|
||||||
|
|
||||||
$this->be($this->user());
|
|
||||||
$this->changeDateRange($this->user(), $range);
|
|
||||||
$response = $this->get(route('categories.no-category', ['2016-01-01']));
|
|
||||||
$response->assertStatus(200);
|
|
||||||
// has bread crumb
|
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::show
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::getPeriodOverview
|
|
||||||
*
|
|
||||||
* @dataProvider dateRangeProvider
|
|
||||||
*
|
|
||||||
* @param string $range
|
|
||||||
*/
|
|
||||||
public function testShow(string $range): void
|
|
||||||
{
|
|
||||||
Log::debug('Test show()');
|
|
||||||
$transaction = factory(Transaction::class)->make();
|
|
||||||
$categoryRepos = $this->mock(CategoryRepositoryInterface::class);
|
|
||||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
||||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
||||||
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
|
||||||
|
|
||||||
// mock stuff
|
|
||||||
$categoryRepos->shouldReceive('spentInPeriod')->andReturn('0');
|
|
||||||
$categoryRepos->shouldReceive('earnedInPeriod')->andReturn('0');
|
|
||||||
|
|
||||||
$accountRepos->shouldReceive('getAccountsByType')->once()->andReturn(new Collection);
|
|
||||||
|
|
||||||
$collector = $this->mock(JournalCollectorInterface::class);
|
|
||||||
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->atLeast(2);
|
|
||||||
$collector->shouldReceive('setRange')->andReturnSelf()->atLeast(2);
|
|
||||||
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->atLeast(2);
|
|
||||||
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->atLeast(2);
|
|
||||||
$collector->shouldReceive('setCategory')->andReturnSelf()->atLeast(2);
|
|
||||||
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([$transaction], 0, 10))->once();
|
|
||||||
|
|
||||||
$collector->shouldReceive('setTypes')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('getJournals')->andReturn(new Collection)->atLeast(1);
|
|
||||||
|
|
||||||
Navigation::shouldReceive('updateStartDate')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('updateEndDate')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('startOfPeriod')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('endOfPeriod')->andReturn(new Carbon);
|
|
||||||
Navigation::shouldReceive('periodShow')->andReturn('Some date');
|
|
||||||
Navigation::shouldReceive('blockPeriods')->andReturn([['period' => '1M', 'start' => new Carbon, 'end' => new Carbon]])->once();
|
|
||||||
|
|
||||||
$this->be($this->user());
|
|
||||||
$this->changeDateRange($this->user(), $range);
|
|
||||||
$response = $this->get(route('categories.show', [1]));
|
|
||||||
$response->assertStatus(200);
|
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::show
|
|
||||||
* @dataProvider dateRangeProvider
|
|
||||||
*
|
|
||||||
* @param string $range
|
|
||||||
*/
|
|
||||||
public function testShowAll(string $range): void
|
|
||||||
{
|
|
||||||
Log::debug('Test showAll()');
|
|
||||||
// mock stuff
|
|
||||||
$transaction = factory(Transaction::class)->make();
|
|
||||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
||||||
$repository = $this->mock(CategoryRepositoryInterface::class);
|
|
||||||
$collector = $this->mock(JournalCollectorInterface::class);
|
|
||||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
||||||
|
|
||||||
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setRange')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->once();
|
|
||||||
|
|
||||||
$collector->shouldReceive('setCategory')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([$transaction], 0, 10))->once();
|
|
||||||
|
|
||||||
$journalRepos->shouldReceive('firstNull')->once()->andReturn(TransactionJournal::first());
|
|
||||||
$repository->shouldReceive('firstUseDate')->andReturn(new Carbon);
|
|
||||||
|
|
||||||
$this->be($this->user());
|
|
||||||
$this->changeDateRange($this->user(), $range);
|
|
||||||
$response = $this->get(route('categories.show', [1, 'all']));
|
|
||||||
$response->assertStatus(200);
|
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::show
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::getPeriodOverview
|
|
||||||
* @dataProvider dateRangeProvider
|
|
||||||
*
|
|
||||||
* @param string $range
|
|
||||||
*/
|
|
||||||
public function testShowByDate(string $range): void
|
|
||||||
{
|
|
||||||
Log::debug('Test showbydate()');
|
|
||||||
// mock stuff
|
|
||||||
$transaction = factory(Transaction::class)->make();
|
|
||||||
$repository = $this->mock(CategoryRepositoryInterface::class);
|
|
||||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
||||||
$collector = $this->mock(JournalCollectorInterface::class);
|
|
||||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
||||||
$month = new Carbon();
|
|
||||||
$month->startOfMonth();
|
|
||||||
$journal = TransactionJournal::where('date', '>=', $month->format('Y-m-d') . ' 00:00:00')->first();
|
|
||||||
$journalRepos->shouldReceive('firstNull')->twice()->andReturn($journal);
|
|
||||||
|
|
||||||
$accountRepos->shouldReceive('getAccountsByType')->andReturn(new Collection);
|
|
||||||
|
|
||||||
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('setRange')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('setTypes')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('setCategory')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('getJournals')->andReturn(new Collection)->atLeast(1);
|
|
||||||
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([$transaction], 0, 10))->once();
|
|
||||||
|
|
||||||
$repository->shouldReceive('spentInPeriod')->andReturn('-1');
|
|
||||||
$repository->shouldReceive('earnedInPeriod')->andReturn('1');
|
|
||||||
|
|
||||||
$this->be($this->user());
|
|
||||||
$this->changeDateRange($this->user(), $range);
|
|
||||||
$today = new Carbon();
|
|
||||||
$today->subDay();
|
|
||||||
$response = $this->get(route('categories.show', [1, $today->format('Y-m-d')]));
|
|
||||||
$response->assertStatus(200);
|
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::show
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::getPeriodOverview
|
|
||||||
*
|
|
||||||
* @dataProvider dateRangeProvider
|
|
||||||
*
|
|
||||||
* @param string $range
|
|
||||||
*/
|
|
||||||
public function testShowEmpty(string $range): void
|
|
||||||
{
|
|
||||||
Log::debug('Test showempty()');
|
|
||||||
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
||||||
$journalRepos->shouldReceive('firstNull')->twice()->andReturn(TransactionJournal::first());
|
|
||||||
|
|
||||||
// mock stuff
|
|
||||||
$repository = $this->mock(CategoryRepositoryInterface::class);
|
|
||||||
$repository->shouldReceive('spentInPeriod')->andReturn('0');
|
|
||||||
$repository->shouldReceive('earnedInPeriod')->andReturn('0');
|
|
||||||
|
|
||||||
$accountRepos = $this->mock(AccountRepositoryInterface::class);
|
|
||||||
$accountRepos->shouldReceive('getAccountsByType')->once()->andReturn(new Collection);
|
|
||||||
|
|
||||||
$collector = $this->mock(JournalCollectorInterface::class);
|
|
||||||
$collector->shouldReceive('setPage')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setLimit')->andReturnSelf()->once();
|
|
||||||
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('setRange')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('removeFilter')->withArgs([InternalTransferFilter::class])->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('withBudgetInformation')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('withCategoryInformation')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('withOpposingAccount')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('setCategory')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('setTypes')->andReturnSelf()->atLeast(1);
|
|
||||||
$collector->shouldReceive('getJournals')->andReturn(new Collection)->atLeast(1);
|
|
||||||
|
|
||||||
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10))->atLeast(1);
|
|
||||||
|
|
||||||
$this->be($this->user());
|
|
||||||
$this->changeDateRange($this->user(), $range);
|
|
||||||
$response = $this->get(route('categories.show', [1]));
|
|
||||||
$response->assertStatus(200);
|
|
||||||
$response->assertSee('<ol class="breadcrumb">');
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::store
|
|
||||||
* @covers \FireflyIII\Http\Requests\CategoryFormRequest
|
* @covers \FireflyIII\Http\Requests\CategoryFormRequest
|
||||||
*/
|
*/
|
||||||
public function testStore(): void
|
public function testStore(): void
|
||||||
@@ -487,7 +176,7 @@ class CategoryControllerTest extends TestCase
|
|||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @covers \FireflyIII\Http\Controllers\CategoryController::update
|
* @covers \FireflyIII\Http\Controllers\CategoryController
|
||||||
* @covers \FireflyIII\Http\Requests\CategoryFormRequest
|
* @covers \FireflyIII\Http\Requests\CategoryFormRequest
|
||||||
*/
|
*/
|
||||||
public function testUpdate(): void
|
public function testUpdate(): void
|
||||||
|
Reference in New Issue
Block a user