]> git.mxchange.org Git - friendica.git/blob - tests/src/Module/Api/ApiTest.php
Merge pull request #11042 from nupplaphil/feat/api-tests_2
[friendica.git] / tests / src / Module / Api / ApiTest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, 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\src\Module\Api;
23
24 use Friendica\App;
25 use Friendica\Core\Addon;
26 use Friendica\Core\Hook;
27 use Friendica\Database\Database;
28 use Friendica\DI;
29 use Friendica\Security\Authentication;
30 use Friendica\Test\FixtureTest;
31 use Friendica\Test\Util\AppDouble;
32 use Friendica\Test\Util\AuthenticationDouble;
33
34 abstract class ApiTest extends FixtureTest
35 {
36         /**
37          * Assert that the string is XML and contain the root element.
38          *
39          * @param string $result       XML string
40          * @param string $root_element Root element name
41          *
42          * @return void
43          */
44         protected function assertXml(string $result = '', string $root_element = '')
45         {
46                 self::assertStringStartsWith('<?xml version="1.0"?>', $result);
47                 self::assertStringContainsString('<' . $root_element, $result);
48                 // We could probably do more checks here.
49         }
50
51         protected function setUp(): void
52         {
53                 parent::setUp(); // TODO: Change the autogenerated stub
54
55                 $this->dice = $this->dice
56                         ->addRule(Authentication::class, ['instanceOf' => AuthenticationDouble::class, 'shared' => true])
57                         ->addRule(App::class, ['instanceOf' => AppDouble::class, 'shared' => true]);
58                 DI::init($this->dice);
59
60                 // Manual override to bypass API authentication
61                 DI::app()->setIsLoggedIn(true);
62
63                 $this->installAuthTest();
64         }
65
66         /**
67          * installs auththest.
68          *
69          * @throws \Exception
70          */
71         public function installAuthTest()
72         {
73                 $addon           = 'authtest';
74                 $addon_file_path = __DIR__ . '/../../../Util/authtest/authtest.php';
75                 $t               = @filemtime($addon_file_path);
76
77                 @include_once($addon_file_path);
78                 if (function_exists($addon . '_install')) {
79                         $func = $addon . '_install';
80                         $func(DI::app());
81                 }
82
83                 /** @var Database $dba */
84                 $dba = $this->dice->create(Database::class);
85
86                 $dba->insert('addon', [
87                         'name'         => $addon,
88                         'installed'    => true,
89                         'timestamp'    => $t,
90                         'plugin_admin' => function_exists($addon . '_addon_admin'),
91                         'hidden'       => file_exists('addon/' . $addon . '/.hidden')
92                 ]);
93
94                 Addon::loadAddons();
95                 Hook::loadHooks();
96         }
97 }