Reenable Twitter/Mentions tests

This commit is contained in:
Philipp 2021-12-09 21:07:47 +01:00
parent 4d330f2876
commit 6fb3fa5875
No known key found for this signature in database
GPG Key ID: 24A7501396EB5432

View File

@ -2,6 +2,10 @@
namespace Friendica\Test\src\Module\Api\Twitter\Statuses; namespace Friendica\Test\src\Module\Api\Twitter\Statuses;
use Friendica\App\Router;
use Friendica\Capabilities\ICanCreateResponses;
use Friendica\DI;
use Friendica\Module\Api\Twitter\Statuses\Mentions;
use Friendica\Test\src\Module\Api\ApiTest; use Friendica\Test\src\Module\Api\ApiTest;
class MentionsTest extends ApiTest class MentionsTest extends ApiTest
@ -13,13 +17,13 @@ class MentionsTest extends ApiTest
*/ */
public function testApiStatusesMentions() public function testApiStatusesMentions()
{ {
/* $mentions = new Mentions(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET]);
$this->app->setLoggedInUserNickname($this->selfUser['nick']); $response = $mentions->run(['max_id' => 10]);
$_REQUEST['max_id'] = 10;
$result = api_statuses_mentions('json'); $json = $this->toJson($response);
self::assertEmpty($result['status']);
self::assertEmpty($json);
// We should test with mentions in the database. // We should test with mentions in the database.
*/
} }
/** /**
@ -29,9 +33,13 @@ class MentionsTest extends ApiTest
*/ */
public function testApiStatusesMentionsWithNegativePage() public function testApiStatusesMentionsWithNegativePage()
{ {
// $_REQUEST['page'] = -2; $mentions = new Mentions(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET]);
// $result = api_statuses_mentions('json'); $response = $mentions->run(['page' => -2]);
// self::assertEmpty($result['status']);
$json = $this->toJson($response);
self::assertEmpty($json);
// We should test with mentions in the database.
} }
/** /**
@ -41,6 +49,8 @@ class MentionsTest extends ApiTest
*/ */
public function testApiStatusesMentionsWithUnallowedUser() public function testApiStatusesMentionsWithUnallowedUser()
{ {
self::markTestIncomplete('Needs BasicAuth as dynamic method for overriding first');
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class); // $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
// BasicAuth::setCurrentUserID(); // BasicAuth::setCurrentUserID();
// api_statuses_mentions('json'); // api_statuses_mentions('json');
@ -53,7 +63,11 @@ class MentionsTest extends ApiTest
*/ */
public function testApiStatusesMentionsWithRss() public function testApiStatusesMentionsWithRss()
{ {
// $result = api_statuses_mentions('rss'); $mentions = new Mentions(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET], ['extension' => ICanCreateResponses::TYPE_RSS]);
// self::assertXml($result, 'statuses'); $response = $mentions->run(['page' => -2]);
self::assertEquals(ICanCreateResponses::TYPE_RSS, $response->getHeaderLine(ICanCreateResponses::X_HEADER));
self::assertXml((string)$response->getBody(), 'statuses');
} }
} }