class AliasPathProcessorTest

Same name in other branches
  1. 9 core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php \Drupal\Tests\path_alias\Unit\PathProcessor\AliasPathProcessorTest
  2. 10 core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php \Drupal\Tests\path_alias\Unit\PathProcessor\AliasPathProcessorTest
  3. 11.x core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php \Drupal\Tests\path_alias\Unit\PathProcessor\AliasPathProcessorTest

@coversDefaultClass \Drupal\path_alias\PathProcessor\AliasPathProcessor @group PathProcessor @group path_alias

Hierarchy

Expanded class hierarchy of AliasPathProcessorTest

File

core/modules/path_alias/tests/src/Unit/PathProcessor/AliasPathProcessorTest.php, line 16

Namespace

Drupal\Tests\path_alias\Unit\PathProcessor
View source
class AliasPathProcessorTest extends UnitTestCase {
    
    /**
     * The mocked alias manager.
     *
     * @var \Drupal\path_alias\AliasManagerInterface|\PHPUnit\Framework\MockObject\MockObject
     */
    protected $aliasManager;
    
    /**
     * The tested path processor.
     *
     * @var \Drupal\path_alias\PathProcessor\AliasPathProcessor
     */
    protected $pathProcessor;
    protected function setUp() {
        $this->aliasManager = $this->createMock('Drupal\\path_alias\\AliasManagerInterface');
        $this->pathProcessor = new AliasPathProcessor($this->aliasManager);
    }
    
    /**
     * Tests the processInbound method.
     *
     * @see \Drupal\path_alias\PathProcessor\AliasPathProcessor::processInbound
     */
    public function testProcessInbound() {
        $this->aliasManager
            ->expects($this->exactly(2))
            ->method('getPathByAlias')
            ->will($this->returnValueMap([
            [
                'urlalias',
                NULL,
                'internal-url',
            ],
            [
                'url',
                NULL,
                'url',
            ],
        ]));
        $request = Request::create('/urlalias');
        $this->assertEquals('internal-url', $this->pathProcessor
            ->processInbound('urlalias', $request));
        $request = Request::create('/url');
        $this->assertEquals('url', $this->pathProcessor
            ->processInbound('url', $request));
    }
    
    /**
     * @covers ::processOutbound
     *
     * @dataProvider providerTestProcessOutbound
     */
    public function testProcessOutbound($path, array $options, $expected_path) {
        $this->aliasManager
            ->expects($this->any())
            ->method('getAliasByPath')
            ->will($this->returnValueMap([
            [
                'internal-url',
                NULL,
                'urlalias',
            ],
            [
                'url',
                NULL,
                'url',
            ],
        ]));
        $bubbleable_metadata = new BubbleableMetadata();
        $this->assertEquals($expected_path, $this->pathProcessor
            ->processOutbound($path, $options, NULL, $bubbleable_metadata));
        // Cacheability of paths replaced with path aliases is permanent.
        // @todo https://www.drupal.org/node/2480077
        $this->assertEquals((new BubbleableMetadata())->setCacheMaxAge(Cache::PERMANENT), $bubbleable_metadata);
    }
    
    /**
     * @return array
     */
    public function providerTestProcessOutbound() {
        return [
            [
                'internal-url',
                [],
                'urlalias',
            ],
            [
                'internal-url',
                [
                    'alias' => TRUE,
                ],
                'internal-url',
            ],
            [
                'url',
                [],
                'url',
            ],
        ];
    }

}

Members

Title Sort descending Deprecated Modifiers Object type Summary Overriden Title Overrides
AliasPathProcessorTest::$aliasManager protected property The mocked alias manager.
AliasPathProcessorTest::$pathProcessor protected property The tested path processor.
AliasPathProcessorTest::providerTestProcessOutbound public function
AliasPathProcessorTest::setUp protected function Overrides UnitTestCase::setUp
AliasPathProcessorTest::testProcessInbound public function Tests the processInbound method.
AliasPathProcessorTest::testProcessOutbound public function @covers ::processOutbound
PhpunitCompatibilityTrait::getMock Deprecated public function Returns a mock object for the specified class using the available method.
PhpunitCompatibilityTrait::setExpectedException Deprecated public function Compatibility layer for PHPUnit 6 to support PHPUnit 4 code.
UnitTestCase::$randomGenerator protected property The random generator.
UnitTestCase::$root protected property The app root. 1
UnitTestCase::assertArrayEquals protected function Asserts if two arrays are equal by sorting them first.
UnitTestCase::getBlockMockWithMachineName Deprecated protected function Mocks a block with a block plugin. 1
UnitTestCase::getClassResolverStub protected function Returns a stub class resolver.
UnitTestCase::getConfigFactoryStub public function Returns a stub config factory that behaves according to the passed array.
UnitTestCase::getConfigStorageStub public function Returns a stub config storage that returns the supplied configuration.
UnitTestCase::getContainerWithCacheTagsInvalidator protected function Sets up a container with a cache tags invalidator.
UnitTestCase::getRandomGenerator protected function Gets the random generator for the utility methods.
UnitTestCase::getStringTranslationStub public function Returns a stub translation manager that just returns the passed string.
UnitTestCase::randomMachineName public function Generates a unique random string containing letters and numbers.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.