mirror of
https://github.com/moparisthebest/wallabag
synced 2024-12-17 21:22:15 -05:00
[add] test for mark an entry as read
This commit is contained in:
parent
4e95dd45eb
commit
84315fd6fc
@ -76,6 +76,36 @@ class ApiTest extends PocheWebTestCase
|
||||
|
||||
}
|
||||
|
||||
public function testMarkAsRead()
|
||||
{
|
||||
|
||||
//Load some entries
|
||||
Fixtures::loadEntries($this->app['db']);
|
||||
|
||||
$client = $this->createClient();
|
||||
$crawler = $client->request(
|
||||
'GET',
|
||||
'/api/mark-read',
|
||||
array(),
|
||||
array(),
|
||||
array('CONTENT_TYPE' => 'application/json'),
|
||||
'{"id":"1"}'
|
||||
);
|
||||
|
||||
$this->assertEquals($client->getResponse()->getStatusCode(), 201);
|
||||
|
||||
// Assert that the "Content-Type" header is "application/json"
|
||||
$this->assertTrue(
|
||||
$client->getResponse()->headers->contains(
|
||||
'Content-Type',
|
||||
'application/json'
|
||||
)
|
||||
);
|
||||
|
||||
$this->assertEquals('true', $client->getResponse()->getContent());
|
||||
|
||||
}
|
||||
|
||||
public function testPostEntries()
|
||||
{
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user