mirror of
https://github.com/friendica/friendica
synced 2025-04-24 00:30:11 +00:00
Reenable Twitter/Retweet tests
This commit is contained in:
parent
d9949610c5
commit
631b9a84fc
3 changed files with 71 additions and 42 deletions
70
tests/src/Module/Api/Twitter/Statuses/RetweetTest.php
Normal file
70
tests/src/Module/Api/Twitter/Statuses/RetweetTest.php
Normal file
|
@ -0,0 +1,70 @@
|
|||
<?php
|
||||
|
||||
namespace Friendica\Test\src\Module\Api\Twitter\Statuses;
|
||||
|
||||
use Friendica\App\Router;
|
||||
use Friendica\DI;
|
||||
use Friendica\Module\Api\Twitter\Statuses\Retweet;
|
||||
use Friendica\Network\HTTPException\BadRequestException;
|
||||
use Friendica\Test\src\Module\Api\ApiTest;
|
||||
|
||||
class RetweetTest extends ApiTest
|
||||
{
|
||||
/**
|
||||
* Test the api_statuses_repeat() function.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesRepeat()
|
||||
{
|
||||
$this->expectException(BadRequestException::class);
|
||||
|
||||
$retweet = new Retweet(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]);
|
||||
$retweet->run();
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_repeat() function without an authenticated user.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesRepeatWithoutAuthenticatedUser()
|
||||
{
|
||||
self::markTestIncomplete('Needs BasicAuth as dynamic method for overriding first');
|
||||
|
||||
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
||||
// BasicAuth::setCurrentUserID();
|
||||
// $_SESSION['authenticated'] = false;
|
||||
// api_statuses_repeat('json');
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_repeat() function with an ID.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesRepeatWithId()
|
||||
{
|
||||
$retweet = new Retweet(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]);
|
||||
$response = $retweet->run(['id' => 1]);
|
||||
|
||||
$json = $this->toJson($response);
|
||||
|
||||
self::assertStatus($json);
|
||||
}
|
||||
|
||||
/**
|
||||
* Test the api_statuses_repeat() function with an shared ID.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function testApiStatusesRepeatWithSharedId()
|
||||
{
|
||||
$retweet = new Retweet(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::POST]);
|
||||
$response = $retweet->run(['id' => 5]);
|
||||
|
||||
$json = $this->toJson($response);
|
||||
|
||||
self::assertStatus($json);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue