]> git.mxchange.org Git - friendica.git/blob - tests/FixtureTestTrait.php
Fix a problem with MySQL
[friendica.git] / tests / FixtureTestTrait.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2024, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Test;
23
24 use Dice\Dice;
25 use Friendica\App\Arguments;
26 use Friendica\App\Router;
27 use Friendica\Core\Config\Capability\IManageConfigValues;
28 use Friendica\Core\Config\Factory\Config;
29 use Friendica\Core\Config\Util\ConfigFileManager;
30 use Friendica\Core\Session\Capability\IHandleSessions;
31 use Friendica\Core\Session\Type\Memory;
32 use Friendica\Database\Database;
33 use Friendica\Database\DBStructure;
34 use Friendica\DI;
35 use Friendica\Test\Util\Database\StaticDatabase;
36 use Friendica\Test\Util\VFSTrait;
37
38 trait FixtureTestTrait
39 {
40         use VFSTrait;
41         use DatabaseTestTrait;
42
43         /** @var Dice */
44         protected $dice;
45
46         /**
47          * Create variables used by tests.
48          */
49         protected function setUpFixtures(): void
50         {
51                 $this->setUpVfsDir();
52                 $this->setUpDb();
53
54                 $server                   = $_SERVER;
55                 $server['REQUEST_METHOD'] = Router::GET;
56
57                 $this->dice = (new Dice())
58                         ->addRules(include __DIR__ . '/../static/dependencies.config.php')
59                         ->addRule(ConfigFileManager::class, [
60                                 'instanceOf' => Config::class,
61                                 'call'       => [['createConfigFileManager', [$this->root->url(), $server,], Dice::CHAIN_CALL]]])
62                         ->addRule(Database::class, ['instanceOf' => StaticDatabase::class, 'shared' => true])
63                         ->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null])
64                         ->addRule(Arguments::class, [
65                                 'instanceOf' => Arguments::class,
66                                 'call'       => [
67                                         ['determine', [$server, $_GET], Dice::CHAIN_CALL],
68                                 ],
69                         ]);
70                 DI::init($this->dice, true);
71
72                 $config = $this->dice->create(IManageConfigValues::class);
73                 $config->set('database', 'disable_pdo', true);
74
75                 /** @var Database $dba */
76                 $dba = $this->dice->create(Database::class);
77                 $dba->setTestmode(true);
78
79                 DBStructure::checkInitialValues();
80
81                 // Load the API dataset for the whole API
82                 $this->loadFixture(__DIR__ . '/datasets/api.fixture.php', $dba);
83         }
84
85         protected function tearDownFixtures(): void
86         {
87                 $this->tearDownDb();
88         }
89
90         protected function useHttpMethod(string $method = Router::GET)
91         {
92                 $server                   = $_SERVER;
93                 $server['REQUEST_METHOD'] = $method;
94
95                 $this->dice = $this->dice
96                         ->addRule(Arguments::class, [
97                                 'instanceOf' => Arguments::class,
98                                 'call'       => [
99                                         ['determine', [$server, $_GET], Dice::CHAIN_CALL],
100                                 ],
101                         ]);
102
103                 DI::init($this->dice);
104         }
105 }