2021-11-27 19:50:52 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Test\src\Module\Api\Twitter\Friends;
|
|
|
|
|
2021-12-04 23:29:29 +01:00
|
|
|
use Friendica\App\Router;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Module\Api\Twitter\Friends\Lists;
|
2021-11-27 19:50:52 +01:00
|
|
|
use Friendica\Test\src\Module\Api\ApiTest;
|
|
|
|
|
|
|
|
class ListsTest extends ApiTest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Test the api_statuses_f() function.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testApiStatusesFWithFriends()
|
|
|
|
{
|
2021-12-04 23:29:29 +01:00
|
|
|
$lists = new Lists(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET]);
|
|
|
|
$response = $lists->run();
|
|
|
|
|
2021-12-09 20:53:29 +01:00
|
|
|
$json = $this->toJson($response);
|
2021-12-04 23:29:29 +01:00
|
|
|
|
|
|
|
self::assertIsArray($json->users);
|
2021-11-27 19:50:52 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the api_statuses_f() function an undefined cursor GET variable.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testApiStatusesFWithUndefinedCursor()
|
|
|
|
{
|
2021-12-04 23:29:29 +01:00
|
|
|
self::markTestIncomplete('Needs refactoring of Lists - replace filter_input() with $request parameter checks');
|
2021-11-27 19:50:52 +01:00
|
|
|
|
|
|
|
// $_GET['cursor'] = 'undefined';
|
2021-12-04 23:29:29 +01:00
|
|
|
// self::assertFalse(api_statuses_f('friends'));
|
2021-11-27 19:50:52 +01:00
|
|
|
}
|
|
|
|
}
|