![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/dev/tests/integration/testsuite/Magento/User/Controller/Adminhtml/ |
<?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->assertStringContainsString('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' => '[email protected]', '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->assertStringContainsString('data-ui-id="adminhtml-user-edit-tabs-title"', $response); $this->assertStringContainsString('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' => '[email protected]', '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' => '[email protected]', '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' => '[email protected]', 'password' => 'password123', 'password_confirmation' => 'password123', ]; /** * set customer data */ $this->getRequest()->setPostValue($data); $this->dispatch('backend/admin/user/validate'); $body = $this->getResponse()->getBody(); $this->assertStringContainsString('{"error":1,"html_message":', $body); $this->assertStringContainsString( "'-domain.cim' is not a valid hostname for email address '[email protected]", $body ); } }