]> git.mxchange.org Git - friendica.git/commitdiff
Move DirectMessages/Sent tests
authorPhilipp <admin@philipp.info>
Thu, 30 Dec 2021 19:16:48 +0000 (20:16 +0100)
committerPhilipp <admin@philipp.info>
Thu, 30 Dec 2021 19:16:48 +0000 (20:16 +0100)
tests/legacy/ApiTest.php
tests/src/Module/Api/Twitter/DirectMessages/SentTest.php [new file with mode: 0644]

index c4b6c373fe96f6e17f47176f8ce78ce53a40f25c..743af75e0a8d489f20018b17bb9b0ec4a6c74b3c 100644 (file)
@@ -1215,60 +1215,7 @@ class ApiTest extends FixtureTest
                //self::assertArrayHasKey('direct_message', $result);
        }
 
-       /**
-        * Test the api_direct_messages_box() function.
-        *
-        * @return void
-        */
-       public function testApiDirectMessagesBoxWithVerbose()
-       {
-               /*
-               $result = api_direct_messages_box('json', 'sentbox', 'true');
-               self::assertEquals(
-                       [
-                               '$result' => [
-                                       'result'  => 'error',
-                                       'message' => 'no mails available'
-                               ]
-                       ],
-                       $result
-               );
-               */
-       }
 
-       /**
-        * Test the api_direct_messages_box() function with a RSS result.
-        *
-        * @return void
-        */
-       public function testApiDirectMessagesBoxWithRss()
-       {
-               //$result = api_direct_messages_box('rss', 'sentbox', 'false');
-               //self::assertXml($result, 'direct-messages');
-       }
-
-       /**
-        * Test the api_direct_messages_box() function without an authenticated user.
-        *
-        * @return void
-        */
-       public function testApiDirectMessagesBoxWithUnallowedUser()
-       {
-               //$this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
-               //BasicAuth::setCurrentUserID();
-               //api_direct_messages_box('json', 'sentbox', 'false');
-       }
-
-       /**
-        * Test the api_direct_messages_sentbox() function.
-        *
-        * @return void
-        */
-       public function testApiDirectMessagesSentbox()
-       {
-               //$result = api_direct_messages_sentbox('json');
-               //self::assertArrayHasKey('direct_message', $result);
-       }
 
        /**
         * Test the api_direct_messages_conversation() function.
diff --git a/tests/src/Module/Api/Twitter/DirectMessages/SentTest.php b/tests/src/Module/Api/Twitter/DirectMessages/SentTest.php
new file mode 100644 (file)
index 0000000..3343716
--- /dev/null
@@ -0,0 +1,61 @@
+<?php
+
+namespace Friendica\Test\src\Module\Api\Twitter\DirectMessages;
+
+use Friendica\App\Router;
+use Friendica\DI;
+use Friendica\Factory\Api\Twitter\DirectMessage;
+use Friendica\Module\Api\Twitter\DirectMessages\Sent;
+use Friendica\Test\src\Module\Api\ApiTest;
+
+class SentTest extends ApiTest
+{
+       /**
+        * Test the api_direct_messages_box() function.
+        *
+        * @return void
+        */
+       public function testApiDirectMessagesBoxWithVerbose()
+       {
+               $directMessage = new DirectMessage(DI::logger(), DI::dba(), DI::twitterUser());
+
+               $sent     = new Sent($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET], ['extension' => 'json']);
+               $response = $sent->run([
+                       'friendica_verbose' => true,
+               ]);
+
+               $json = $this->toJson($response);
+
+               self::assertEquals('error', $json->result);
+               self::assertEquals('no mails available', $json->message);
+       }
+
+       /**
+        * Test the api_direct_messages_box() function with a RSS result.
+        *
+        * @return void
+        */
+       public function testApiDirectMessagesBoxWithRss()
+       {
+               $directMessage = new DirectMessage(DI::logger(), DI::dba(), DI::twitterUser());
+
+               $sent     = new Sent($directMessage, DI::dba(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET], ['extension' => 'rss']);
+               $response = $sent->run();
+
+               self::assertXml((string)$response->getBody(), 'direct-messages');
+       }
+
+       /**
+        * Test the api_direct_messages_box() function without an authenticated user.
+        *
+        * @return void
+        */
+       public function testApiDirectMessagesBoxWithUnallowedUser()
+       {
+               self::markTestIncomplete('Needs BasicAuth as dynamic method for overriding first');
+
+               //$this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
+               //BasicAuth::setCurrentUserID();
+               //api_direct_messages_box('json', 'sentbox', 'false');
+       }
+}