mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-08 23:24:07 -06:00
290 lines
12 KiB
PHP
290 lines
12 KiB
PHP
<?php
|
|
/**
|
|
* BillControllerTest.php
|
|
* Copyright (c) 2017 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;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Helpers\Attachments\AttachmentHelperInterface;
|
|
use FireflyIII\Helpers\Collector\JournalCollectorInterface;
|
|
use FireflyIII\Models\Bill;
|
|
use FireflyIII\Models\TransactionJournal;
|
|
use FireflyIII\Repositories\Bill\BillRepositoryInterface;
|
|
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
|
|
use Illuminate\Pagination\LengthAwarePaginator;
|
|
use Illuminate\Support\Collection;
|
|
use Illuminate\Support\MessageBag;
|
|
use Log;
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* Class BillControllerTest
|
|
*
|
|
* @SuppressWarnings(PHPMD.TooManyPublicMethods)
|
|
* @SuppressWarnings(PHPMD.ExcessiveMethodLength)
|
|
* @SuppressWarnings(PHPMD.CouplingBetweenObjects)
|
|
*/
|
|
class BillControllerTest extends TestCase
|
|
{
|
|
/**
|
|
*
|
|
*/
|
|
public function setUp()
|
|
{
|
|
parent::setUp();
|
|
Log::debug(sprintf('Now in %s.', get_class($this)));
|
|
}
|
|
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::create
|
|
*/
|
|
public function testCreate()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('bills.create'));
|
|
$response->assertStatus(200);
|
|
// has bread crumb
|
|
$response->assertSee('<ol class="breadcrumb">');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::delete
|
|
*/
|
|
public function testDelete()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('bills.delete', [1]));
|
|
$response->assertStatus(200);
|
|
// has bread crumb
|
|
$response->assertSee('<ol class="breadcrumb">');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::destroy
|
|
*/
|
|
public function testDestroy()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$repository = $this->mock(BillRepositoryInterface::class);
|
|
$repository->shouldReceive('destroy')->andReturn(true);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
|
|
$this->session(['bills.delete.uri' => 'http://localhost']);
|
|
$this->be($this->user());
|
|
$response = $this->post(route('bills.destroy', [1]));
|
|
$response->assertStatus(302);
|
|
$response->assertSessionHas('success');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::edit
|
|
*/
|
|
public function testEdit()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('bills.edit', [1]));
|
|
$response->assertStatus(200);
|
|
// has bread crumb
|
|
$response->assertSee('<ol class="breadcrumb">');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::index
|
|
* @covers \FireflyIII\Http\Controllers\BillController::__construct
|
|
*/
|
|
public function testIndex()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$bill = factory(Bill::class)->make();
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$repository = $this->mock(BillRepositoryInterface::class);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
$collection = new Collection([$bill]);
|
|
$repository->shouldReceive('getPaginator')->andReturn(new LengthAwarePaginator($collection, 1, 50))->once();
|
|
$repository->shouldReceive('setUser');
|
|
$repository->shouldReceive('getPaidDatesInRange')->twice()->andReturn(new Collection([new Carbon, new Carbon, new Carbon]));
|
|
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('bills.index'));
|
|
$response->assertStatus(200);
|
|
// has bread crumb
|
|
$response->assertSee('<ol class="breadcrumb">');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::rescan
|
|
*/
|
|
public function testRescan()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journal = factory(TransactionJournal::class)->make();
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$repository = $this->mock(BillRepositoryInterface::class);
|
|
$repository->shouldReceive('getPossiblyRelatedJournals')->once()->andReturn(new Collection([$journal]));
|
|
$repository->shouldReceive('scan')->once();
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('bills.rescan', [1]));
|
|
$response->assertStatus(302);
|
|
$response->assertSessionHas('success');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::rescan
|
|
*/
|
|
public function testRescanInactive()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$repository = $this->mock(BillRepositoryInterface::class);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('bills.rescan', [3]));
|
|
$response->assertStatus(302);
|
|
$response->assertSessionHas('warning');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::show
|
|
*/
|
|
public function testShow()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$collector = $this->mock(JournalCollectorInterface::class);
|
|
$repository = $this->mock(BillRepositoryInterface::class);
|
|
$repository->shouldReceive('getYearAverage')->andReturn('0');
|
|
$repository->shouldReceive('getOverallAverage')->andReturn('0');
|
|
$repository->shouldReceive('nextExpectedMatch')->andReturn(new Carbon);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
|
|
$collector->shouldReceive('setAllAssetAccounts')->andReturnSelf();
|
|
$collector->shouldReceive('setBills')->andReturnSelf();
|
|
$collector->shouldReceive('setLimit')->andReturnSelf();
|
|
$collector->shouldReceive('setPage')->andReturnSelf();
|
|
$collector->shouldReceive('withBudgetInformation')->andReturnSelf();
|
|
$collector->shouldReceive('withCategoryInformation')->andReturnSelf();
|
|
$collector->shouldReceive('getPaginatedJournals')->andReturn(new LengthAwarePaginator([], 0, 10));
|
|
$repository->shouldReceive('getPaidDatesInRange')->twice()->andReturn(new Collection([new Carbon, new Carbon, new Carbon]));
|
|
$repository->shouldReceive('setUser');
|
|
|
|
$this->be($this->user());
|
|
$response = $this->get(route('bills.show', [1]));
|
|
$response->assertStatus(200);
|
|
// has bread crumb
|
|
$response->assertSee('<ol class="breadcrumb">');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::store
|
|
* @covers \FireflyIII\Http\Requests\BillFormRequest
|
|
* @covers \FireflyIII\Http\Requests\Request
|
|
*/
|
|
public function testStore()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$repository = $this->mock(BillRepositoryInterface::class);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
$repository->shouldReceive('store')->andReturn(new Bill);
|
|
$attachHelper->shouldReceive('saveAttachmentsForModel');
|
|
$attachHelper->shouldReceive('getMessages')->andReturn(new MessageBag);
|
|
|
|
$data = [
|
|
'name' => 'New Bill ' . random_int(1000, 9999),
|
|
'match' => 'some words',
|
|
'amount_min' => '100',
|
|
'amount_currency_id_amount_min' => 1,
|
|
'amount_currency_id_amount_max' => 1,
|
|
'skip' => 0,
|
|
'amount_max' => '100',
|
|
'date' => '2016-01-01',
|
|
'repeat_freq' => 'monthly',
|
|
];
|
|
$this->session(['bills.create.uri' => 'http://localhost']);
|
|
$this->be($this->user());
|
|
$response = $this->post(route('bills.store'), $data);
|
|
$response->assertStatus(302);
|
|
$response->assertSessionHas('success');
|
|
}
|
|
|
|
/**
|
|
* @covers \FireflyIII\Http\Controllers\BillController::update
|
|
* @covers \FireflyIII\Http\Requests\BillFormRequest
|
|
* @covers \FireflyIII\Http\Requests\Request
|
|
*/
|
|
public function testUpdate()
|
|
{
|
|
// mock stuff
|
|
$attachHelper = $this->mock(AttachmentHelperInterface::class);
|
|
$journalRepos = $this->mock(JournalRepositoryInterface::class);
|
|
$repository = $this->mock(BillRepositoryInterface::class);
|
|
$journalRepos->shouldReceive('first')->once()->andReturn(new TransactionJournal);
|
|
$repository->shouldReceive('update')->andReturn(new Bill);
|
|
$attachHelper->shouldReceive('saveAttachmentsForModel');
|
|
$attachHelper->shouldReceive('getMessages')->andReturn(new MessageBag);
|
|
|
|
$data = [
|
|
'id' => 1,
|
|
'name' => 'Updated Bill ' . random_int(1000, 9999),
|
|
'match' => 'some more words',
|
|
'amount_min' => '100',
|
|
'amount_currency_id_amount_min' => 1,
|
|
'amount_currency_id_amount_max' => 1,
|
|
'skip' => 0,
|
|
'amount_max' => '100',
|
|
'date' => '2016-01-01',
|
|
'repeat_freq' => 'monthly',
|
|
];
|
|
$this->session(['bills.edit.uri' => 'http://localhost']);
|
|
$this->be($this->user());
|
|
$response = $this->post(route('bills.update', [1]), $data);
|
|
$response->assertStatus(302);
|
|
$response->assertSessionHas('success');
|
|
}
|
|
}
|