2011-06-15 06:58:29 +02:00
|
|
|
<?php
|
|
|
|
require_once dirname(__FILE__) . '/../prepare.php';
|
|
|
|
require_once 'HTTP/Request2.php';
|
|
|
|
|
|
|
|
class www_rssTest extends TestBaseApi
|
|
|
|
{
|
|
|
|
protected $urlPart = 'rss.php';
|
|
|
|
|
|
|
|
/**
|
2011-06-27 19:39:38 +02:00
|
|
|
* A private bookmark should not show up in an rss feed if the
|
|
|
|
* user is not logged in nor passes the private key
|
2011-06-15 06:58:29 +02:00
|
|
|
*/
|
2011-06-27 19:39:38 +02:00
|
|
|
public function testPrivateNotLoggedIn()
|
2011-06-15 06:58:29 +02:00
|
|
|
{
|
2011-06-27 19:39:38 +02:00
|
|
|
list($uId, $username) = $this->addUserData();
|
|
|
|
$this->addBookmark(
|
|
|
|
$uId, null, SemanticScuttle_Model_Bookmark::SPRIVATE
|
2011-06-15 06:58:29 +02:00
|
|
|
);
|
|
|
|
|
2011-06-27 19:39:38 +02:00
|
|
|
$req = $this->getRequest('/' . $username);
|
|
|
|
$response_body = $req->send()->getBody();
|
2011-06-15 06:58:29 +02:00
|
|
|
|
|
|
|
$rss = simplexml_load_string($response_body);
|
|
|
|
$items = $rss->channel->item;
|
|
|
|
|
2011-06-27 19:39:38 +02:00
|
|
|
$this->assertEquals(0, count($items), 'I see a private bookmark');
|
2011-06-15 06:58:29 +02:00
|
|
|
}//end testNoRSSPrivateKeyEnabled
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test a user who has RSS private key setup
|
|
|
|
* with private bookmark.
|
|
|
|
*/
|
|
|
|
public function testRSSPrivateKeyEnabled()
|
|
|
|
{
|
2011-06-27 19:39:38 +02:00
|
|
|
list($uId, $username, $password, $privateKey) = $this->addUserData(
|
|
|
|
null, null, true
|
2011-06-15 06:58:29 +02:00
|
|
|
);
|
2011-06-27 19:39:38 +02:00
|
|
|
$this->addBookmark(
|
|
|
|
$uId, null, SemanticScuttle_Model_Bookmark::SPRIVATE,
|
|
|
|
null, 'private bookmark'
|
2011-06-15 06:58:29 +02:00
|
|
|
);
|
|
|
|
|
2011-06-27 19:39:38 +02:00
|
|
|
$req = $this->getRequest('/' . $username . '?privatekey=' . $privateKey);
|
|
|
|
$response_body = $req->send()->getBody();
|
2011-06-15 06:58:29 +02:00
|
|
|
|
|
|
|
$rss = simplexml_load_string($response_body);
|
|
|
|
$items = $rss->channel->item;
|
|
|
|
|
2011-06-27 19:39:38 +02:00
|
|
|
$this->assertEquals(1, count($items), 'I miss the private bookmark');
|
|
|
|
$this->assertEquals('private bookmark', (string)$items[0]->title);
|
2011-06-15 06:58:29 +02:00
|
|
|
}//end testRSSPrivateKeyEnabled
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}//end class www_rssTest
|
|
|
|
?>
|