mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -06:00
122 lines
2.9 KiB
PHP
122 lines
2.9 KiB
PHP
<?php
|
|
|
|
/**
|
|
* TestCase.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;
|
|
|
|
use Carbon\Carbon;
|
|
use FireflyIII\Models\Preference;
|
|
use FireflyIII\User;
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
|
use Log;
|
|
use Mockery;
|
|
|
|
/**
|
|
* Class TestCase
|
|
*
|
|
* @SuppressWarnings(PHPMD.NumberOfChildren)
|
|
*/
|
|
abstract class TestCase extends BaseTestCase
|
|
{
|
|
use CreatesApplication;
|
|
|
|
/**
|
|
* @param User $user
|
|
* @param string $range
|
|
*
|
|
* @throws \Exception
|
|
*/
|
|
public function changeDateRange(User $user, $range)
|
|
{
|
|
$valid = ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'];
|
|
if (in_array($range, $valid)) {
|
|
Preference::where('user_id', $user->id)->where('name', 'viewRange')->delete();
|
|
Preference::create(
|
|
[
|
|
'user_id' => $user->id,
|
|
'name' => 'viewRange',
|
|
'data' => $range,
|
|
]
|
|
);
|
|
// set period to match?
|
|
}
|
|
if ('custom' === $range) {
|
|
$this->session(
|
|
[
|
|
'start' => Carbon::now()->subDays(20),
|
|
'end' => Carbon::now(),
|
|
]
|
|
);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function dateRangeProvider()
|
|
{
|
|
return [
|
|
'one day' => ['1D'],
|
|
'one week' => ['1W'],
|
|
'one month' => ['1M'],
|
|
'three months' => ['3M'],
|
|
'six months' => ['6M'],
|
|
'one year' => ['1Y'],
|
|
'custom range' => ['custom'],
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return User
|
|
*/
|
|
public function emptyUser()
|
|
{
|
|
$user = User::find(2);
|
|
|
|
return $user;
|
|
}
|
|
|
|
/**
|
|
* @return User
|
|
*/
|
|
public function user()
|
|
{
|
|
$user = User::find(1);
|
|
|
|
return $user;
|
|
}
|
|
|
|
/**
|
|
* @param string $class
|
|
*
|
|
* @return \Mockery\MockInterface
|
|
*/
|
|
protected function mock($class)
|
|
{
|
|
Log::debug(sprintf('Will now mock %s', $class));
|
|
$object = Mockery::mock($class);
|
|
$this->app->instance($class, $object);
|
|
|
|
return $object;
|
|
}
|
|
}
|