123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Security\Model;
- class AdminSessionsManagerTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Backend\Model\Auth
- */
- protected $auth;
- /**
- * @var \Magento\Backend\Model\Auth\Session
- */
- protected $authSession;
- /**
- * @var \Magento\Security\Model\AdminSessionInfo
- */
- protected $adminSessionInfo;
- /**
- * @var \Magento\Security\Model\AdminSessionsManager
- */
- protected $adminSessionsManager;
- /**
- * @var \Magento\Framework\Message\ManagerInterface
- */
- protected $messageManager;
- /**
- * @var \Magento\Framework\ObjectManagerInterface
- */
- protected $objectManager;
- /**
- * Set up
- */
- protected function setUp()
- {
- parent::setUp();
- $this->objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
- $this->objectManager->get(\Magento\Framework\Config\ScopeInterface::class)
- ->setCurrentScope(\Magento\Backend\App\Area\FrontNameResolver::AREA_CODE);
- $this->auth = $this->objectManager->create(\Magento\Backend\Model\Auth::class);
- $this->authSession = $this->objectManager->create(\Magento\Backend\Model\Auth\Session::class);
- $this->adminSessionInfo = $this->objectManager->create(\Magento\Security\Model\AdminSessionInfo::class);
- $this->auth->setAuthStorage($this->authSession);
- $this->messageManager = $this->objectManager->get(\Magento\Framework\Message\ManagerInterface::class);
- $this->adminSessionsManager = $this->objectManager->create(\Magento\Security\Model\AdminSessionsManager::class);
- }
- /**
- * Tear down
- */
- protected function tearDown()
- {
- $this->auth = null;
- $this->authSession = null;
- $this->adminSessionInfo = null;
- $this->adminSessionsManager = null;
- $this->objectManager = null;
- parent::tearDown();
- }
- /**
- * Test if current admin user is logged out
- *
- * @magentoDbIsolation enabled
- */
- public function testProcessLogout()
- {
- $this->auth->login(
- \Magento\TestFramework\Bootstrap::ADMIN_NAME,
- \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD
- );
- $sessionId = $this->authSession->getSessionId();
- $this->auth->logout();
- $this->adminSessionInfo->load($sessionId, 'session_id');
- $this->assertEquals($this->adminSessionInfo->getStatus(), AdminSessionInfo::LOGGED_OUT);
- }
- /**
- * Test if the admin session is created in database
- *
- * @magentoDbIsolation enabled
- */
- public function testIsAdminSessionIsCreated()
- {
- $this->auth->login(
- \Magento\TestFramework\Bootstrap::ADMIN_NAME,
- \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD
- );
- $sessionId = $this->authSession->getSessionId();
- $this->adminSessionInfo->load($sessionId, 'session_id');
- $this->assertGreaterThanOrEqual(1, (int)$this->adminSessionInfo->getId());
- $this->auth->logout();
- }
- /**
- * Test if other sessions are terminated if admin_account_sharing is disabled
- *
- * @magentoAdminConfigFixture admin/security/session_lifetime 100
- * @magentoConfigFixture default_store admin/security/admin_account_sharing 0
- * @magentoDbIsolation enabled
- */
- public function testTerminateOtherSessionsProcessLogin()
- {
- $session = $this->objectManager->create(\Magento\Security\Model\AdminSessionInfo::class);
- $session->setSessionId('669e2e3d752e8')
- ->setUserId(1)
- ->setStatus(1)
- ->setCreatedAt(time() - 10)
- ->setUpdatedAt(time() - 9)
- ->save();
- $this->auth->login(
- \Magento\TestFramework\Bootstrap::ADMIN_NAME,
- \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD
- );
- $session->load('669e2e3d752e8', 'session_id');
- $this->assertEquals(
- AdminSessionInfo::LOGGED_OUT_BY_LOGIN,
- (int) $session->getStatus()
- );
- }
- /**
- * Test if current session is retrieved
- *
- * @magentoDbIsolation enabled
- */
- public function testGetCurrentSession()
- {
- $this->auth->login(
- \Magento\TestFramework\Bootstrap::ADMIN_NAME,
- \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD
- );
- $sessionId = $this->authSession->getSessionId();
- $this->adminSessionInfo->load($sessionId, 'session_id');
- $this->assertEquals(
- $this->adminSessionInfo->getSessionId(),
- $this->adminSessionsManager->getCurrentSession()->getSessionId()
- );
- }
- /**
- * Test if other sessions were logged out if logoutOtherUserSessions() action was performed
- *
- * @magentoAdminConfigFixture admin/security/session_lifetime 100
- * @magentoConfigFixture default_store admin/security/admin_account_sharing 1
- * @magentoDbIsolation enabled
- */
- public function testLogoutOtherUserSessions()
- {
- /** @var \Magento\Security\Model\AdminSessionInfo $session */
- $session = $this->objectManager->create(\Magento\Security\Model\AdminSessionInfo::class);
- $session->setSessionId('669e2e3d752e8')
- ->setUserId(1)
- ->setStatus(1)
- ->setCreatedAt(time() - 50)
- ->setUpdatedAt(time() - 49)
- ->save();
- $this->auth->login(
- \Magento\TestFramework\Bootstrap::ADMIN_NAME,
- \Magento\TestFramework\Bootstrap::ADMIN_PASSWORD
- );
- $collection = $this->getCollectionForLogoutOtherUserSessions($session);
- $this->assertGreaterThanOrEqual(1, $collection->getSize());
- $this->adminSessionsManager->logoutOtherUserSessions();
- $collection = $this->getCollectionForLogoutOtherUserSessions($session);
- $this->assertEquals(0, $collection->getSize());
- }
- /**
- * Collection getter with filters populated for testLogoutOtherUserSessions() method
- *
- * @param AdminSessionInfo $session
- * @return ResourceModel\AdminSessionInfo\Collection
- */
- protected function getCollectionForLogoutOtherUserSessions(\Magento\Security\Model\AdminSessionInfo $session)
- {
- /** @var \Magento\Security\Model\ResourceModel\AdminSessionInfo\Collection $collection */
- $collection = $session->getResourceCollection();
- $collection->filterByUser(
- $this->authSession->getUser()->getId(),
- \Magento\Security\Model\AdminSessionInfo::LOGGED_IN,
- $this->authSession->getSessionId()
- )
- ->filterExpiredSessions(100)
- ->load();
- return $collection;
- }
- /**
- * Test for cleanExpiredSessions() method
- *
- * @magentoDataFixture Magento/Security/_files/adminsession.php
- * @magentoAdminConfigFixture admin/security/session_lifetime 1
- * @magentoDbIsolation enabled
- */
- public function testCleanExpiredSessions()
- {
- /** @var \Magento\Security\Model\AdminSessionInfo $session */
- $session = $this->objectManager->create(\Magento\Security\Model\AdminSessionInfo::class);
- $collection = $this->getCollectionForCleanExpiredSessions($session);
- $sizeBefore = $collection->getSize();
- $this->adminSessionsManager->cleanExpiredSessions();
- $collection = $this->getCollectionForCleanExpiredSessions($session);
- $sizeAfter = $collection->getSize();
- $this->assertGreaterThan($sizeAfter, $sizeBefore);
- }
- /**
- * Collection getter with filters populated for testCleanExpiredSessions() method
- *
- * @param AdminSessionInfo $session
- * @return ResourceModel\AdminSessionInfo\Collection
- */
- protected function getCollectionForCleanExpiredSessions(\Magento\Security\Model\AdminSessionInfo $session)
- {
- /** @var \Magento\Security\Model\ResourceModel\AdminSessionInfo\Collection $collection */
- $collection = $session->getResourceCollection()
- ->load();
- return $collection;
- }
- }
|