2015-07-02 02:44:56 -05:00
|
|
|
<?php
|
2017-08-10 22:36:05 -05:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TestCase.php
|
2020-07-30 13:48:07 -05:00
|
|
|
* Copyright (c) 2020 james@firefly-iii.org
|
2017-08-10 22:36:05 -05:00
|
|
|
*
|
2019-10-01 23:45:03 -05:00
|
|
|
* This file is part of Firefly III (https://github.com/firefly-iii).
|
2017-10-21 01:40:00 -05:00
|
|
|
*
|
2019-10-01 23:45:03 -05:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2017-10-21 01:40:00 -05:00
|
|
|
*
|
2019-10-01 23:45:03 -05:00
|
|
|
* This program is distributed in the hope that it will be useful,
|
2017-10-21 01:40:00 -05:00
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2019-10-01 23:45:03 -05:00
|
|
|
* GNU Affero General Public License for more details.
|
2017-10-21 01:40:00 -05:00
|
|
|
*
|
2019-10-01 23:45:03 -05:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
2017-08-10 22:36:05 -05:00
|
|
|
*/
|
2017-08-18 14:08:51 -05:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-07-03 09:08:24 -05:00
|
|
|
namespace Tests\integration;
|
2017-02-05 08:42:00 -06:00
|
|
|
|
2024-08-21 02:50:06 -05:00
|
|
|
use FireflyIII\User;
|
2017-02-05 08:42:00 -06:00
|
|
|
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
|
2023-07-03 09:08:24 -05:00
|
|
|
use Tests\integration\Traits\CollectsValues;
|
2019-04-16 09:20:46 -05:00
|
|
|
|
2016-10-09 00:58:27 -05:00
|
|
|
/**
|
|
|
|
* Class TestCase
|
|
|
|
*/
|
2017-02-05 08:42:00 -06:00
|
|
|
abstract class TestCase extends BaseTestCase
|
2015-07-02 02:44:56 -05:00
|
|
|
{
|
2022-12-29 12:43:43 -06:00
|
|
|
use CollectsValues;
|
2023-11-04 08:26:35 -05:00
|
|
|
use CreatesApplication;
|
2021-03-19 00:12:28 -05:00
|
|
|
|
2021-03-13 21:55:48 -06:00
|
|
|
protected const MAX_ITERATIONS = 2;
|
2020-11-07 07:05:53 -06:00
|
|
|
|
2018-05-11 12:58:10 -05:00
|
|
|
public function dateRangeProvider(): array
|
2017-02-12 04:25:17 -06:00
|
|
|
{
|
|
|
|
return [
|
|
|
|
'one day' => ['1D'],
|
|
|
|
'one week' => ['1W'],
|
|
|
|
'one month' => ['1M'],
|
|
|
|
'three months' => ['3M'],
|
|
|
|
'six months' => ['6M'],
|
|
|
|
'one year' => ['1Y'],
|
|
|
|
'custom range' => ['custom'],
|
|
|
|
];
|
|
|
|
}
|
2024-08-21 02:50:06 -05:00
|
|
|
|
|
|
|
protected function createAuthenticatedUser(): User
|
|
|
|
{
|
|
|
|
return User::create([
|
2024-09-13 23:17:49 -05:00
|
|
|
'email' => 'test@email.com',
|
2024-08-21 02:50:06 -05:00
|
|
|
'password' => 'password',
|
|
|
|
]);
|
|
|
|
}
|
2017-02-05 12:51:58 -06:00
|
|
|
}
|