aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
diff options
context:
space:
mode:
authorMaxime LECLERCQ <maxime.leclercq@smile.fr>2016-02-19 14:22:27 +0100
committerMaxime LECLERCQ <maxime.leclercq@smile.fr>2016-02-19 16:02:31 +0100
commit671a2b887f3215366e8acc05fcfa4e57264d3e69 (patch)
treeef8aa9b96b9d9fa73c4340948d583c201494c0cb /src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
parentfa64d861105bd0713acd7ac5d116353273524b4f (diff)
downloadwallabag-671a2b887f3215366e8acc05fcfa4e57264d3e69.tar.gz
wallabag-671a2b887f3215366e8acc05fcfa4e57264d3e69.tar.zst
wallabag-671a2b887f3215366e8acc05fcfa4e57264d3e69.zip
Fix #1551 - Redirect to the last page when current page is out of range
Diffstat (limited to 'src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php')
-rw-r--r--src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
index 32d6a575..5512d6e1 100644
--- a/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
+++ b/src/Wallabag/CoreBundle/Tests/Controller/EntryControllerTest.php
@@ -216,6 +216,17 @@ class EntryControllerTest extends WallabagCoreTestCase
216 $this->assertEquals(200, $client->getResponse()->getStatusCode()); 216 $this->assertEquals(200, $client->getResponse()->getStatusCode());
217 } 217 }
218 218
219 public function testRangeException()
220 {
221 $this->logInAs('admin');
222 $client = $this->getClient();
223
224 $client->request('GET', '/all/list/900');
225
226 $this->assertEquals(302, $client->getResponse()->getStatusCode());
227 $this->assertEquals('/all/list', $client->getResponse()->getTargetUrl());
228 }
229
219 /** 230 /**
220 * @depends testPostNewOk 231 * @depends testPostNewOk
221 */ 232 */