diff options
Diffstat (limited to 'tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php')
-rw-r--r-- | tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php index 101c20eb..9b5760bc 100644 --- a/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php +++ b/tests/Wallabag/ApiBundle/Controller/WallabagRestControllerTest.php | |||
@@ -684,4 +684,26 @@ class WallabagRestControllerTest extends WallabagApiTestCase | |||
684 | 684 | ||
685 | $this->assertEquals(true, $content['is_starred']); | 685 | $this->assertEquals(true, $content['is_starred']); |
686 | } | 686 | } |
687 | |||
688 | public function testGetEntriesExists() | ||
689 | { | ||
690 | $this->client->request('GET', '/api/entries/exists?url=http://0.0.0.0/entry2'); | ||
691 | |||
692 | $this->assertEquals(200, $this->client->getResponse()->getStatusCode()); | ||
693 | |||
694 | $content = json_decode($this->client->getResponse()->getContent(), true); | ||
695 | |||
696 | $this->assertEquals(true, $content['exists']); | ||
697 | } | ||
698 | |||
699 | public function testGetEntriesExistsWhichDoesNotExists() | ||
700 | { | ||
701 | $this->client->request('GET', '/api/entries/exists?url=http://google.com/entry2'); | ||
702 | |||
703 | $this->assertEquals(200, $this->client->getResponse()->getStatusCode()); | ||
704 | |||
705 | $content = json_decode($this->client->getResponse()->getContent(), true); | ||
706 | |||
707 | $this->assertEquals(false, $content['exists']); | ||
708 | } | ||
687 | } | 709 | } |