diff options
author | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-02-10 20:07:55 +0100 |
---|---|---|
committer | Nicolas LÅ“uillet <nicolas@loeuillet.org> | 2015-02-11 06:27:04 +0100 |
commit | f5deb024a2dd5a2cb27263a51f4653609407597e (patch) | |
tree | 83e2761fbbd64182bb9598148e2ee3835c039594 /src | |
parent | 68c6f1bd7fbf2f01730ee38b1291251494c80eb0 (diff) | |
download | wallabag-f5deb024a2dd5a2cb27263a51f4653609407597e.tar.gz wallabag-f5deb024a2dd5a2cb27263a51f4653609407597e.tar.zst wallabag-f5deb024a2dd5a2cb27263a51f4653609407597e.zip |
add test for api/salts
Diffstat (limited to 'src')
-rw-r--r-- | src/Wallabag/CoreBundle/Repository/EntryRepository.php | 1 | ||||
-rw-r--r-- | src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php | 15 |
2 files changed, 13 insertions, 3 deletions
diff --git a/src/Wallabag/CoreBundle/Repository/EntryRepository.php b/src/Wallabag/CoreBundle/Repository/EntryRepository.php index b6f86707..bedc90d2 100644 --- a/src/Wallabag/CoreBundle/Repository/EntryRepository.php +++ b/src/Wallabag/CoreBundle/Repository/EntryRepository.php | |||
@@ -2,7 +2,6 @@ | |||
2 | 2 | ||
3 | namespace Wallabag\CoreBundle\Repository; | 3 | namespace Wallabag\CoreBundle\Repository; |
4 | 4 | ||
5 | use Doctrine\ORM\Query; | ||
6 | use Doctrine\ORM\EntityRepository; | 5 | use Doctrine\ORM\EntityRepository; |
7 | use Doctrine\ORM\Tools\Pagination\Paginator; | 6 | use Doctrine\ORM\Tools\Pagination\Paginator; |
8 | 7 | ||
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php index 0949b92d..d9e6a161 100644 --- a/src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php +++ b/src/Wallabag/CoreBundle/Tests/Controller/WallabagRestControllerTest.php | |||
@@ -6,7 +6,18 @@ use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; | |||
6 | 6 | ||
7 | class WallabagRestControllerTest extends WebTestCase | 7 | class WallabagRestControllerTest extends WebTestCase |
8 | { | 8 | { |
9 | public function testEmptyGetEntries() { | 9 | public function testGetSalt() |
10 | { | ||
11 | $client = $this->createClient(); | ||
12 | $client->request('GET', '/api/salts/admin.json'); | ||
13 | $this->assertEquals(200, $client->getResponse()->getStatusCode()); | ||
14 | |||
15 | $client->request('GET', '/api/salts/notfound.json'); | ||
16 | $this->assertEquals(404, $client->getResponse()->getStatusCode()); | ||
17 | } | ||
18 | |||
19 | public function testEmptyGetEntries() | ||
20 | { | ||
10 | $client = $this->createClient(); | 21 | $client = $this->createClient(); |
11 | $client->request('GET', '/api/entries'); | 22 | $client->request('GET', '/api/entries'); |
12 | $this->assertTrue($client->getResponse()->isOk()); | 23 | $this->assertTrue($client->getResponse()->isOk()); |
@@ -19,4 +30,4 @@ class WallabagRestControllerTest extends WebTestCase | |||
19 | ); | 30 | ); |
20 | $this->assertEquals('[]', $client->getResponse()->getContent()); | 31 | $this->assertEquals('[]', $client->getResponse()->getContent()); |
21 | } | 32 | } |
22 | } \ No newline at end of file | 33 | } |