2015-03-29 08:53:10 +00:00
|
|
|
<?php
|
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
namespace Tests\Wallabag\ApiBundle\Controller;
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2016-06-01 19:27:35 +00:00
|
|
|
use Tests\Wallabag\ApiBundle\WallabagApiTestCase;
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-11-01 22:42:52 +00:00
|
|
|
class WallabagRestControllerTest extends WallabagApiTestCase
|
2015-03-29 08:53:10 +00:00
|
|
|
{
|
|
|
|
protected static $salt;
|
|
|
|
|
|
|
|
public function testGetOneEntry()
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$entry = $this->client->getContainer()
|
2015-03-29 08:53:10 +00:00
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-04-12 09:36:01 +00:00
|
|
|
->findOneBy(['user' => 1, 'isArchived' => false]);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
|
|
|
if (!$entry) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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']);
|
2016-03-15 18:31:31 +00:00
|
|
|
$this->assertEquals($entry->getUserName(), $content['user_name']);
|
|
|
|
$this->assertEquals($entry->getUserEmail(), $content['user_email']);
|
|
|
|
$this->assertEquals($entry->getUserId(), $content['user_id']);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
|
|
|
$this->assertTrue(
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->getResponse()->headers->contains(
|
2015-03-29 08:53:10 +00:00
|
|
|
'Content-Type',
|
|
|
|
'application/json'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetOneEntryWrongUser()
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$entry = $this->client->getContainer()
|
2015-03-29 08:53:10 +00:00
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2016-04-12 09:36:01 +00:00
|
|
|
->findOneBy(['user' => 2, 'isArchived' => false]);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
|
|
|
if (!$entry) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('GET', '/api/entries/'.$entry->getId().'.json');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(403, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetEntries()
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('GET', '/api/entries');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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(
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->getResponse()->headers->contains(
|
2015-03-29 08:53:10 +00:00
|
|
|
'Content-Type',
|
|
|
|
'application/json'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetStarredEntries()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('GET', '/api/entries', ['star' => 1, 'sort' => 'updated']);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-08-20 18:36:08 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
2015-08-20 18:36:08 +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(
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->getResponse()->headers->contains(
|
2015-08-20 18:36:08 +00:00
|
|
|
'Content-Type',
|
|
|
|
'application/json'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testGetArchiveEntries()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('GET', '/api/entries', ['archive' => 1]);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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(
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->getResponse()->headers->contains(
|
2015-03-29 08:53:10 +00:00
|
|
|
'Content-Type',
|
|
|
|
'application/json'
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testDeleteEntry()
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$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.');
|
|
|
|
}
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('DELETE', '/api/entries/'.$entry->getId().'.json');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(404, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testPostEntry()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('POST', '/api/entries.json', [
|
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',
|
2016-05-02 10:49:23 +00:00
|
|
|
'title' => 'New title for my article',
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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']);
|
2016-05-02 10:49:23 +00:00
|
|
|
$this->assertEquals('New title for my article', $content['title']);
|
2016-03-15 18:31:31 +00:00
|
|
|
$this->assertEquals(1, $content['user_id']);
|
2015-03-29 08:53:10 +00:00
|
|
|
$this->assertCount(1, $content['tags']);
|
|
|
|
}
|
|
|
|
|
2016-03-16 20:07:01 +00:00
|
|
|
public function testPostSameEntry()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('POST', '/api/entries.json', [
|
2016-03-16 20:07:01 +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',
|
|
|
|
'archive' => '1',
|
2016-03-27 15:09:33 +00:00
|
|
|
'tags' => 'google, apple',
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2016-03-16 20:07:01 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
|
|
|
$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(true, $content['is_archived']);
|
|
|
|
$this->assertEquals(false, $content['is_starred']);
|
2016-03-27 15:09:33 +00:00
|
|
|
$this->assertCount(2, $content['tags']);
|
2016-03-16 20:07:01 +00:00
|
|
|
}
|
|
|
|
|
2016-03-11 16:56:41 +00:00
|
|
|
public function testPostArchivedAndStarredEntry()
|
2016-02-08 21:00:38 +00:00
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('POST', '/api/entries.json', [
|
2016-02-08 21:00:38 +00:00
|
|
|
'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
|
2016-03-16 19:41:29 +00:00
|
|
|
'archive' => '1',
|
|
|
|
'starred' => '1',
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2016-02-08 21:00:38 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
|
|
|
$this->assertGreaterThan(0, $content['id']);
|
|
|
|
$this->assertEquals('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
|
|
|
|
$this->assertEquals(true, $content['is_archived']);
|
2016-03-11 16:56:41 +00:00
|
|
|
$this->assertEquals(true, $content['is_starred']);
|
2016-03-15 18:31:31 +00:00
|
|
|
$this->assertEquals(1, $content['user_id']);
|
2016-02-08 21:00:38 +00:00
|
|
|
}
|
|
|
|
|
2016-03-16 20:38:50 +00:00
|
|
|
public function testPostArchivedAndStarredEntryWithoutQuotes()
|
|
|
|
{
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('POST', '/api/entries.json', [
|
2016-03-16 20:38:50 +00:00
|
|
|
'url' => 'http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html',
|
|
|
|
'archive' => 0,
|
|
|
|
'starred' => 1,
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2016-03-16 20:38:50 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
|
|
|
$this->assertGreaterThan(0, $content['id']);
|
|
|
|
$this->assertEquals('http://www.lemonde.fr/idees/article/2016/02/08/preserver-la-liberte-d-expression-sur-les-reseaux-sociaux_4861503_3232.html', $content['url']);
|
|
|
|
$this->assertEquals(false, $content['is_archived']);
|
|
|
|
$this->assertEquals(true, $content['is_starred']);
|
|
|
|
}
|
|
|
|
|
2015-03-29 08:53:10 +00:00
|
|
|
public function testPatchEntry()
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$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());
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
|
2015-03-29 08:53:10 +00:00
|
|
|
'title' => 'New awesome title',
|
|
|
|
'tags' => 'new tag '.uniqid(),
|
2016-03-16 19:41:29 +00:00
|
|
|
'starred' => '1',
|
|
|
|
'archive' => '0',
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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']));
|
2016-03-15 18:31:31 +00:00
|
|
|
$this->assertEquals(1, $content['user_id']);
|
2015-03-29 08:53:10 +00:00
|
|
|
}
|
|
|
|
|
2016-03-16 20:38:50 +00:00
|
|
|
public function testPatchEntryWithoutQuotes()
|
|
|
|
{
|
|
|
|
$entry = $this->client->getContainer()
|
|
|
|
->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());
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
|
2016-03-16 20:38:50 +00:00
|
|
|
'title' => 'New awesome title',
|
|
|
|
'tags' => 'new tag '.uniqid(),
|
|
|
|
'starred' => 1,
|
|
|
|
'archive' => 0,
|
2016-04-12 09:36:01 +00:00
|
|
|
]);
|
2016-03-16 20:38:50 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
|
|
|
$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']));
|
|
|
|
}
|
|
|
|
|
2015-03-29 08:53:10 +00:00
|
|
|
public function testGetTagsEntry()
|
|
|
|
{
|
2015-09-29 12:31:52 +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];
|
|
|
|
|
|
|
|
if (!$entry) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$tags = [];
|
2015-03-29 08:53:10 +00:00
|
|
|
foreach ($entry->getTags() as $tag) {
|
2016-04-12 09:36:01 +00:00
|
|
|
$tags[] = ['id' => $tag->getId(), 'label' => $tag->getLabel(), 'slug' => $tag->getSlug()];
|
2015-03-29 08:53:10 +00:00
|
|
|
}
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('GET', '/api/entries/'.$entry->getId().'/tags');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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()
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$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';
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$this->client->request('POST', '/api/entries/'.$entry->getId().'/tags', ['tags' => $newTags]);
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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
|
|
|
|
2015-09-29 12:31:52 +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());
|
|
|
|
|
2016-04-12 09:36:01 +00:00
|
|
|
$tagsInDB = [];
|
2015-03-29 08:53:10 +00:00
|
|
|
foreach ($entryDB->getTags()->toArray() as $tag) {
|
|
|
|
$tagsInDB[$tag->getId()] = $tag->getLabel();
|
|
|
|
}
|
|
|
|
|
|
|
|
foreach (explode(',', $newTags) as $tag) {
|
|
|
|
$this->assertContains($tag, $tagsInDB);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
public function testDeleteOneTagEntry()
|
2015-03-29 08:53:10 +00:00
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$entry = $this->client->getContainer()
|
2015-03-29 08:53:10 +00:00
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
2015-09-29 12:31:52 +00:00
|
|
|
->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];
|
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('DELETE', '/api/entries/'.$entry->getId().'/tags/'.$tag->getId().'.json');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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()
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('GET', '/api/tags.json');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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)
|
|
|
|
{
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->client->request('DELETE', '/api/tags/'.$tag['id'].'.json');
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +00:00
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
2015-03-29 08:53:10 +00:00
|
|
|
|
2015-09-29 12:31:52 +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']);
|
2015-12-29 13:50:52 +00:00
|
|
|
$this->assertEquals($tag['slug'], $content['slug']);
|
2015-12-29 14:08:33 +00:00
|
|
|
|
|
|
|
$entries = $entry = $this->client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findAllByTagId($this->user->getId(), $tag['id']);
|
|
|
|
|
|
|
|
$this->assertCount(0, $entries);
|
2015-03-29 08:53:10 +00:00
|
|
|
}
|
2016-03-07 14:16:27 +00:00
|
|
|
|
2016-03-08 08:22:25 +00:00
|
|
|
public function testGetVersion()
|
|
|
|
{
|
|
|
|
$this->client->request('GET', '/api/version');
|
2016-03-07 14:16:27 +00:00
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
2016-03-08 08:22:25 +00:00
|
|
|
$this->assertEquals($this->client->getContainer()->getParameter('wallabag_core.version'), $content);
|
2016-03-07 14:16:27 +00:00
|
|
|
}
|
2016-05-18 10:37:07 +00:00
|
|
|
|
|
|
|
public function testSaveIsArchivedAfterPost()
|
|
|
|
{
|
|
|
|
$entry = $this->client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneBy(['user' => 1, 'isArchived' => true]);
|
|
|
|
|
|
|
|
if (!$entry) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->client->request('POST', '/api/entries.json', [
|
|
|
|
'url' => $entry->getUrl(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
2016-05-19 05:41:54 +00:00
|
|
|
$this->assertEquals(true, $content['is_archived']);
|
2016-05-18 10:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSaveIsStarredAfterPost()
|
|
|
|
{
|
|
|
|
$entry = $this->client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneBy(['user' => 1, 'isStarred' => true]);
|
|
|
|
|
|
|
|
if (!$entry) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->client->request('POST', '/api/entries.json', [
|
|
|
|
'url' => $entry->getUrl(),
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
2016-05-19 05:41:54 +00:00
|
|
|
$this->assertEquals(true, $content['is_starred']);
|
2016-05-18 10:37:07 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function testSaveIsArchivedAfterPatch()
|
|
|
|
{
|
|
|
|
$entry = $this->client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneBy(['user' => 1, 'isArchived' => true]);
|
|
|
|
|
|
|
|
if (!$entry) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
|
|
|
|
$this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
|
|
|
|
'title' => $entry->getTitle().'++',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
|
|
|
$this->assertEquals(true, $content['is_archived']);
|
|
|
|
}
|
|
|
|
|
|
|
|
public function testSaveIsStarredAfterPatch()
|
|
|
|
{
|
|
|
|
$entry = $this->client->getContainer()
|
|
|
|
->get('doctrine.orm.entity_manager')
|
|
|
|
->getRepository('WallabagCoreBundle:Entry')
|
|
|
|
->findOneBy(['user' => 1, 'isStarred' => true]);
|
|
|
|
|
|
|
|
if (!$entry) {
|
|
|
|
$this->markTestSkipped('No content found in db.');
|
|
|
|
}
|
|
|
|
$this->client->request('PATCH', '/api/entries/'.$entry->getId().'.json', [
|
|
|
|
'title' => $entry->getTitle().'++',
|
|
|
|
]);
|
|
|
|
|
|
|
|
$this->assertEquals(200, $this->client->getResponse()->getStatusCode());
|
|
|
|
|
|
|
|
$content = json_decode($this->client->getResponse()->getContent(), true);
|
|
|
|
|
2016-05-19 05:41:54 +00:00
|
|
|
$this->assertEquals(true, $content['is_starred']);
|
2016-05-18 10:37:07 +00:00
|
|
|
}
|
2015-03-29 08:53:10 +00:00
|
|
|
}
|