function HelpTopicDiscoveryTest::testDiscoveryExceptionInvalidRelated

Same name and namespace in other branches
  1. 9 core/modules/help_topics/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help_topics\Unit\HelpTopicDiscoveryTest::testDiscoveryExceptionInvalidRelated()
  2. 8.9.x core/modules/help_topics/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help_topics\Unit\HelpTopicDiscoveryTest::testDiscoveryExceptionInvalidRelated()
  3. 10 core/modules/help/tests/src/Unit/HelpTopicDiscoveryTest.php \Drupal\Tests\help\Unit\HelpTopicDiscoveryTest::testDiscoveryExceptionInvalidRelated()

@covers ::findAll

File

core/modules/help/tests/src/Unit/HelpTopicDiscoveryTest.php, line 103

Class

HelpTopicDiscoveryTest
@coversDefaultClass <a href="/api/drupal/core%21modules%21help%21src%21HelpTopicDiscovery.php/class/HelpTopicDiscovery/11.x" title="Discovers help topic plugins from Twig files in help_topics directories." class="local">\Drupal\help\HelpTopicDiscovery</a> @group help

Namespace

Drupal\Tests\help\Unit

Code

public function testDiscoveryExceptionInvalidRelated() : void {
    vfsStream::setup('root');
    $topic_content = <<<EOF
---
label: 'A label'
related: "one, two"
---
EOF;
    vfsStream::create([
        'modules' => [
            'test' => [
                'help_topics' => [
                    'test.topic.html.twig' => $topic_content,
                ],
            ],
        ],
    ]);
    $discovery = new HelpTopicDiscovery([
        'test' => vfsStream::url('root/modules/test/help_topics'),
    ]);
    $this->expectException(DiscoveryException::class);
    $this->expectExceptionMessage("vfs://root/modules/test/help_topics/test.topic.html.twig contains invalid value for 'related' key, the value must be an array of strings");
    $discovery->getDefinitions();
}

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