friendica/tests/src/Module/Api/Twitter/Statuses/DestroyTest.php

58 lines
1.6 KiB
PHP
Raw Normal View History

<?php
namespace Friendica\Test\src\Module\Api\Twitter\Statuses;
2021-12-09 21:03:33 +01:00
use Friendica\App\Router;
use Friendica\DI;
use Friendica\Module\Api\Twitter\Statuses\Destroy;
use Friendica\Network\HTTPException\BadRequestException;
use Friendica\Test\src\Module\Api\ApiTest;
class DestroyTest extends ApiTest
{
/**
* Test the api_statuses_destroy() function.
*
* @return void
*/
public function testApiStatusesDestroy()
{
2021-12-09 21:03:33 +01:00
$this->expectException(BadRequestException::class);
$destroy = new Destroy(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]);
$destroy->run();
}
/**
* Test the api_statuses_destroy() function without an authenticated user.
*
* @return void
*/
public function testApiStatusesDestroyWithoutAuthenticatedUser()
{
2021-12-09 21:03:33 +01:00
self::markTestIncomplete('Needs BasicAuth as dynamic method for overriding first');
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
// BasicAuth::setCurrentUserID();
// $_SESSION['authenticated'] = false;
// api_statuses_destroy('json');
}
/**
* Test the api_statuses_destroy() function with an ID.
*
* @return void
*/
public function testApiStatusesDestroyWithId()
{
2021-12-09 21:03:33 +01:00
$destroy = new Destroy(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]);
$response = $destroy->run(['id' => 1]);
$json = $this->toJson($response);
self::assertEquals(1, $json->id);
self::assertIsObject($json->user);
self::assertIsObject($json->friendica_author);
}
}