Move all (inactive) API endpoint specific tests to new structure
This commit is contained in:
31
tests/src/Module/Api/Twitter/Users/LookupTest.php
Normal file
31
tests/src/Module/Api/Twitter/Users/LookupTest.php
Normal file
@@ -0,0 +1,31 @@
|
||||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Twitter\Users;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class LookupTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_users_lookup() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersLookup()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\NotFoundException::class);
|
||||
// api_users_lookup('json');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_users_lookup() function with an user ID.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersLookupWithUserId()
|
||||
{
|
||||
// $_REQUEST['user_id'] = $this->otherUser['id'];
|
||||
// $result = api_users_lookup('json');
|
||||
// self::assertOtherUser($result['users'][0]);
|
||||
}
|
||||
}
|
||||
43
tests/src/Module/Api/Twitter/Users/SearchTest.php
Normal file
43
tests/src/Module/Api/Twitter/Users/SearchTest.php
Normal file
@@ -0,0 +1,43 @@
|
||||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Twitter\Users;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class SearchTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_users_search() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersSearch()
|
||||
{
|
||||
// $_GET['q'] = 'othercontact';
|
||||
// $result = api_users_search('json');
|
||||
// self::assertOtherUser($result['users'][0]);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_users_search() function with an XML result.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersSearchWithXml()
|
||||
{
|
||||
// $_GET['q'] = 'othercontact';
|
||||
// $result = api_users_search('xml');
|
||||
// self::assertXml($result, 'users');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_users_search() function without a GET q parameter.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersSearchWithoutQuery()
|
||||
{
|
||||
// $this->expectException(\Friendica\Network\HTTPException\BadRequestException::class);
|
||||
// api_users_search('json');
|
||||
}
|
||||
}
|
||||
37
tests/src/Module/Api/Twitter/Users/ShowTest.php
Normal file
37
tests/src/Module/Api/Twitter/Users/ShowTest.php
Normal file
@@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Twitter\Users;
|
||||
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class ShowTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_users_show() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersShow()
|
||||
{
|
||||
/*
|
||||
$result = api_users_show('json');
|
||||
// We can't use assertSelfUser() here because the user object is missing some properties.
|
||||
self::assertEquals($this->selfUser['id'], $result['user']['cid']);
|
||||
self::assertEquals('DFRN', $result['user']['location']);
|
||||
self::assertEquals($this->selfUser['name'], $result['user']['name']);
|
||||
self::assertEquals($this->selfUser['nick'], $result['user']['screen_name']);
|
||||
self::assertTrue($result['user']['verified']);
|
||||
*/
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_users_show() function with an XML result.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiUsersShowWithXml()
|
||||
{
|
||||
// $result = api_users_show('xml');
|
||||
// self::assertXml($result, 'statuses');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user