123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Session;
- use Magento\Framework\App\State;
- use Zend\Stdlib\Parameters;
- class SidResolverTest extends \PHPUnit\Framework\TestCase
- {
- /**
- * @var \Magento\Framework\Session\SidResolver
- */
- protected $model;
- /**
- * @var \Magento\Framework\Session\Generic
- */
- protected $session;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Store\Model\Store
- */
- protected $store;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\App\Config\ScopeConfigInterface
- */
- protected $scopeConfig;
- /**
- * @var \PHPUnit_Framework_MockObject_MockObject|\Magento\Framework\UrlInterface
- */
- protected $urlBuilder;
- /**
- * @var string
- */
- protected $customSessionName = 'csn';
- /**
- * @var string
- */
- protected $customSessionQueryParam = 'csqp';
- /**
- * @var \Magento\Framework\App\RequestInterface
- */
- protected $request;
- /**
- * @var State|\PHPUnit_Framework_MockObject_MockObject
- */
- private $appState;
- protected function setUp()
- {
- $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
- /** @var \Magento\Framework\Session\Generic _model */
- $this->session = $objectManager->get(\Magento\Framework\Session\Generic::class);
- $this->scopeConfig = $this->getMockBuilder(
- \Magento\Framework\App\Config\ScopeConfigInterface::class
- )->setMethods(
- ['getValue']
- )->disableOriginalConstructor()->getMockForAbstractClass();
- $this->urlBuilder = $this->getMockBuilder(
- \Magento\Framework\Url::class
- )->setMethods(
- ['isOwnOriginUrl']
- )->disableOriginalConstructor()->getMockForAbstractClass();
- $this->request = $objectManager->get(\Magento\Framework\App\RequestInterface::class);
- $this->appState = $this->getMockBuilder(State::class)
- ->setMethods(['getAreaCode'])
- ->disableOriginalConstructor()
- ->getMock();
- $this->model = $objectManager->create(
- \Magento\Framework\Session\SidResolver::class,
- [
- 'scopeConfig' => $this->scopeConfig,
- 'urlBuilder' => $this->urlBuilder,
- 'sidNameMap' => [$this->customSessionName => $this->customSessionQueryParam],
- 'request' => $this->request,
- 'appState' => $this->appState,
- ]
- );
- }
- public function tearDown()
- {
- $this->request->setQuery(new Parameters());
- }
- /**
- * @param mixed $sid
- * @param bool $useFrontedSid
- * @param bool $isOwnOriginUrl
- * @param mixed $testSid
- * @dataProvider dataProviderTestGetSid
- */
- public function testGetSid($sid, $useFrontedSid, $isOwnOriginUrl, $testSid)
- {
- $this->appState->expects($this->atLeastOnce())
- ->method('getAreaCode')
- ->willReturn(\Magento\Framework\App\Area::AREA_FRONTEND);
- $this->scopeConfig->expects(
- $this->any()
- )->method(
- 'isSetFlag'
- )->with(
- \Magento\Framework\Session\SidResolver::XML_PATH_USE_FRONTEND_SID,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE
- )->will(
- $this->returnValue($useFrontedSid)
- );
- $this->urlBuilder->expects($this->any())->method('isOwnOriginUrl')->will($this->returnValue($isOwnOriginUrl));
- if ($testSid) {
- $this->request->getQuery()->set($this->model->getSessionIdQueryParam($this->session), $testSid);
- }
- $this->assertEquals($sid, $this->model->getSid($this->session));
- $this->assertEquals($useFrontedSid, $this->model->getUseSessionInUrl());
- }
- /**
- * @return array
- */
- public function dataProviderTestGetSid()
- {
- return [
- [null, false, false, 'test-sid'],
- [null, false, true, 'test-sid'],
- [null, false, false, 'test-sid'],
- [null, true, false, 'test-sid'],
- [null, false, true, 'test-sid'],
- ['test-sid', true, true, 'test-sid'],
- [null, true, true, null]
- ];
- }
- public function testGetSessionIdQueryParam()
- {
- $this->assertEquals(SidResolver::SESSION_ID_QUERY_PARAM, $this->model->getSessionIdQueryParam($this->session));
- }
- public function testGetSessionIdQueryParamCustom()
- {
- $this->session->destroy();
- $oldSessionName = $this->session->getName();
- $this->session->setName($this->customSessionName);
- $this->assertEquals($this->customSessionQueryParam, $this->model->getSessionIdQueryParam($this->session));
- $this->session->setName($oldSessionName);
- $this->session->start();
- }
- public function testSetGetUseSessionVar()
- {
- $this->assertFalse($this->model->getUseSessionVar());
- $this->model->setUseSessionVar(true);
- $this->assertTrue($this->model->getUseSessionVar());
- }
- /**
- * Variations of Use SID on frontend value.
- *
- * @return array
- */
- public function dataProviderSessionInUrl()
- {
- return [
- [true],
- [false],
- ];
- }
- /**
- * Testing "Use SID in URLs" flag.
- * Checking that the method returns config value if not explicitly
- * overridden.
- *
- * @param bool $configValue Use SID on frontend config value.
- * @dataProvider dataProviderSessionInUrl
- */
- public function testSetGetUseSessionInUrl($configValue)
- {
- $this->scopeConfig->expects(
- $this->any()
- )->method(
- 'isSetFlag'
- )->with(
- \Magento\Framework\Session\SidResolver::XML_PATH_USE_FRONTEND_SID,
- \Magento\Store\Model\ScopeInterface::SCOPE_STORE
- )->will(
- $this->returnValue($configValue)
- );
- $this->assertEquals($configValue, $this->model->getUseSessionInUrl());
- $this->model->setUseSessionInUrl(!$configValue);
- $this->assertEquals(!$configValue, $this->model->getUseSessionInUrl());
- }
- }
|