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