mirror of
https://github.com/friendica/friendica
synced 2025-04-21 14:30:12 +00:00
88 lines
2.5 KiB
PHP
88 lines
2.5 KiB
PHP
<?php
|
|
|
|
namespace Friendica\Test\src\Module\Api\Twitter\Statuses;
|
|
|
|
use Friendica\App\Router;
|
|
use Friendica\Capabilities\ICanCreateResponses;
|
|
use Friendica\DI;
|
|
use Friendica\Module\Api\Twitter\Statuses\NetworkPublicTimeline;
|
|
use Friendica\Test\src\Module\Api\ApiTest;
|
|
|
|
class NetworkPublicTimelineTest extends ApiTest
|
|
{
|
|
/**
|
|
* Test the api_statuses_networkpublic_timeline() function.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testApiStatusesNetworkpublicTimeline()
|
|
{
|
|
$response = (new NetworkPublicTimeline(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET]))
|
|
->run([
|
|
'max_id' => 10
|
|
]);
|
|
|
|
$json = $this->toJson($response);
|
|
|
|
self::assertIsArray($json);
|
|
self::assertNotEmpty($json);
|
|
foreach ($json as $status) {
|
|
self::assertIsString($status->text);
|
|
self::assertIsInt($status->id);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test the api_statuses_networkpublic_timeline() function with a negative page parameter.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testApiStatusesNetworkpublicTimelineWithNegativePage()
|
|
{
|
|
$response = (new NetworkPublicTimeline(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET]))
|
|
->run([
|
|
'page' => -2
|
|
]);
|
|
|
|
$json = $this->toJson($response);
|
|
|
|
self::assertIsArray($json);
|
|
self::assertNotEmpty($json);
|
|
foreach ($json as $status) {
|
|
self::assertIsString($status->text);
|
|
self::assertIsInt($status->id);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Test the api_statuses_networkpublic_timeline() function with an unallowed user.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testApiStatusesNetworkpublicTimelineWithUnallowedUser()
|
|
{
|
|
self::markTestIncomplete('Needs BasicAuth as dynamic method for overriding first');
|
|
|
|
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
|
|
// BasicAuth::setCurrentUserID();
|
|
// api_statuses_networkpublic_timeline('json');
|
|
}
|
|
|
|
/**
|
|
* Test the api_statuses_networkpublic_timeline() function with an RSS result.
|
|
*
|
|
* @return void
|
|
*/
|
|
public function testApiStatusesNetworkpublicTimelineWithRss()
|
|
{
|
|
$response = (new NetworkPublicTimeline(DI::app(), DI::l10n(), DI::baseUrl(), DI::args(), DI::logger(), DI::profiler(), DI::apiResponse(), ['REQUEST_METHOD' => Router::GET], [
|
|
'extension' => ICanCreateResponses::TYPE_RSS
|
|
]))->run([
|
|
'page' => -2
|
|
]);
|
|
|
|
self::assertEquals(ICanCreateResponses::TYPE_RSS, $response->getHeaderLine(ICanCreateResponses::X_HEADER));
|
|
|
|
self::assertXml((string)$response->getBody(), 'statuses');
|
|
}
|
|
}
|