2020-06-09 12:38:31 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2023-01-01 14:36:24 +00:00
|
|
|
* @copyright Copyright (C) 2010-2023, the Friendica project
|
2022-01-06 23:30:59 +00:00
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* This program 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 Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
*
|
2020-06-09 12:38:31 +00:00
|
|
|
* FixtureTest class.
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Test;
|
|
|
|
|
|
|
|
use Dice\Dice;
|
2022-01-02 21:51:16 +00:00
|
|
|
use Friendica\App\Arguments;
|
|
|
|
use Friendica\App\Router;
|
2023-01-15 15:12:25 +00:00
|
|
|
use Friendica\Core\Config\Capability\IManageConfigValues;
|
2023-01-01 20:10:41 +00:00
|
|
|
use Friendica\Core\Config\Factory\Config;
|
|
|
|
use Friendica\Core\Config\Util\ConfigFileManager;
|
2021-10-26 19:44:29 +00:00
|
|
|
use Friendica\Core\Session\Capability\IHandleSessions;
|
2022-10-22 18:03:15 +00:00
|
|
|
use Friendica\Core\Session\Type\Memory;
|
2020-06-09 12:38:31 +00:00
|
|
|
use Friendica\Database\Database;
|
|
|
|
use Friendica\Database\DBStructure;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Test\Util\Database\StaticDatabase;
|
2023-01-01 20:10:41 +00:00
|
|
|
use Friendica\Test\Util\VFSTrait;
|
2020-06-09 12:38:31 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Parent class for test cases requiring fixtures
|
|
|
|
*/
|
2023-02-13 19:52:24 +00:00
|
|
|
abstract class FixtureTest extends MockedTest
|
2020-06-09 12:38:31 +00:00
|
|
|
{
|
2023-02-13 19:52:24 +00:00
|
|
|
use FixtureTestTrait;
|
2023-01-01 20:10:41 +00:00
|
|
|
|
2021-11-12 20:08:36 +00:00
|
|
|
protected function setUp(): void
|
2020-06-09 12:38:31 +00:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2023-02-13 19:52:24 +00:00
|
|
|
$this->setUpFixtures();
|
2020-06-09 12:38:31 +00:00
|
|
|
}
|
2022-01-02 21:51:16 +00:00
|
|
|
|
2023-02-13 19:52:24 +00:00
|
|
|
protected function tearDown(): void
|
2022-01-02 21:51:16 +00:00
|
|
|
{
|
2023-02-13 19:52:24 +00:00
|
|
|
$this->tearDownFixtures();
|
2022-01-02 21:51:16 +00:00
|
|
|
|
2023-02-13 19:52:24 +00:00
|
|
|
parent::tearDown();
|
2022-01-02 21:51:16 +00:00
|
|
|
}
|
2020-06-09 12:38:31 +00:00
|
|
|
}
|