*/
public function testApiStatusesHomeTimeline()
{
+ self::markTestIncomplete('Needs Home to not set header during call (like at BaseApi::setLinkHeader');
+
/*
$_REQUEST['max_id'] = 10;
$_REQUEST['exclude_replies'] = true;
*/
public function testApiStatusesHomeTimelineWithNegativePage()
{
+ self::markTestIncomplete('Needs Home to not set header during call (like at BaseApi::setLinkHeader');
+
/*
$_REQUEST['page'] = -2;
$result = api_statuses_home_timeline('json');
*/
public function testApiStatusesHomeTimelineWithUnallowedUser()
{
+ self::markTestIncomplete('Needs Home to not set header during call (like at BaseApi::setLinkHeader');
+
/*
$this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
BasicAuth::setCurrentUserID();
*/
public function testApiStatusesHomeTimelineWithRss()
{
+ self::markTestIncomplete('Needs Home to not set header during call (like at BaseApi::setLinkHeader');
+
// $result = api_statuses_home_timeline('rss');
// self::assertXml($result, 'statuses');
}
*/
public function testApiStatusesPublicTimeline()
{
+ self::markTestIncomplete('Needs PublicTimeline to not set header during call (like at BaseApi::setLinkHeader');
+
/*
$_REQUEST['max_id'] = 10;
$_REQUEST['conversation_id'] = 1;
*/
public function testApiStatusesPublicTimelineWithExcludeReplies()
{
+ self::markTestIncomplete('Needs PublicTimeline to not set header during call (like at BaseApi::setLinkHeader');
+
/*
$_REQUEST['max_id'] = 10;
$_REQUEST['exclude_replies'] = true;
*/
public function testApiStatusesPublicTimelineWithNegativePage()
{
+ self::markTestIncomplete('Needs PublicTimeline to not set header during call (like at BaseApi::setLinkHeader');
+
/*
$_REQUEST['page'] = -2;
$result = api_statuses_public_timeline('json');
*/
public function testApiStatusesPublicTimelineWithUnallowedUser()
{
+ self::markTestIncomplete('Needs PublicTimeline to not set header during call (like at BaseApi::setLinkHeader');
+
// $this->expectException(\Friendica\Network\HTTPException\UnauthorizedException::class);
// BasicAuth::setCurrentUserID();
// api_statuses_public_timeline('json');
*/
public function testApiStatusesPublicTimelineWithRss()
{
+ self::markTestIncomplete('Needs PublicTimeline to not set header during call (like at BaseApi::setLinkHeader');
+
// $result = api_statuses_public_timeline('rss');
// self::assertXml($result, 'statuses');
}