2021-11-27 18:50:52 +00:00
|
|
|
<?php
|
2022-01-06 23:30:59 +00:00
|
|
|
/**
|
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
|
|
|
*
|
|
|
|
* @license GNU AGPL version 3 or any later version
|
|
|
|
*
|
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
*/
|
2021-11-27 18:50:52 +00:00
|
|
|
|
|
|
|
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-12-26 20:17:32 +00:00
|
|
|
->run($this->httpExceptionMock);
|
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-12-26 20:17:32 +00:00
|
|
|
->run($this->httpExceptionMock, [
|
2022-01-02 00:04:04 +00:00
|
|
|
'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
|
|
|
}
|
|
|
|
}
|