mirror of
https://github.com/friendica/friendica
synced 2025-04-23 23:10:10 +00:00
Move all (inactive) API endpoint specific tests to new structure
This commit is contained in:
parent
5aad46c7fb
commit
6fc2eeaeaf
23 changed files with 1122 additions and 951 deletions
59
tests/src/Module/Api/Twitter/Statuses/MentionsTest.php
Normal file
59
tests/src/Module/Api/Twitter/Statuses/MentionsTest.php
Normal file
|
@ -0,0 +1,59 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Twitter\Statuses;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class MentionsTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_statuses_mentions() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesMentions()
|
||||
{
|
||||
/*
|
||||
$this->app->setLoggedInUserNickname($this->selfUser['nick']);
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$result = api_statuses_mentions('json');
|
||||
self::assertEmpty($result['status']);
|
||||
// We should test with mentions in the database.
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_mentions() function with a negative page parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesMentionsWithNegativePage()
|
||||
{
|
||||
// $_REQUEST['page'] = -2;
|
||||
// $result = api_statuses_mentions('json');
|
||||
// self::assertEmpty($result['status']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_mentions() function with an unallowed user.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesMentionsWithUnallowedUser()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||
// BasicAuth::setCurrentUserID();
|
||||
// api_statuses_mentions('json');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_mentions() function with an RSS result.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesMentionsWithRss()
|
||||
{
|
||||
// $result = api_statuses_mentions('rss');
|
||||
// self::assertXml($result, 'statuses');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue