]> git.mxchange.org Git - friendica.git/blob - tests/FixtureTest.php
Remove flasky testpart
[friendica.git] / tests / FixtureTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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  * FixtureTest class.
21  */
22
23 namespace Friendica\Test;
24
25 use Dice\Dice;
26 use Friendica\App\Arguments;
27 use Friendica\App\Router;
28 use Friendica\Core\Config\Capability\IManageConfigValues;
29 use Friendica\Core\Config\Factory\Config;
30 use Friendica\Core\Config\Util\ConfigFileManager;
31 use Friendica\Core\Session\Capability\IHandleSessions;
32 use Friendica\Core\Session\Type\Memory;
33 use Friendica\Database\Database;
34 use Friendica\Database\DBStructure;
35 use Friendica\DI;
36 use Friendica\Test\Util\Database\StaticDatabase;
37 use Friendica\Test\Util\VFSTrait;
38
39 /**
40  * Parent class for test cases requiring fixtures
41  */
42 abstract class FixtureTest extends DatabaseTest
43 {
44         use VFSTrait;
45
46         /** @var Dice */
47         protected $dice;
48
49         /**
50          * Create variables used by tests.
51          */
52         protected function setUp(): void
53         {
54                 $this->setUpVfsDir();
55
56                 parent::setUp();
57
58                 $server                   = $_SERVER;
59                 $server['REQUEST_METHOD'] = Router::GET;
60
61                 $this->dice = (new Dice())
62                         ->addRules(include __DIR__ . '/../static/dependencies.config.php')
63                         ->addRule(ConfigFileManager::class, [
64                                 'instanceOf' => Config::class,
65                                 'call'       => [['createConfigFileManager', [$this->root->url(), $server,],
66                                                                   Dice::CHAIN_CALL]]])
67                         ->addRule(Database::class, ['instanceOf' => StaticDatabase::class, 'shared' => true])
68                         ->addRule(IHandleSessions::class, ['instanceOf' => Memory::class, 'shared' => true, 'call' => null])
69                         ->addRule(Arguments::class, [
70                                 'instanceOf' => Arguments::class,
71                                 'call'       => [
72                                         ['determine', [$server, $_GET], Dice::CHAIN_CALL],
73                                 ],
74                         ]);
75                 DI::init($this->dice);
76
77                 $config = $this->dice->create(IManageConfigValues::class);
78                 $config->set('database', 'disable_pdo', true);
79
80                 /** @var Database $dba */
81                 $dba = $this->dice->create(Database::class);
82
83                 $dba->setTestmode(true);
84
85                 // Load the API dataset for the whole API
86                 $this->loadFixture(__DIR__ . '/datasets/api.fixture.php', $dba);
87         }
88
89         protected function useHttpMethod(string $method = Router::GET)
90         {
91                 $server                   = $_SERVER;
92                 $server['REQUEST_METHOD'] = $method;
93
94                 $this->dice = $this->dice
95                         ->addRule(Arguments::class, [
96                                 'instanceOf' => Arguments::class,
97                                 'call'       => [
98                                         ['determine', [$server, $_GET], Dice::CHAIN_CALL],
99                                 ],
100                         ]);
101
102                 DI::init($this->dice);
103         }
104 }