Files
firefly-iii/tests/integration/TestCase.php

68 lines
1.9 KiB
PHP
Raw Normal View History

2015-07-02 09:44:56 +02:00
<?php
2017-08-11 05:36:05 +02:00
/**
* TestCase.php
2020-07-30 20:48:07 +02:00
* Copyright (c) 2020 james@firefly-iii.org
2017-08-11 05:36:05 +02:00
*
* This file is part of Firefly III (https://github.com/firefly-iii).
2017-10-21 08:40:00 +02: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 08:40:00 +02:00
*
* This program is distributed in the hope that it will be useful,
2017-10-21 08:40:00 +02:00
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
2017-10-21 08:40:00 +02: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-11 05:36:05 +02:00
*/
2017-08-18 21:08:51 +02:00
declare(strict_types=1);
namespace Tests\integration;
2017-02-05 15:42:00 +01:00
2024-12-29 06:14:40 +01:00
use FireflyIII\Models\UserGroup;
2024-08-21 10:50:06 +03:00
use FireflyIII\User;
2025-01-03 04:51:42 +01:00
use Illuminate\Foundation\Testing\RefreshDatabase;
2017-02-05 15:42:00 +01:00
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
use Tests\integration\Traits\CollectsValues;
2019-04-16 16:20:46 +02:00
2016-10-09 07:58:27 +02:00
/**
* Class TestCase
*/
2017-02-05 15:42:00 +01:00
abstract class TestCase extends BaseTestCase
2015-07-02 09:44:56 +02:00
{
2022-12-29 19:43:43 +01:00
use CollectsValues;
2023-11-04 14:26:35 +01:00
use CreatesApplication;
2025-01-03 04:51:42 +01:00
use RefreshDatabase;
2021-03-19 06:12:28 +01:00
2021-03-14 04:55:48 +01:00
protected const MAX_ITERATIONS = 2;
protected $seed = true;
2020-11-07 14:05:53 +01:00
2018-05-11 19:58:10 +02:00
public function dateRangeProvider(): array
{
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 10:50:06 +03:00
protected function createAuthenticatedUser(): User
{
2024-12-29 06:10:54 +01:00
$group = UserGroup::create(['title' => 'test@email.com']);
2024-08-21 10:50:06 +03:00
return User::create([
'email' => 'test@email.com',
'password' => 'password',
2024-12-29 06:10:54 +01:00
'user_group_id' => $group->id,
2024-08-21 10:50:06 +03:00
]);
}
}