3 namespace Tests\Wallabag\UserBundle\Controller
;
5 use Tests\Wallabag\CoreBundle\WallabagCoreTestCase
;
7 class ManageControllerTest
extends WallabagCoreTestCase
9 public function testLogin()
11 $client = $this->getClient();
13 $client->request('GET', '/users/list');
15 $this->assertSame(302, $client->getResponse()->getStatusCode());
16 $this->assertContains('login', $client->getResponse()->headers
->get('location'));
19 public function testCompleteScenario()
21 $this->logInAs('admin');
22 $client = $this->getClient();
24 // Create a new user in the database
25 $crawler = $client->request('GET', '/users/list');
26 $this->assertSame(200, $client->getResponse()->getStatusCode(), 'Unexpected HTTP status code for GET /users/');
27 $crawler = $client->click($crawler->selectLink('user.list.create_new_one')->link());
29 // Fill in the form and submit it
30 $form = $crawler->selectButton('user.form.save')->form([
31 'new_user[username]' => 'test_user',
32 'new_user[email]' => 'test@test.io',
33 'new_user[plainPassword][first]' => 'testtest',
34 'new_user[plainPassword][second]' => 'testtest',
37 $client->submit($form);
38 $client->followRedirect();
39 $crawler = $client->request('GET', '/users/list');
41 // Check data in the show view
42 $this->assertGreaterThan(0, $crawler->filter('td:contains("test_user")')->count(), 'Missing element td:contains("test_user")');
45 $crawler = $client->click($crawler->selectLink('user.list.edit_action')->last()->link());
47 $form = $crawler->selectButton('user.form.save')->form([
48 'user[name]' => 'Foo User',
49 'user[username]' => 'test_user',
50 'user[email]' => 'test@test.io',
51 'user[enabled]' => true,
54 $client->submit($form);
55 $crawler = $client->followRedirect();
57 // Check the element contains an attribute with value equals "Foo User"
58 $this->assertGreaterThan(0, $crawler->filter('[value="Foo User"]')->count(), 'Missing element [value="Foo User"]');
60 $crawler = $client->request('GET', '/users/list');
61 $crawler = $client->click($crawler->selectLink('user.list.edit_action')->last()->link());
64 $client->submit($crawler->selectButton('user.form.delete')->form());
65 $crawler = $client->followRedirect();
67 // Check the user has been delete on the list
68 $this->assertNotRegExp('/Foo User/', $client->getResponse()->getContent());
71 public function testDeleteDisabledForLoggedUser()
73 $this->logInAs('admin');
74 $client = $this->getClient();
76 $crawler = $client->request('GET', '/users/' . $this->getLoggedInUserId() . '/edit');
77 $disabled = $crawler->selectButton('user.form.delete')->extract('disabled');
79 $this->assertSame('disabled', $disabled[0]);
82 public function testUserSearch()
84 $this->logInAs('admin');
85 $client = $this->getClient();
87 // Search on unread list
88 $crawler = $client->request('GET', '/users/list');
90 $form = $crawler->filter('form[name=search_users]')->form();
92 'search_user[term]' => 'admin',
95 $crawler = $client->submit($form, $data);
97 $this->assertCount(2, $crawler->filter('tr')); // 1 result + table header