mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-12 10:04:26 +02: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
26
tests/src/Module/Api/Mastodon/Accounts/StatusesTest.php
Normal file
26
tests/src/Module/Api/Mastodon/Accounts/StatusesTest.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Mastodon\Accounts;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class StatusesTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_status_show() function.
|
||||
*/
|
||||
public function testApiStatusShowWithJson()
|
||||
{
|
||||
// $result = api_status_show('json', 1);
|
||||
// self::assertStatus($result['status']);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_status_show() function with an XML result.
|
||||
*/
|
||||
public function testApiStatusShowWithXml()
|
||||
{
|
||||
// $result = api_status_show('xml', 1);
|
||||
// self::assertXml($result, 'statuses');
|
||||
}
|
||||
}
|
|
@ -0,0 +1,31 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Mastodon\Accounts;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class VerifyCredentialsTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_account_verify_credentials() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiAccountVerifyCredentials()
|
||||
{
|
||||
// self::assertArrayHasKey('user', api_account_verify_credentials('json'));
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_account_verify_credentials() function without an authenticated user.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiAccountVerifyCredentialsWithoutAuthenticatedUser()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||
// BasicAuth::setCurrentUserID();
|
||||
// $_SESSION['authenticated'] = false;
|
||||
// api_account_verify_credentials('json');
|
||||
}
|
||||
}
|
50
tests/src/Module/Api/Mastodon/ConversationsTest.php
Normal file
50
tests/src/Module/Api/Mastodon/ConversationsTest.php
Normal file
|
@ -0,0 +1,50 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Mastodon;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class ConversationsTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_conversation_show() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiConversationShow()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\BadRequestException::class);
|
||||
// api_conversation_show('json');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_conversation_show() function with an ID.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiConversationShowWithId()
|
||||
{
|
||||
/*
|
||||
DI::args()->setArgv(['', '', '', 1]);
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$_REQUEST['page'] = -2;
|
||||
$result = api_conversation_show('json');
|
||||
self::assertNotEmpty($result['status']);
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_conversation_show() function with an unallowed user.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiConversationShowWithUnallowedUser()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||
// BasicAuth::setCurrentUserID();
|
||||
// api_conversation_show('json');
|
||||
}
|
||||
}
|
118
tests/src/Module/Api/Mastodon/SearchTest.php
Normal file
118
tests/src/Module/Api/Mastodon/SearchTest.php
Normal file
|
@ -0,0 +1,118 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Mastodon;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class SearchTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_search() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiSearch()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['q'] = 'reply';
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$result = api_search('json');
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
self::assertStringContainsStringIgnoringCase('reply', $status['text'], '', true);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_search() function a count parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiSearchWithCount()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['q'] = 'reply';
|
||||
$_REQUEST['count'] = 20;
|
||||
$result = api_search('json');
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
self::assertStringContainsStringIgnoringCase('reply', $status['text'], '', true);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_search() function with an rpp parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiSearchWithRpp()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['q'] = 'reply';
|
||||
$_REQUEST['rpp'] = 20;
|
||||
$result = api_search('json');
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
self::assertStringContainsStringIgnoringCase('reply', $status['text'], '', true);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_search() function with an q parameter contains hashtag.
|
||||
* @doesNotPerformAssertions
|
||||
*/
|
||||
public function testApiSearchWithHashtag()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['q'] = '%23friendica';
|
||||
$result = api_search('json');
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
self::assertStringContainsStringIgnoringCase('#friendica', $status['text'], '', true);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_search() function with an exclude_replies parameter.
|
||||
* @doesNotPerformAssertions
|
||||
*/
|
||||
public function testApiSearchWithExcludeReplies()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$_REQUEST['exclude_replies'] = true;
|
||||
$_REQUEST['q'] = 'friendica';
|
||||
$result = api_search('json');
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_search() function without an authenticated user.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiSearchWithUnallowedUser()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||
// BasicAuth::setCurrentUserID();
|
||||
// api_search('json');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_search() function without any GET query parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiSearchWithoutQuery()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\BadRequestException::class);
|
||||
// api_search('json');
|
||||
}
|
||||
}
|
71
tests/src/Module/Api/Mastodon/Timelines/HomeTest.php
Normal file
71
tests/src/Module/Api/Mastodon/Timelines/HomeTest.php
Normal file
|
@ -0,0 +1,71 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Mastodon\Timelines;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class HomeTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_statuses_home_timeline() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesHomeTimeline()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$_REQUEST['exclude_replies'] = true;
|
||||
$_REQUEST['conversation_id'] = 1;
|
||||
$result = api_statuses_home_timeline('json');
|
||||
self::assertNotEmpty($result['status']);
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_home_timeline() function with a negative page parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesHomeTimelineWithNegativePage()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['page'] = -2;
|
||||
$result = api_statuses_home_timeline('json');
|
||||
self::assertNotEmpty($result['status']);
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_home_timeline() with an unallowed user.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesHomeTimelineWithUnallowedUser()
|
||||
{
|
||||
/*
|
||||
$this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||
BasicAuth::setCurrentUserID();
|
||||
api_statuses_home_timeline('json');
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_home_timeline() function with an RSS result.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesHomeTimelineWithRss()
|
||||
{
|
||||
// $result = api_statuses_home_timeline('rss');
|
||||
// self::assertXml($result, 'statuses');
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -0,0 +1,84 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Mastodon\Timelines;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class PublicTimelineTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_statuses_public_timeline() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesPublicTimeline()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$_REQUEST['conversation_id'] = 1;
|
||||
$result = api_statuses_public_timeline('json');
|
||||
self::assertNotEmpty($result['status']);
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_public_timeline() function with the exclude_replies parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesPublicTimelineWithExcludeReplies()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['max_id'] = 10;
|
||||
$_REQUEST['exclude_replies'] = true;
|
||||
$result = api_statuses_public_timeline('json');
|
||||
self::assertNotEmpty($result['status']);
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_public_timeline() function with a negative page parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesPublicTimelineWithNegativePage()
|
||||
{
|
||||
/*
|
||||
$_REQUEST['page'] = -2;
|
||||
$result = api_statuses_public_timeline('json');
|
||||
self::assertNotEmpty($result['status']);
|
||||
foreach ($result['status'] as $status) {
|
||||
self::assertStatus($status);
|
||||
}
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_public_timeline() function with an unallowed user.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesPublicTimelineWithUnallowedUser()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||
// BasicAuth::setCurrentUserID();
|
||||
// api_statuses_public_timeline('json');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_public_timeline() function with an RSS result.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesPublicTimelineWithRss()
|
||||
{
|
||||
// $result = api_statuses_public_timeline('rss');
|
||||
// self::assertXml($result, 'statuses');
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue