]> git.mxchange.org Git - friendica.git/blobdiff - tests/src/Module/Api/GnuSocial/Help/TestTest.php
Happy New Year 2023!
[friendica.git] / tests / src / Module / Api / GnuSocial / Help / TestTest.php
index 40d8e9750e1e79eea305ccd267d879aacb3edba4..1b7934a1969d7c0781944940eda9069f3fa6e9ec 100644 (file)
@@ -1,27 +1,56 @@
 <?php
+/**
+ * @copyright Copyright (C) 2010-2023, the Friendica project
+ *
+ * @license GNU AGPL version 3 or any later version
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Affero General Public License as
+ * published by the Free Software Foundation, either version 3 of the
+ * License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU Affero General Public License for more details.
+ *
+ * You should have received a copy of the GNU Affero General Public License
+ * along with this program.  If not, see <https://www.gnu.org/licenses/>.
+ *
+ */
 
 namespace Friendica\Test\src\Module\Api\GnuSocial\Help;
 
+use Friendica\Capabilities\ICanCreateResponses;
 use Friendica\DI;
 use Friendica\Module\Api\GNUSocial\Help\Test;
 use Friendica\Test\src\Module\Api\ApiTest;
-use Friendica\Test\Util\ApiResponseDouble;
 
 class TestTest extends ApiTest
 {
        public function testJson()
        {
-               $test = new Test(DI::l10n(), ['extension' => 'json']);
-               $test->rawContent();
+               $response = (new Test(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json']))
+                       ->run($this->httpExceptionMock);
 
-               self::assertEquals('"ok"', ApiResponseDouble::getOutput());
+               $json = $this->toJson($response);
+
+               self::assertEquals([
+                       'Content-type'                => ['application/json'],
+                       ICanCreateResponses::X_HEADER => ['json']
+               ], $response->getHeaders());
+               self::assertEquals('ok', $json);
        }
 
        public function testXml()
        {
-               $test = new Test(DI::l10n(), ['extension' => 'xml']);
-               $test->rawContent();
+               $response = (new Test(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'xml']))
+                       ->run($this->httpExceptionMock);
 
-               self::assertxml(ApiResponseDouble::getOutput(), 'ok');
+               self::assertEquals([
+                       'Content-type'                => ['text/xml'],
+                       ICanCreateResponses::X_HEADER => ['xml']
+               ], $response->getHeaders());
+               self::assertxml($response->getBody(), 'ok');
        }
 }