aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php')
-rw-r--r--tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
index 7929b63d..5faa0130 100644
--- a/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
+++ b/tests/Wallabag/CoreBundle/Controller/ConfigControllerTest.php
@@ -581,7 +581,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
581 $crawler = $client->request('GET', '/config'); 581 $crawler = $client->request('GET', '/config');
582 582
583 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); 583 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
584 $this->assertContains('config.form_user.delete_account', $body[0]); 584 $this->assertContains('config.form_user.delete.button', $body[0]);
585 585
586 $em = $client->getContainer()->get('doctrine.orm.entity_manager'); 586 $em = $client->getContainer()->get('doctrine.orm.entity_manager');
587 587
@@ -602,7 +602,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
602 $crawler = $client->request('GET', '/config'); 602 $crawler = $client->request('GET', '/config');
603 603
604 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text'])); 604 $this->assertGreaterThan(1, $body = $crawler->filter('body')->extract(['_text']));
605 $this->assertNotContains('config.form_user.delete_account', $body[0]); 605 $this->assertNotContains('config.form_user.delete.button', $body[0]);
606 606
607 $client->request('GET', '/account/delete'); 607 $client->request('GET', '/account/delete');
608 $this->assertEquals(403, $client->getResponse()->getStatusCode()); 608 $this->assertEquals(403, $client->getResponse()->getStatusCode());
@@ -649,6 +649,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
649 $em->flush(); 649 $em->flush();
650 650
651 $this->logInAs('wallace'); 651 $this->logInAs('wallace');
652 $loggedInUserId = $this->getLoggedInUserId();
652 653
653 // create entry to check after user deletion 654 // create entry to check after user deletion
654 // that this entry is also deleted 655 // that this entry is also deleted
@@ -685,7 +686,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
685 $entries = $client->getContainer() 686 $entries = $client->getContainer()
686 ->get('doctrine.orm.entity_manager') 687 ->get('doctrine.orm.entity_manager')
687 ->getRepository('WallabagCoreBundle:Entry') 688 ->getRepository('WallabagCoreBundle:Entry')
688 ->findByUser($this->getLoggedInUserId()); 689 ->findByUser($loggedInUserId);
689 690
690 $this->assertEmpty($entries); 691 $this->assertEmpty($entries);
691 } 692 }