Mercurial > hg > isophonics-drupal-site
view core/modules/help/tests/src/Functional/HelpBlockTest.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | 4c8ae668cc8c |
children |
line wrap: on
line source
<?php namespace Drupal\Tests\help\Functional; use Drupal\Tests\BrowserTestBase; /** * Tests display of help block. * * @group help */ class HelpBlockTest extends BrowserTestBase { /** * {@inheritdoc} */ public static $modules = ['help', 'help_page_test', 'block', 'more_help_page_test']; /** * The help block instance. * * @var \Drupal\block\Entity\Block */ protected $helpBlock; protected function setUp() { parent::setUp(); $this->helpBlock = $this->placeBlock('help_block'); } /** * Logs in users, tests help pages. */ public function testHelp() { $this->drupalGet('help_page_test/has_help'); $this->assertText(t('I have help!')); $this->assertText($this->helpBlock->label()); $this->drupalGet('help_page_test/no_help'); // The help block should not appear when there is no help. $this->assertNoText($this->helpBlock->label()); // Ensure that if two hook_help() implementations both return a render array // the output is as expected. $this->drupalGet('help_page_test/test_array'); $this->assertText('Help text from more_help_page_test_help module.'); $this->assertText('Help text from help_page_test_help module.'); } }