wallabag/src/Wallabag/ApiBundle/Tests/Controller/WallabagRestControllerTest.php

314 lines
10 KiB
PHP
Raw Normal View History

2015-03-29 08:53:10 +00:00
<?php
2015-04-01 19:53:57 +00:00
namespace Wallabag\ApiBundle\Tests\Controller;
2015-03-29 08:53:10 +00:00
use Wallabag\ApiBundle\Tests\AbstractControllerTest;
2015-03-29 08:53:10 +00:00
class WallabagRestControllerTest extends AbstractControllerTest
2015-03-29 08:53:10 +00:00
{
protected static $salt;
public function testGetOneEntry()
{
$entry = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneBy(array('user' => 1, 'isArchived' => false));
if (!$entry) {
$this->markTestSkipped('No content found in db.');
}
$this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertEquals($entry->getTitle(), $content['title']);
$this->assertEquals($entry->getUrl(), $content['url']);
$this->assertCount(count($entry->getTags()), $content['tags']);
$this->assertTrue(
$this->client->getResponse()->headers->contains(
2015-03-29 08:53:10 +00:00
'Content-Type',
'application/json'
)
);
}
public function testGetOneEntryWrongUser()
{
$entry = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneBy(array('user' => 2, 'isArchived' => false));
if (!$entry) {
$this->markTestSkipped('No content found in db.');
}
$this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
2015-03-29 08:53:10 +00:00
$this->assertEquals(403, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
}
public function testGetEntries()
{
$this->client->request('GET', '/api/entries');
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertGreaterThanOrEqual(1, count($content));
$this->assertNotEmpty($content['_embedded']['items']);
$this->assertGreaterThanOrEqual(1, $content['total']);
$this->assertEquals(1, $content['page']);
$this->assertGreaterThanOrEqual(1, $content['pages']);
$this->assertTrue(
$this->client->getResponse()->headers->contains(
2015-03-29 08:53:10 +00:00
'Content-Type',
'application/json'
)
);
}
public function testGetStarredEntries()
{
$this->client->request('GET', '/api/entries', array('star' => 1, 'sort' => 'updated'));
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
$content = json_decode($this->client->getResponse()->getContent(), true);
$this->assertGreaterThanOrEqual(1, count($content));
$this->assertNotEmpty($content['_embedded']['items']);
$this->assertGreaterThanOrEqual(1, $content['total']);
$this->assertEquals(1, $content['page']);
$this->assertGreaterThanOrEqual(1, $content['pages']);
$this->assertTrue(
$this->client->getResponse()->headers->contains(
'Content-Type',
'application/json'
)
);
}
public function testGetArchiveEntries()
{
$this->client->request('GET', '/api/entries', array('archive' => 1));
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertGreaterThanOrEqual(1, count($content));
2015-04-01 19:53:57 +00:00
$this->assertNotEmpty($content['_embedded']['items']);
$this->assertGreaterThanOrEqual(1, $content['total']);
2015-03-29 08:53:10 +00:00
$this->assertEquals(1, $content['page']);
2015-04-01 19:53:57 +00:00
$this->assertGreaterThanOrEqual(1, $content['pages']);
2015-03-29 08:53:10 +00:00
$this->assertTrue(
$this->client->getResponse()->headers->contains(
2015-03-29 08:53:10 +00:00
'Content-Type',
'application/json'
)
);
}
public function testDeleteEntry()
{
$entry = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneByUser(1);
if (!$entry) {
$this->markTestSkipped('No content found in db.');
}
$this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertEquals($entry->getTitle(), $content['title']);
$this->assertEquals($entry->getUrl(), $content['url']);
// We'll try to delete this entry again
$this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
2015-03-29 08:53:10 +00:00
$this->assertEquals(404, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
}
public function testPostEntry()
{
$this->client->request('POST', '/api/entries.json', array(
2015-03-29 08:53:10 +00:00
'url' => 'http://www.lemonde.fr/pixels/article/2015/03/28/plongee-dans-l-univers-d-ingress-le-jeu-de-google-aux-frontieres-du-reel_4601155_4408996.html',
'tags' => 'google',
));
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertGreaterThan(0, $content['id']);
$this->assertEquals('http://www.lemonde.fr/pixels/article/2015/03/28/plongee-dans-l-univers-d-ingress-le-jeu-de-google-aux-frontieres-du-reel_4601155_4408996.html', $content['url']);
$this->assertEquals(false, $content['is_archived']);
$this->assertEquals(false, $content['is_starred']);
$this->assertCount(1, $content['tags']);
}
public function testPatchEntry()
{
$entry = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneByUser(1);
if (!$entry) {
$this->markTestSkipped('No content found in db.');
}
// hydrate the tags relations
$nbTags = count($entry->getTags());
$this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', array(
2015-03-29 08:53:10 +00:00
'title' => 'New awesome title',
'tags' => 'new tag '.uniqid(),
'star' => true,
'archive' => false,
));
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertEquals($entry->getId(), $content['id']);
$this->assertEquals($entry->getUrl(), $content['url']);
$this->assertEquals('New awesome title', $content['title']);
$this->assertGreaterThan($nbTags, count($content['tags']));
}
public function testGetTagsEntry()
{
$entry = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneWithTags(1);
$entry = $entry[0];
if (!$entry) {
$this->markTestSkipped('No content found in db.');
}
$tags = array();
foreach ($entry->getTags() as $tag) {
$tags[] = array('id' => $tag->getId(), 'label' => $tag->getLabel());
}
$this->client->request('GET', '/api/entries/'.$entry->getId().'/tags');
2015-03-29 08:53:10 +00:00
$this->assertEquals(json_encode($tags, JSON_HEX_QUOT), $this->client->getResponse()->getContent());
2015-03-29 08:53:10 +00:00
}
public function testPostTagsOnEntry()
{
$entry = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneByUser(1);
if (!$entry) {
$this->markTestSkipped('No content found in db.');
}
$nbTags = count($entry->getTags());
$newTags = 'tag1,tag2,tag3';
$this->client->request('POST', '/api/entries/'.$entry->getId().'/tags', array('tags' => $newTags));
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertArrayHasKey('tags', $content);
2015-05-30 11:52:26 +00:00
$this->assertEquals($nbTags + 3, count($content['tags']));
2015-03-29 08:53:10 +00:00
$entryDB = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->find($entry->getId());
$tagsInDB = array();
foreach ($entryDB->getTags()->toArray() as $tag) {
$tagsInDB[$tag->getId()] = $tag->getLabel();
}
foreach (explode(',', $newTags) as $tag) {
$this->assertContains($tag, $tagsInDB);
}
}
public function testDeleteOneTagEntry()
2015-03-29 08:53:10 +00:00
{
$entry = $this->client->getContainer()
2015-03-29 08:53:10 +00:00
->get('doctrine.orm.entity_manager')
->getRepository('WallabagCoreBundle:Entry')
->findOneWithTags(1);
$entry = $entry[0];
2015-03-29 08:53:10 +00:00
if (!$entry) {
$this->markTestSkipped('No content found in db.');
}
// hydrate the tags relations
$nbTags = count($entry->getTags());
$tag = $entry->getTags()[0];
$this->client->request('DELETE', '/api/entries/'.$entry->getId().'/tags/'.$tag->getId().'.json');
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertArrayHasKey('tags', $content);
2015-05-30 11:52:26 +00:00
$this->assertEquals($nbTags - 1, count($content['tags']));
2015-03-29 08:53:10 +00:00
}
public function testGetUserTags()
{
$this->client->request('GET', '/api/tags.json');
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertGreaterThan(0, $content);
$this->assertArrayHasKey('id', $content[0]);
$this->assertArrayHasKey('label', $content[0]);
return end($content);
}
/**
* @depends testGetUserTags
*/
public function testDeleteUserTag($tag)
{
$this->client->request('DELETE', '/api/tags/'.$tag['id'].'.json');
2015-03-29 08:53:10 +00:00
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
2015-03-29 08:53:10 +00:00
$content = json_decode($this->client->getResponse()->getContent(), true);
2015-03-29 08:53:10 +00:00
$this->assertArrayHasKey('label', $content);
$this->assertEquals($tag['label'], $content['label']);
}
}