Файловый менеджер - Редактировать - /home/avadvi5/calendar.aeronextgen.com/davis/tests/Functional/UserControllerTest.php
Ðазад
<?php namespace App\Tests\Functional; use App\Security\AdminUser; use Symfony\Bundle\FrameworkBundle\Test\WebTestCase; class UserControllerTest extends WebTestCase { public function testUserIndex(): void { $user = new AdminUser('admin', 'test'); $client = static::createClient(); $client->loginUser($user); $client->request('GET', '/users/'); $this->assertResponseIsSuccessful(); $this->assertSelectorExists('nav.navbar'); $this->assertSelectorTextContains('h1', 'Users and Resources'); $this->assertSelectorTextContains('a.btn', '+ New User'); $this->assertSelectorTextContains('h5', 'Test User'); } public function testUserEdit(): void { $user = new AdminUser('admin', 'test'); $client = static::createClient(); $client->loginUser($user); $client->request('GET', '/users/edit/test_user'); $this->assertResponseIsSuccessful(); $this->assertSelectorTextContains('h1', 'Editing User «test_user»'); $this->assertSelectorTextContains('button#user_save', 'Save'); $client->submitForm('user_save'); $this->assertResponseRedirects('/users/'); $client->followRedirect(); $this->assertSelectorTextContains('h5', 'Test User'); } public function testUserNew(): void { $user = new AdminUser('admin', 'test'); $client = static::createClient(); $client->loginUser($user); $crawler = $client->request('GET', '/users/new'); $this->assertResponseIsSuccessful(); $this->assertSelectorTextContains('h1', 'New User'); $this->assertSelectorTextContains('button#user_save', 'Save'); $buttonCrawlerNode = $crawler->selectButton('user_save'); $form = $buttonCrawlerNode->form(); $client->submit($form, [ 'user[username]' => 'new_test_user', 'user[displayName]' => 'New test User', 'user[email]' => 'coucou@coucou.com', 'user[password][first]' => 'coucou', 'user[password][second]' => 'coucou', 'user[isAdmin]' => false, ]); $this->assertResponseRedirects('/users/'); $client->followRedirect(); $this->assertSelectorTextContains('h5', 'Test User'); $this->assertAnySelectorTextContains('h5', 'New test User'); } public function testUserDelete(): void { $user = new AdminUser('admin', 'test'); $client = static::createClient(); $client->loginUser($user); $client->request('GET', '/users/delete/test_user'); $this->assertResponseRedirects('/users/'); $client->followRedirect(); $this->assertSelectorTextContains('div#no-user', 'No users yet.'); } public function testUserDelegates(): void { $user = new AdminUser('admin', 'test'); $client = static::createClient(); $client->loginUser($user); $client->request('GET', '/users/delegates/test_user'); $this->assertResponseIsSuccessful(); $this->assertSelectorExists('nav.navbar'); $this->assertSelectorTextContains('h1', 'Delegates for Test User'); $this->assertSelectorTextContains('a.btn', '+ Add a delegate'); $this->assertAnySelectorTextContains('div', 'Delegation is enabled for this account.'); $this->assertAnySelectorTextContains('a.btn', 'Disable it'); $client->clickLink('Disable it'); $this->assertResponseRedirects('/users/delegates/test_user'); $client->followRedirect(); $this->assertSelectorExists('nav.navbar'); $this->assertSelectorTextContains('h1', 'Delegates for Test User'); $this->assertSelectorTextNotContains('a.btn', '+ Add a delegate'); $this->assertAnySelectorTextContains('div', 'Delegation is not enabled for this account.'); $this->assertAnySelectorTextContains('a.btn', 'Enable it'); } }
| ver. 1.1 | |
.
| PHP 8.3.30 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0 |
proxy
|
phpinfo
|
ÐаÑтройка