![]() 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/vendor/amasty/shopby-seo/Test/Unit/Plugin/Shopby/Controller/ |
<?php /** * @author Amasty Team * @copyright Copyright (c) Amasty (https://www.amasty.com) * @package Shop by Seo for Magento 2 (System) */ namespace Amasty\ShopbySeo\Test\Unit\Plugin\Shopby\Controller; use Amasty\ShopbySeo\Plugin\Shopby\Controller\Router; use Amasty\ShopbySeo\Test\Unit\Traits; /** * Class Router * * @see Router * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) * phpcs:ignoreFile */ class RouterTest extends \PHPUnit\Framework\TestCase { use Traits\ObjectManagerTrait; use Traits\ReflectionTrait; /** * @covers Router::afterCheckMatchExpressions * @dataProvider afterCheckMatchExpressionsDataProvider */ public function testAfterCheckMatchExpressions($seoUrlEnabled, $result, $expected) { $subject = $this->createMock(\Amasty\Shopby\Controller\Router::class); $request = $this->getObjectManager() ->getObject(\Magento\Framework\App\Request\Http::class); $urlHelper = $this->createMock(\Amasty\ShopbySeo\Helper\Url::class); $urlHelper->expects($this->any())->method('isSeoUrlEnabled') ->willReturn($seoUrlEnabled); $router = $this->createPartialMock(Router::class, []); $this->setProperty($router, 'urlHelper', $urlHelper, Router::class); $this->setProperty($router, 'request', $request, Router::class); $this->assertEquals($expected, $router->afterCheckMatchExpressions($subject, $result)); } public function afterCheckMatchExpressionsDataProvider() { return [ [false, false, false], [true, true, true], [true, false, false] ]; } }