2021-11-27 18:50:52 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Test\src\Module\Api\Twitter\Users;
|
|
|
|
|
2021-12-09 20:32:17 +00:00
|
|
|
use Friendica\App\Router;
|
|
|
|
use Friendica\DI;
|
|
|
|
use Friendica\Module\Api\Twitter\Users\Lookup;
|
|
|
|
use Friendica\Network\HTTPException\NotFoundException;
|
2021-11-27 18:50:52 +00:00
|
|
|
use Friendica\Test\src\Module\Api\ApiTest;
|
|
|
|
|
|
|
|
class LookupTest extends ApiTest
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Test the api_users_lookup() function.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testApiUsersLookup()
|
|
|
|
{
|
2021-12-09 20:32:17 +00:00
|
|
|
$this->expectException(NotFoundException::class);
|
|
|
|
|
2022-01-02 21:51:16 +00:00
|
|
|
(new Lookup(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
2022-01-02 00:04:04 +00:00
|
|
|
->run();
|
2021-11-27 18:50:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test the api_users_lookup() function with an user ID.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function testApiUsersLookupWithUserId()
|
|
|
|
{
|
2022-01-02 21:51:16 +00:00
|
|
|
$respone = (new Lookup(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
2022-01-02 00:04:04 +00:00
|
|
|
->run([
|
|
|
|
'user_id' => static::OTHER_USER['id']
|
|
|
|
]);
|
2021-12-09 20:32:17 +00:00
|
|
|
|
|
|
|
$json = $this->toJson($respone);
|
|
|
|
|
|
|
|
self::assertOtherUser($json[0]);
|
2021-11-27 18:50:52 +00:00
|
|
|
}
|
|
|
|
}
|