firefly-iii/tests/Feature/Controllers/Report/BudgetControllerTest.php

60 lines
1.9 KiB
PHP
Raw Normal View History

2017-02-12 11:40:39 -06:00
<?php
/**
* BudgetControllerTest.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
* This software may be modified and distributed under the terms of the Creative Commons Attribution-ShareAlike 4.0 International License.
*
* See the LICENSE file for details.
*/
declare(strict_types = 1);
namespace Tests\Feature\Controllers\Report;
2017-03-12 15:24:34 -05:00
use FireflyIII\Helpers\Report\BudgetReportHelperInterface;
use FireflyIII\Repositories\Budget\BudgetRepositoryInterface;
use Illuminate\Support\Collection;
2017-02-12 11:40:39 -06:00
use Tests\TestCase;
2017-03-12 15:24:34 -05:00
/**
* Class BudgetControllerTest
*
* @package Tests\Feature\Controllers\Report
*/
2017-02-12 11:40:39 -06:00
class BudgetControllerTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Controllers\Report\BudgetController::general
*/
public function testGeneral()
{
2017-03-12 15:24:34 -05:00
$return = [];
$helper = $this->mock(BudgetReportHelperInterface::class);
$helper->shouldReceive('getBudgetReport')->andReturn($return);
2017-02-12 11:40:39 -06:00
$this->be($this->user());
$response = $this->get(route('report-data.budget.general', ['1', '20120101', '20120131']));
$response->assertStatus(200);
}
/**
* @covers \FireflyIII\Http\Controllers\Report\BudgetController::period
2017-03-12 15:24:34 -05:00
* @covers \FireflyIII\Http\Controllers\Report\BudgetController::filterBudgetPeriodReport
2017-02-12 11:40:39 -06:00
*/
public function testPeriod()
{
2017-03-12 15:24:34 -05:00
$first = [1 => ['entries' => ['1', '1']]];
$second = ['entries' => ['1', '1']];
$repository = $this->mock(BudgetRepositoryInterface::class);
$repository->shouldReceive('getBudgets')->andReturn(new Collection);
$repository->shouldReceive('getBudgetPeriodReport')->andReturn($first);
$repository->shouldReceive('getNoBudgetPeriodReport')->andReturn($second);
2017-02-12 11:40:39 -06:00
$this->be($this->user());
$response = $this->get(route('report-data.budget.period', ['1', '20120101', '20120131']));
$response->assertStatus(200);
}
2017-02-16 15:33:32 -06:00
}