123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\User\Controller\Adminhtml;
- use Magento\Framework\App\Request\Http as HttpRequest;
- use Magento\TestFramework\Bootstrap;
- /**
- * @magentoAppArea adminhtml
- */
- class UserTest extends \Magento\TestFramework\TestCase\AbstractBackendController
- {
- /**
- * Verify that the main user page contains the user grid
- */
- public function testIndexAction()
- {
- $this->dispatch('backend/admin/user/index');
- $response = $this->getResponse()->getBody();
- $this->assertContains('Users', $response);
- $this->assertEquals(
- 1,
- \Magento\TestFramework\Helper\Xpath::getElementsCountForXpath(
- '//*[@id="permissionsUserGrid_table"]',
- $response
- )
- );
- }
- /**
- * Verify that attempting to save a user when no data is present redirects back to the main user page
- */
- public function testSaveActionNoData()
- {
- $this->getRequest()->setMethod(HttpRequest::METHOD_POST);
- $this->dispatch('backend/admin/user/save');
- $this->assertRedirect($this->stringContains('backend/admin/user/index/'));
- }
- /**
- * Verify that a user cannot be saved if it no longer exists
- *
- * @magentoDataFixture Magento/User/_files/dummy_user.php
- */
- public function testSaveActionWrongId()
- {
- /** @var $user \Magento\User\Model\User */
- $user = \Magento\TestFramework\Helper\Bootstrap::getObjectManager()->create(
- \Magento\User\Model\User::class
- )->loadByUsername(
- 'dummy_username'
- );
- $userId = $user->getId();
- $this->assertNotEmpty($userId, 'Broken fixture');
- $user->delete();
- $this->getRequest()->setMethod(HttpRequest::METHOD_POST);
- $this->getRequest()->setPostValue('user_id', $userId);
- $this->dispatch('backend/admin/user/save');
- $this->assertSessionMessages(
- $this->equalTo(['This user no longer exists.']),
- \Magento\Framework\Message\MessageInterface::TYPE_ERROR
- );
- $this->assertRedirect($this->stringContains('backend/admin/user/index/'));
- }
- /**
- * Verify that users cannot be saved if the admin password is not correct
- *
- * @magentoDbIsolation enabled
- */
- public function testSaveActionMissingCurrentAdminPassword()
- {
- $fixture = uniqid();
- $this->getRequest()->setMethod(HttpRequest::METHOD_POST);
- $this->getRequest()->setPostValue(
- [
- 'username' => $fixture,
- 'email' => "{$fixture}@example.com",
- 'firstname' => 'First',
- 'lastname' => 'Last',
- 'password' => 'password_with_1_number',
- 'password_confirmation' => 'password_with_1_number',
- ]
- );
- $this->dispatch('backend/admin/user/save');
- $this->assertSessionMessages(
- $this->equalTo(
- ['The password entered for the current user is invalid. Verify the password and try again.']
- )
- );
- $this->assertRedirect($this->stringContains('backend/admin/user/edit'));
- }
- /**
- * Verify that users can be successfully saved when data is correct
- *
- * @magentoDbIsolation enabled
- */
- public function testSaveAction()
- {
- $fixture = uniqid();
- $this->getRequest()->setMethod(HttpRequest::METHOD_POST);
- $this->getRequest()->setPostValue(
- [
- 'username' => $fixture,
- 'email' => "{$fixture}@example.com",
- 'firstname' => 'First',
- 'lastname' => 'Last',
- 'password' => 'password_with_1_number',
- 'password_confirmation' => 'password_with_1_number',
- \Magento\User\Block\User\Edit\Tab\Main::CURRENT_USER_PASSWORD_FIELD => Bootstrap::ADMIN_PASSWORD,
- ]
- );
- $this->dispatch('backend/admin/user/save');
- $this->assertSessionMessages(
- $this->equalTo(['You saved the user.']),
- \Magento\Framework\Message\MessageInterface::TYPE_SUCCESS
- );
- $this->assertRedirect($this->stringContains('backend/admin/user/index/'));
- }
- /**
- * Verify that users with the same username or email as an existing user cannot be created
- *
- * @magentoDbIsolation enabled
- * @magentoDataFixture Magento/User/_files/user_with_role.php
- */
- public function testSaveActionDuplicateUser()
- {
- $this->getRequest()->setMethod(HttpRequest::METHOD_POST);
- $this->getRequest()->setPostValue(
- [
- 'username' => 'adminUser',
- 'email' => 'adminUser@example.com',
- 'firstname' => 'John',
- 'lastname' => 'Doe',
- 'password' => \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD,
- 'password_confirmation' => \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD,
- \Magento\User\Block\User\Edit\Tab\Main::CURRENT_USER_PASSWORD_FIELD => Bootstrap::ADMIN_PASSWORD,
- ]
- );
- $this->dispatch('backend/admin/user/save/active_tab/main_section');
- $this->assertSessionMessages(
- $this->equalTo(['A user with the same user name or email already exists.']),
- \Magento\Framework\Message\MessageInterface::TYPE_ERROR
- );
- $this->assertRedirect($this->stringContains('backend/admin/user/edit/'));
- $this->assertRedirect($this->matchesRegularExpression('/^((?!active_tab).)*$/'));
- }
- /**
- * Verify password change properly updates fields when the request is valid.
- *
- * @param array $postData
- * @param bool $isPasswordCorrect
- *
- * @magentoDbIsolation enabled
- * @dataProvider saveActionPasswordChangeDataProvider
- */
- public function testSaveActionPasswordChange($postData, $isPasswordCorrect)
- {
- $this->getRequest()->setMethod(HttpRequest::METHOD_POST);
- $this->getRequest()->setPostValue($postData);
- $this->dispatch('backend/admin/user/save');
- $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
- /** @var $user \Magento\User\Model\User */
- $user = $objectManager->create(\Magento\User\Model\User::class);
- $user->loadByUsername($postData['username']);
- if ($isPasswordCorrect) {
- $this->assertRedirect($this->stringContains('backend/admin/user/index'));
- $this->assertEquals($postData['username'], $user->getUsername());
- $this->assertEquals($postData['email'], $user->getEmail());
- $this->assertEquals($postData['firstname'], $user->getFirstname());
- $this->assertEquals($postData['lastname'], $user->getLastname());
- $encryptor = $objectManager->get(\Magento\Framework\Encryption\EncryptorInterface::class);
- $this->assertTrue($encryptor->validateHash($postData['password'], $user->getPassword()));
- } else {
- $this->assertRedirect($this->stringContains('backend/admin/user/edit'));
- $this->assertEmpty($user->getData());
- }
- }
- /**
- * Dataprovider for testSaveActionPasswordChange
- *
- * @return array
- */
- public function saveActionPasswordChangeDataProvider()
- {
- $password = uniqid('123q');
- $passwordPairs = [
- ['password' => $password, 'password_confirmation' => $password, 'is_correct' => true],
- ['password' => $password, 'password_confirmation' => '', 'is_correct' => false],
- ['password' => $password, 'password_confirmation' => $password . '123', 'is_correct' => false],
- ['password' => '', 'password_confirmation' => '', 'is_correct' => false],
- ['password' => '', 'password_confirmation' => $password, 'is_correct' => false],
- ];
- $data = [];
- foreach ($passwordPairs as $passwordPair) {
- $fixture = uniqid();
- $postData = [
- 'username' => $fixture,
- 'email' => "{$fixture}@example.com",
- 'firstname' => 'First',
- 'lastname' => 'Last',
- 'password' => $passwordPair['password'],
- 'password_confirmation' => $passwordPair['password_confirmation'],
- \Magento\User\Block\User\Edit\Tab\Main::CURRENT_USER_PASSWORD_FIELD => Bootstrap::ADMIN_PASSWORD,
- ];
- $data[] = [$postData, $passwordPair['is_correct']];
- }
- return $data;
- }
- /**
- * Verify that the role grid is present when requested
- */
- public function testRoleGridAction()
- {
- $this->getRequest()->setParam('ajax', true)->setParam('isAjax', true);
- $this->dispatch('backend/admin/user/roleGrid');
- $expected = '%a<table %a id="permissionsUserGrid_table">%a';
- $this->assertStringMatchesFormat($expected, $this->getResponse()->getBody());
- }
- /**
- * Verify that the roles grid is present when requested
- *
- * @depends testSaveAction
- */
- public function testRolesGridAction()
- {
- $this->getRequest()->setParam('ajax', true)->setParam('isAjax', true)->setParam('user_id', 1);
- $this->dispatch('backend/admin/user/rolesGrid');
- $expected = '%a<table %a id="permissionsUserRolesGrid_table">%a';
- $this->assertStringMatchesFormat($expected, $this->getResponse()->getBody());
- }
- /**
- * Verify that expected header and fieldsets are present for edit
- *
- * @depends testSaveAction
- */
- public function testEditAction()
- {
- $this->getRequest()->setParam('user_id', 1);
- $this->dispatch('backend/admin/user/edit');
- $response = $this->getResponse()->getBody();
- //check "User Information" header and fieldset
- $this->assertContains('data-ui-id="adminhtml-user-edit-tabs-title"', $response);
- $this->assertContains('User Information', $response);
- $this->assertEquals(
- 1,
- \Magento\TestFramework\Helper\Xpath::getElementsCountForXpath(
- '//*[@id="user_base_fieldset"]',
- $response
- )
- );
- }
- /**
- * Verify that validation passes on correct data
- */
- public function testValidateActionSuccess()
- {
- $data = [
- 'username' => 'admin2',
- 'firstname' => 'new firstname',
- 'lastname' => 'new lastname',
- 'email' => 'example@domain.com',
- 'password' => 'password123',
- 'password_confirmation' => 'password123',
- ];
- $this->getRequest()->setPostValue($data);
- $this->dispatch('backend/admin/user/validate');
- $body = $this->getResponse()->getBody();
- $this->assertEquals('{"error":0}', $body);
- }
- /**
- * Verify that an unknown top level domain on an email address does not fail validation
- */
- public function testValidateActionUnknownTldSuccess()
- {
- $data = [
- 'username' => 'admin2',
- 'firstname' => 'new firstname',
- 'lastname' => 'new lastname',
- 'email' => 'example@domain.unknown',
- 'password' => 'password123',
- 'password_confirmation' => 'password123',
- ];
- $this->getRequest()->setPostValue($data);
- $this->dispatch('backend/admin/user/validate');
- $body = $this->getResponse()->getBody();
- $this->assertEquals('{"error":0}', $body);
- }
- /**
- * Verify that an invalid email address format fails the validation
- */
- public function testValidateActionError()
- {
- $data = [
- 'username' => 'admin2',
- 'firstname' => 'new firstname',
- 'lastname' => 'new lastname',
- 'email' => 'example@-domain.cim',
- 'password' => 'password123',
- 'password_confirmation' => 'password123',
- ];
- /**
- * set customer data
- */
- $this->getRequest()->setPostValue($data);
- $this->dispatch('backend/admin/user/validate');
- $body = $this->getResponse()->getBody();
- $this->assertContains('{"error":1,"html_message":', $body);
- $this->assertContains("'-domain.cim' is not a valid hostname for email address 'example@-domain.cim", $body);
- }
- }
|