mirror of
https://github.com/wallabag/wallabag.git
synced 2025-08-06 17:41:01 +00:00
Move test files directly under tests/ directory
This commit is contained in:
parent
a37b385c23
commit
24da70e338
117 changed files with 4 additions and 4 deletions
99
tests/Controller/UserControllerTest.php
Normal file
99
tests/Controller/UserControllerTest.php
Normal file
|
@ -0,0 +1,99 @@
|
|||
<?php
|
||||
|
||||
namespace Tests\Wallabag\CoreBundle\Controller;
|
||||
|
||||
use Tests\Wallabag\CoreBundle\WallabagCoreTestCase;
|
||||
|
||||
class UserControllerTest extends WallabagCoreTestCase
|
||||
{
|
||||
public function testLogin()
|
||||
{
|
||||
$client = $this->getTestClient();
|
||||
|
||||
$client->request('GET', '/users/list');
|
||||
|
||||
$this->assertSame(302, $client->getResponse()->getStatusCode());
|
||||
$this->assertStringContainsString('login', $client->getResponse()->headers->get('location'));
|
||||
}
|
||||
|
||||
public function testCompleteScenario()
|
||||
{
|
||||
$this->logInAs('admin');
|
||||
$client = $this->getTestClient();
|
||||
|
||||
// Create a new user in the database
|
||||
$crawler = $client->request('GET', '/users/list');
|
||||
$this->assertSame(200, $client->getResponse()->getStatusCode(), 'Unexpected HTTP status code for GET /users/');
|
||||
$crawler = $client->click($crawler->selectLink('user.list.create_new_one')->link());
|
||||
|
||||
// Fill in the form and submit it
|
||||
$form = $crawler->selectButton('user.form.save')->form([
|
||||
'new_user[username]' => 'test_user',
|
||||
'new_user[email]' => 'test@test.io',
|
||||
'new_user[plainPassword][first]' => 'testtest',
|
||||
'new_user[plainPassword][second]' => 'testtest',
|
||||
]);
|
||||
|
||||
$client->submit($form);
|
||||
$client->followRedirect();
|
||||
$crawler = $client->request('GET', '/users/list');
|
||||
|
||||
// Check data in the show view
|
||||
$this->assertGreaterThan(0, $crawler->filter('td:contains("test_user")')->count(), 'Missing element td:contains("test_user")');
|
||||
|
||||
// Edit the user
|
||||
$crawler = $client->click($crawler->selectLink('user.list.edit_action')->last()->link());
|
||||
|
||||
$form = $crawler->selectButton('user.form.save')->form([
|
||||
'user[name]' => 'Foo User',
|
||||
'user[username]' => 'test_user',
|
||||
'user[email]' => 'test@test.io',
|
||||
'user[enabled]' => true,
|
||||
]);
|
||||
|
||||
$client->submit($form);
|
||||
$crawler = $client->followRedirect();
|
||||
|
||||
// Check the element contains an attribute with value equals "Foo User"
|
||||
$this->assertGreaterThan(0, $crawler->filter('[value="Foo User"]')->count(), 'Missing element [value="Foo User"]');
|
||||
|
||||
$crawler = $client->request('GET', '/users/list');
|
||||
$crawler = $client->click($crawler->selectLink('user.list.edit_action')->last()->link());
|
||||
|
||||
// Delete the user
|
||||
$client->submit($crawler->selectButton('user.form.delete')->form());
|
||||
$crawler = $client->followRedirect();
|
||||
|
||||
// Check the user has been delete on the list
|
||||
$this->assertDoesNotMatchRegularExpression('/Foo User/', $client->getResponse()->getContent());
|
||||
}
|
||||
|
||||
public function testDeleteDisabledForLoggedUser()
|
||||
{
|
||||
$this->logInAs('admin');
|
||||
$client = $this->getTestClient();
|
||||
|
||||
$crawler = $client->request('GET', '/users/' . $this->getLoggedInUserId() . '/edit');
|
||||
$disabled = $crawler->selectButton('user.form.delete')->extract(['disabled']);
|
||||
|
||||
$this->assertSame('disabled', $disabled[0]);
|
||||
}
|
||||
|
||||
public function testUserSearch()
|
||||
{
|
||||
$this->logInAs('admin');
|
||||
$client = $this->getTestClient();
|
||||
|
||||
// Search on unread list
|
||||
$crawler = $client->request('GET', '/users/list');
|
||||
|
||||
$form = $crawler->filter('form[name=search_users]')->form();
|
||||
$data = [
|
||||
'search_user[term]' => 'admin',
|
||||
];
|
||||
|
||||
$crawler = $client->submit($form, $data);
|
||||
|
||||
$this->assertCount(2, $crawler->filter('tr')); // 1 result + table header
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue