mirror of
https://git.sekbaer.de/Friendica/friendica.git
synced 2025-06-07 15:54:26 +02:00
71 lines
1.9 KiB
PHP
71 lines
1.9 KiB
PHP
<?php
|
|
|
|
// Copyright (C) 2010-2024, the Friendica project
|
|
// SPDX-FileCopyrightText: 2010-2024 the Friendica project
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
namespace Friendica\Test\src\Module\Api\Twitter\Statuses;
|
|
|
|
use Friendica\App\Router;
|
|
use Friendica\DI;
|
|
use Friendica\Module\Api\Twitter\Statuses\Destroy;
|
|
use Friendica\Network\HTTPException\BadRequestException;
|
|
use Friendica\Test\ApiTestCase;
|
|
|
|
class DestroyTest extends ApiTestCase
|
|
{
|
|
protected function setUp(): void
|
|
{
|
|
parent::setUp();
|
|
|
|
$this->useHttpMethod(Router::POST);
|
|
}
|
|
|
|
/**
|
|
* Test the api_statuses_destroy() function.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testApiStatusesDestroy()
|
|
{
|
|
$this->expectException(BadRequestException::class);
|
|
|
|
(new Destroy(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
|
->run($this->httpExceptionMock);
|
|
}
|
|
|
|
/**
|
|
* Test the api_statuses_destroy() function without an authenticated user.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testApiStatusesDestroyWithoutAuthenticatedUser()
|
|
{
|
|
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()
|
|
{
|
|
$response = (new Destroy(DI::mstdnError(), DI::appHelper(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), []))
|
|
->run($this->httpExceptionMock, [
|
|
'id' => 1
|
|
]);
|
|
|
|
$json = $this->toJson($response);
|
|
|
|
self::assertEquals(1, $json->id);
|
|
self::assertIsObject($json->user);
|
|
self::assertIsObject($json->friendica_author);
|
|
}
|
|
}
|