You are here

public function FrontPageTest::testDrupalFrontPage in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 core/modules/system/src/Tests/System/FrontPageTest.php \Drupal\system\Tests\System\FrontPageTest::testDrupalFrontPage()

Test front page functionality.

File

core/modules/system/src/Tests/System/FrontPageTest.php, line 54
Contains \Drupal\system\Tests\System\FrontPageTest.

Class

FrontPageTest
Tests front page functionality and administration.

Namespace

Drupal\system\Tests\System

Code

public function testDrupalFrontPage() {

  // Create a promoted node to test the <title> tag on the front page view.
  $settings = array(
    'title' => $this
      ->randomMachineName(8),
    'promote' => 1,
  );
  $this
    ->drupalCreateNode($settings);
  $this
    ->drupalGet('');
  $this
    ->assertTitle('Home | Drupal');
  $this
    ->assertText(t('On front page.'), 'Path is the front page.');
  $this
    ->drupalGet('node');
  $this
    ->assertText(t('On front page.'), 'Path is the front page.');
  $this
    ->drupalGet($this->nodePath);
  $this
    ->assertNoText(t('On front page.'), 'Path is not the front page.');

  // Change the front page to an invalid path.
  $edit = array(
    'site_frontpage' => '/kittens',
  );
  $this
    ->drupalPostForm('admin/config/system/site-information', $edit, t('Save configuration'));
  $this
    ->assertText(t("The path '@path' is either invalid or you do not have access to it.", array(
    '@path' => $edit['site_frontpage'],
  )));

  // Change the front page to a path without a starting slash.
  $edit = [
    'site_frontpage' => $this->nodePath,
  ];
  $this
    ->drupalPostForm('admin/config/system/site-information', $edit, t('Save configuration'));
  $this
    ->assertRaw(SafeMarkup::format("The path '%path' has to start with a slash.", [
    '%path' => $edit['site_frontpage'],
  ]));

  // Change the front page to a valid path.
  $edit['site_frontpage'] = '/' . $this->nodePath;
  $this
    ->drupalPostForm('admin/config/system/site-information', $edit, t('Save configuration'));
  $this
    ->assertText(t('The configuration options have been saved.'), 'The front page path has been saved.');
  $this
    ->drupalGet('');
  $this
    ->assertText(t('On front page.'), 'Path is the front page.');
  $this
    ->drupalGet('node');
  $this
    ->assertNoText(t('On front page.'), 'Path is not the front page.');
  $this
    ->drupalGet($this->nodePath);
  $this
    ->assertText(t('On front page.'), 'Path is the front page.');
}