]> git.mxchange.org Git - friendica.git/blob - tests/functional/DependencyCheckTest.php
42dcb7817644914ef237fe6380c77d180817f83b
[friendica.git] / tests / functional / DependencyCheckTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\functional;
23
24 use Dice\Dice;
25 use Friendica\App;
26 use Friendica\Core\Cache\ICache;
27 use Friendica\Core\Cache\IMemoryCache;
28 use Friendica\Core\Config\Cache;
29 use Friendica\Core\Config\IConfig;
30 use Friendica\Core\Lock\ILock;
31 use Friendica\Database\Database;
32 use Friendica\Test\Util\VFSTrait;
33 use Friendica\Util\BasePath;
34 use Friendica\Util\ConfigFileLoader;
35 use Friendica\Util\Profiler;
36 use PHPUnit\Framework\TestCase;
37 use Psr\Log\LoggerInterface;
38
39 class DependencyCheckTest extends TestCase
40 {
41         use VFSTrait;
42
43         /**
44          * @var Dice
45          */
46         private $dice;
47
48         protected function setUp()
49         {
50                 parent::setUp();
51
52                 $this->setUpVfsDir();
53
54                 $this->dice = (new Dice())
55                         ->addRules(include __DIR__ . '/../../static/dependencies.config.php');
56         }
57
58         /**
59          * Test the creation of the BasePath
60          */
61         public function testBasePath()
62         {
63                 /** @var BasePath $basePath */
64                 $basePath = $this->dice->create(BasePath::class, [$this->root->url()]);
65
66                 self::assertInstanceOf(BasePath::class, $basePath);
67                 self::assertEquals($this->root->url(), $basePath->getPath());
68         }
69
70         /**
71          * Test the initial config cache
72          * Should not need any other files
73          */
74         public function testConfigFileLoader()
75         {
76                 /** @var ConfigFileLoader $configFileLoader */
77                 $configFileLoader = $this->dice->create(ConfigFileLoader::class);
78
79                 self::assertInstanceOf(ConfigFileLoader::class, $configFileLoader);
80
81                 $configCache = new Cache();
82                 $configCache->set('database', 'disable_pdo', true);
83                 $configFileLoader->setupCache($configCache);
84
85                 self::assertNotEmpty($configCache->getAll());
86                 self::assertArrayHasKey('database', $configCache->getAll());
87                 self::assertArrayHasKey('system', $configCache->getAll());
88         }
89
90         /**
91          * Test the construction of a profiler class with DI
92          */
93         public function testProfiler()
94         {
95                 /** @var Profiler $profiler */
96                 $profiler = $this->dice->create(Profiler::class);
97
98                 self::assertInstanceOf(Profiler::class, $profiler);
99
100                 $configCache = new Cache([
101                         'system' => [
102                                 'profiler' => true,
103                         ],
104                         'rendertime' => [
105                                 'callstack' => true,
106                         ]
107                 ]);
108
109                 // create new DI-library because of shared instance rule (so the Profiler wouldn't get created twice)
110                 $this->dice = new Dice();
111                 $profiler = $this->dice->create(Profiler::class, [$configCache]);
112
113                 self::assertInstanceOf(Profiler::class, $profiler);
114                 self::assertTrue($profiler->isRendertime());
115         }
116
117         public function testDatabase()
118         {
119                 /** @var Database $database */
120                 $database = $this->dice->create(Database::class);
121
122                 self::assertInstanceOf(Database::class, $database);
123                 self::assertContains($database->getDriver(), [Database::PDO, Database::MYSQLI], 'The driver returns an unexpected value');
124                 self::assertNotNull($database->getConnection(), 'There is no database connection');
125
126                 $result = $database->p("SELECT 1");
127                 self::assertEquals('', $database->errorMessage(), 'There had been a database error message');
128                 self::assertEquals(0, $database->errorNo(), 'There had been a database error number');
129
130                 self::assertTrue($database->connected(), 'The database is not connected');
131         }
132
133         public function testAppMode()
134         {
135                 /** @var App\Mode $mode */
136                 $mode = $this->dice->create(App\Mode::class);
137
138                 self::assertInstanceOf(App\Mode::class, $mode);
139
140                 self::assertTrue($mode->has(App\Mode::LOCALCONFIGPRESENT), 'No local config present');
141                 self::assertTrue($mode->has(App\Mode::DBAVAILABLE), 'Database is not available');
142                 self::assertTrue($mode->has(App\Mode::DBCONFIGAVAILABLE), 'Database config is not available');
143                 self::assertTrue($mode->has(App\Mode::MAINTENANCEDISABLED), 'In maintenance mode');
144
145                 self::assertTrue($mode->isNormal(), 'Not in normal mode');
146         }
147
148         public function testConfiguration()
149         {
150                 /** @var IConfig $config */
151                 $config = $this->dice->create(IConfig::class);
152
153                 self::assertInstanceOf(IConfig::class, $config);
154
155                 self::assertNotEmpty($config->get('database', 'username'));
156         }
157
158         public function testLogger()
159         {
160                 /** @var LoggerInterface $logger */
161                 $logger = $this->dice->create(LoggerInterface::class, ['test']);
162
163                 self::assertInstanceOf(LoggerInterface::class, $logger);
164         }
165
166         public function testDevLogger()
167         {
168                 /** @var IConfig $config */
169                 $config = $this->dice->create(IConfig::class);
170                 $config->set('system', 'dlogfile', $this->root->url() . '/friendica.log');
171
172                 /** @var LoggerInterface $logger */
173                 $logger = $this->dice->create('$devLogger', ['dev']);
174
175                 self::assertInstanceOf(LoggerInterface::class, $logger);
176         }
177
178         public function testCache()
179         {
180                 /** @var ICache $cache */
181                 $cache = $this->dice->create(ICache::class);
182
183                 self::assertInstanceOf(ICache::class, $cache);
184         }
185
186         public function testMemoryCache()
187         {
188                 /** @var IMemoryCache $cache */
189                 $cache = $this->dice->create(IMemoryCache::class);
190
191                 // We need to check "just" ICache, because the default Cache is DB-Cache, which isn't a memorycache
192                 self::assertInstanceOf(ICache::class, $cache);
193         }
194
195         public function testLock()
196         {
197                 /** @var ILock $cache */
198                 $lock = $this->dice->create(ILock::class);
199
200                 self::assertInstanceOf(ILock::class, $lock);
201         }
202 }