firefly-iii/tests/TestCase.php

156 lines
3.6 KiB
PHP
Raw Normal View History

2015-07-02 02:44:56 -05:00
<?php
2017-08-10 22:36:05 -05:00
/**
* TestCase.php
* Copyright (c) 2017 thegrumpydictator@gmail.com
*
2017-10-21 01:40:00 -05:00
* 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
2017-12-17 07:42:21 -06:00
* along with Firefly III. If not, see <http://www.gnu.org/licenses/>.
2017-08-10 22:36:05 -05:00
*/
2017-08-18 14:08:51 -05:00
declare(strict_types=1);
2017-02-05 08:42:00 -06:00
namespace Tests;
2017-02-12 05:21:44 -06:00
use Carbon\Carbon;
2018-02-28 08:50:00 -06:00
use Exception;
2017-02-12 05:21:44 -06:00
use FireflyIII\Models\Preference;
2018-02-28 08:50:00 -06:00
use FireflyIII\Models\TransactionJournal;
use FireflyIII\Repositories\Journal\JournalRepositoryInterface;
use FireflyIII\User;
2017-02-05 08:42:00 -06:00
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Log;
use Mockery;
2017-02-12 05:21:44 -06:00
2016-10-09 00:58:27 -05:00
/**
* Class TestCase
2017-02-05 08:42:00 -06:00
*
2017-08-12 03:27:45 -05:00
* @SuppressWarnings(PHPMD.NumberOfChildren)
2016-10-09 00:58:27 -05:00
*/
2017-02-05 08:42:00 -06:00
abstract class TestCase extends BaseTestCase
2015-07-02 02:44:56 -05:00
{
2018-03-03 01:12:18 -06:00
/**
* @param User $user
* @param string $range
*/
public function changeDateRange(User $user, $range)
{
$valid = ['1D', '1W', '1M', '3M', '6M', '1Y', 'custom'];
if (\in_array($range, $valid)) {
2018-02-28 08:50:00 -06:00
try {
Preference::where('user_id', $user->id)->where('name', 'viewRange')->delete();
} catch (Exception $e) {
// don't care.
}
Preference::create(
[
'user_id' => $user->id,
'name' => 'viewRange',
'data' => $range,
]
);
// set period to match?
}
2017-11-22 14:12:27 -06:00
if ('custom' === $range) {
$this->session(
[
'start' => Carbon::now()->subDays(20),
'end' => Carbon::now(),
]
);
}
}
2018-02-28 08:50:00 -06:00
use CreatesApplication;
/**
* @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'],
];
}
2017-02-12 05:21:44 -06:00
/**
* @return User
*/
2017-12-26 10:33:53 -06:00
public function demoUser(): User
{
2018-04-02 07:17:11 -05:00
return User::find(4);
2017-12-26 10:33:53 -06:00
}
/**
* @return User
*/
public function emptyUser(): User
2017-02-12 05:21:44 -06:00
{
2018-04-02 07:17:11 -05:00
return User::find(2);
2017-02-12 05:21:44 -06:00
}
/**
* @return User
*/
2017-12-26 10:33:53 -06:00
public function user(): User
2017-02-12 05:21:44 -06:00
{
2018-04-02 07:17:11 -05:00
return User::find(1);
2017-02-12 05:21:44 -06:00
}
/**
* @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;
}
2018-02-16 15:14:34 -06:00
/**
* @param string $class
*
* @return Mockery\MockInterface
*/
protected function overload(string $class)
{
//$this->app->instance($class, $externalMock);
2018-04-02 07:17:11 -05:00
return Mockery::mock('overload:' . $class);
2018-02-16 15:14:34 -06:00
}
2018-02-28 08:50:00 -06:00
/**
*
*/
protected function setUp()
{
parent::setUp();
$repository = $this->mock(JournalRepositoryInterface::class);
$repository->shouldReceive('firstNull')->andReturn(new TransactionJournal);
2018-02-28 08:50:00 -06:00
}
}