]> git.mxchange.org Git - friendica.git/commitdiff
Remove deprectated mediap tests
authorPhilipp <admin@philipp.info>
Thu, 30 Dec 2021 20:57:55 +0000 (21:57 +0100)
committerPhilipp <admin@philipp.info>
Thu, 30 Dec 2021 20:57:55 +0000 (21:57 +0100)
tests/legacy/ApiTest.php

index fa1afbe6edc90b6c39ae01b7e4d1884007f7f648..955a25235a653e58a39b0472de838e71bbbf691e 100644 (file)
@@ -638,49 +638,6 @@ class ApiTest extends FixtureTest
                );
        }
 
-       /**
-        * Test the api_statuses_mediap() function.
-        *
-        * @return void
-        */
-       public function testApiStatusesMediap()
-       {
-               /*
-               DI::args()->setArgc(2);
-
-               $_FILES         = [
-                       'media' => [
-                               'id'       => 666,
-                               'size'     => 666,
-                               'width'    => 666,
-                               'height'   => 666,
-                               'tmp_name' => $this->getTempImage(),
-                               'name'     => 'spacer.png',
-                               'type'     => 'image/png'
-                       ]
-               ];
-               $_GET['status'] = '<b>Status content</b>';
-
-               $result = api_statuses_mediap('json');
-               self::assertStatus($result['status']);
-               */
-       }
-
-       /**
-        * Test the api_statuses_mediap() function without an authenticated user.
-        *
-        * @return void
-        */
-       public function testApiStatusesMediapWithoutAuthenticatedUser()
-       {
-               // $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
-               // BasicAuth::setCurrentUserID();
-               // $_SESSION['authenticated'] = false;
-               // api_statuses_mediap('json');
-       }
-
-
-
        /**
         * Test the api_get_entitities() function.
         *