123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Security\Test\Unit\Model;
- use Magento\Framework\Stdlib\DateTime\DateTime;
- use Magento\Framework\TestFramework\Unit\Helper\ObjectManager;
- use Magento\Security\Model\ConfigInterface;
- /**
- * Test class for \Magento\Security\Model\AdminSessionInfo testing
- */
- class AdminSessionInfoTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Security\Model\AdminSessionInfo
- */
- protected $model;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject | ConfigInterface
- */
- protected $securityConfigMock;
- /**
- * @var DateTime
- */
- protected $dateTimeMock;
- /**
- * @var \Magento\Framework\TestFramework\Unit\Helper\ObjectManager
- */
- protected $objectManager;
- /**
- * Init mocks for tests
- * @return void
- */
- public function setUp()
- {
- $this->objectManager = new ObjectManager($this);
- $this->securityConfigMock = $this->getMockBuilder(\Magento\Security\Model\ConfigInterface::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->dateTimeMock = $this->getMockBuilder(DateTime::class)
- ->disableOriginalConstructor()
- ->getMock();
- $this->model = $this->objectManager->getObject(
- \Magento\Security\Model\AdminSessionInfo::class,
- [
- 'securityConfig' => $this->securityConfigMock,
- 'dateTime' => $this->dateTimeMock,
- ]
- );
- }
- /**
- * @return void
- */
- public function testIsLoggedInStatus()
- {
- $this->model->setData('status', \Magento\Security\Model\AdminSessionInfo::LOGGED_IN);
- $this->model->setUpdatedAt(901);
- $this->securityConfigMock->expects($this->once())->method('getAdminSessionLifetime')->willReturn(100);
- $this->dateTimeMock->expects($this->once())
- ->method('gmtTimestamp')
- ->willReturn(1000);
- $this->assertEquals(true, $this->model->isLoggedInStatus());
- }
- /**
- * @return void
- */
- public function testIsLoggedInStatusExpired()
- {
- $this->model->setData('status', \Magento\Security\Model\AdminSessionInfo::LOGGED_IN);
- $this->model->setUpdatedAt(899);
- $this->securityConfigMock->expects($this->once())->method('getAdminSessionLifetime')->willReturn(100);
- $this->dateTimeMock->expects($this->once())
- ->method('gmtTimestamp')
- ->willReturn(1000);
- $this->assertEquals(false, $this->model->isLoggedInStatus());
- $this->assertEquals(\Magento\Security\Model\AdminSessionInfo::LOGGED_OUT, $this->model->getStatus());
- }
- /**
- * @param bool $expectedResult
- * @param string $sessionLifetime
- * @dataProvider dataProviderSessionLifetime
- */
- public function testSessionExpired($expectedResult, $sessionLifetime)
- {
- $timestamp = time();
- $this->securityConfigMock->expects($this->once())
- ->method('getAdminSessionLifetime')
- ->will($this->returnValue($sessionLifetime));
- $this->dateTimeMock->expects($this->once())
- ->method('gmtTimestamp')
- ->willReturn($timestamp);
- $this->model->setUpdatedAt(
- date("Y-m-d H:i:s", $timestamp - 1)
- );
- $this->assertEquals($expectedResult, $this->model->isSessionExpired());
- }
- /**
- * @return array
- */
- public function dataProviderSessionLifetime()
- {
- return [
- ['expectedResult' => true, 'sessionLifetime' => '0'],
- ['expectedResult' => true, 'sessionLifetime' => '1'],
- ['expectedResult' => false, 'sessionLifetime' => '2']
- ];
- }
- /**
- * @return void
- */
- public function testGetFormattedIp()
- {
- $formattedIp = '127.0.0.1';
- $this->model->setIp($formattedIp);
- $this->assertEquals($formattedIp, $this->model->getFormattedIp());
- }
- /**
- * @return void
- */
- public function testIsOtherSessionsTerminated()
- {
- $this->assertEquals(false, $this->model->isOtherSessionsTerminated());
- }
- /**
- * @param bool $isOtherSessionsTerminated
- * @dataProvider dataProviderIsOtherSessionsTerminated
- */
- public function testSetIsOtherSessionsTerminated($isOtherSessionsTerminated)
- {
- $this->assertInstanceOf(
- \Magento\Security\Model\AdminSessionInfo::class,
- $this->model->setIsOtherSessionsTerminated($isOtherSessionsTerminated)
- );
- }
- /**
- * @return array
- */
- public function dataProviderIsOtherSessionsTerminated()
- {
- return [[true], [false]];
- }
- }
|