Namespace
Drupal\Tests\render_example\Functional
File
-
modules/render_example/tests/src/Functional/RenderExampleTest.php
View source
<?php
namespace Drupal\Tests\render_example\Functional;
use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;
class RenderExampleTest extends BrowserTestBase {
protected $defaultTheme = 'stark';
protected static $modules = [
'render_example',
];
protected $profile = 'standard';
public function testRenderExample() {
$web_user = $this->createUser([
'access content',
]);
$this->drupalLogin($web_user);
$session = $this->assertSession();
$altering_url = Url::fromRoute('render_example.altering');
$this->drupalGet($altering_url);
$session->pageTextContains('Install the Devel module (https://www.drupal.org/project/devel) to enable additional demonstration features.');
$breadcrumb_xpath = "//main//div[@id='block-stark-breadcrumbs']";
$this->assertEmpty($this->xpath($breadcrumb_xpath));
$this->drupalGet($altering_url);
$this->submitForm([
'render_example_move_breadcrumbs' => TRUE,
'render_example_reverse_sidebar' => FALSE,
'render_example_wrap_blocks' => FALSE,
], 'Save configuration');
$session->pageTextContains('The configuration options have been saved.');
$this->assertNotEmpty($this->xpath($breadcrumb_xpath));
$breadcrumb_xpath = "//aside[contains(@class,'layout-sidebar-first')]/div/*";
$elements = $this->xpath($breadcrumb_xpath);
$this->assertEquals('block-stark-page-title', $elements[0]->getAttribute('id'));
$this->assertEquals('block-stark-powered', $elements[1]->getAttribute('id'));
$this->assertEquals('block-stark-syndicate', $elements[2]->getAttribute('id'));
$this->drupalGet($altering_url);
$this->submitForm([
'render_example_move_breadcrumbs' => FALSE,
'render_example_reverse_sidebar' => TRUE,
'render_example_wrap_blocks' => FALSE,
], 'Save configuration');
$elements = $this->xpath($breadcrumb_xpath);
$this->assertEquals('block-stark-page-title', $elements[2]->getAttribute('id'));
$this->assertEquals('block-stark-powered', $elements[1]->getAttribute('id'));
$this->assertEquals('block-stark-syndicate', $elements[0]->getAttribute('id'));
$xpath = "//div[@class='block-prefix']";
$this->assertEmpty($this->xpath($xpath));
$this->drupalGet($altering_url);
$this->submitForm([
'render_example_move_breadcrumbs' => FALSE,
'render_example_reverse_sidebar' => FALSE,
'render_example_wrap_blocks' => TRUE,
], 'Save configuration');
$this->assertNotEmpty($this->xpath($xpath));
$this->drupalGet(Url::fromRoute('render_example.arrays'));
$xpath_array = [
'foof' => 'Hello ' . $web_user->getAccountName() . ', welcome to the #cache example.',
];
foreach ($xpath_array as $value) {
$session->pageTextContains($value);
}
}
}
Classes