function HookCollectorPassTest::testSymlink

Test that symlinks are properly followed.

File

core/tests/Drupal/KernelTests/Core/Hook/HookCollectorPassTest.php, line 26

Class

HookCollectorPassTest
@coversDefaultClass \Drupal\Core\Hook\HookCollectorPass @group Hook

Namespace

Drupal\KernelTests\Core\Hook

Code

public function testSymlink() : void {
    mkdir($this->siteDirectory);
    foreach (scandir("core/modules/user/tests/modules/user_hooks_test") as $item) {
        $target = "{$this->siteDirectory}/{$item}";
        if (!file_exists($target)) {
            symlink(realpath("core/modules/user/tests/modules/user_hooks_test/{$item}"), $target);
        }
    }
    $container = new ContainerBuilder();
    $module_filenames = [
        'user_hooks_test' => [
            'pathname' => "{$this->siteDirectory}/user_hooks_test.info.yml",
        ],
    ];
    $container->setParameter('container.modules', $module_filenames);
    $container->setDefinition('module_handler', new Definition());
    (new HookCollectorPass())->process($container);
    $implementations = [
        'user_format_name_alter' => [
            'Drupal\\user_hooks_test\\Hook\\UserHooksTest' => [
                'userFormatNameAlter' => 'user_hooks_test',
            ],
        ],
    ];
    $this->assertSame($implementations, $container->getParameter('hook_implementations_map'));
}

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