friendica/tests/src/Module/Api/Twitter/Account/UpdateProfileTest.php

50 lines
1.6 KiB
PHP
Raw Normal View History

2021-12-04 23:16:16 +01:00
<?php
2022-01-07 00:30:59 +01:00
/**
* @copyright Copyright (C) 2010-2024, the Friendica project
2022-01-07 00:30:59 +01:00
*
* @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-12-04 23:16:16 +01:00
namespace Friendica\Test\src\Module\Api\Twitter\Account;
use Friendica\App\Router;
use Friendica\DI;
use Friendica\Module\Api\Twitter\Account\UpdateProfile;
use Friendica\Test\src\Module\Api\ApiTest;
class UpdateProfileTest extends ApiTest
{
/**
* Test the api_account_update_profile() function.
*/
public function testApiAccountUpdateProfile()
{
$this->useHttpMethod(Router::POST);
$response = (new UpdateProfile(DI::mstdnError(), DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), [], ['extension' => 'json']))
2022-12-26 21:17:32 +01:00
->run($this->httpExceptionMock, [
'name' => 'new_name',
'description' => 'new_description'
]);
2021-12-04 23:16:16 +01:00
2021-12-09 20:53:29 +01:00
$json = $this->toJson($response);
2021-12-04 23:16:16 +01:00
self::assertEquals('new_name', $json->name);
self::assertEquals('new_description', $json->description);
}
}