View source
<?php
namespace Drupal\Tests\devel\Functional;
class DevelDumperTest extends DevelBrowserTestBase {
public static $modules = [
'devel',
'devel_dumper_test',
];
protected function setUp() {
parent::setUp();
$this
->drupalLogin($this->adminUser);
}
public function testDumpersConfiguration() {
$this
->drupalGet('admin/config/development/devel');
$this
->assertSession()
->fieldExists('dumper');
$this
->assertSession()
->checkboxChecked('edit-dumper-default');
$dumpers = [
'default',
'var_dumper',
];
$available_dumpers = [
'default',
'var_dumper',
];
foreach ($dumpers as $dumper) {
$this
->assertFieldsByValue($this
->xpath('//input[@type="radio" and @name="dumper"]'), $dumper);
if (in_array($dumper, $available_dumpers)) {
$this
->assertFieldsByValue($this
->xpath('//input[@name="dumper" and not(@disabled="disabled")]'), $dumper);
}
else {
$this
->assertFieldsByValue($this
->xpath('//input[@name="dumper" and @disabled="disabled"]'), $dumper);
}
}
$this
->assertFieldsByValue($this
->xpath('//input[@name="dumper"]'), 'available_test_dumper');
$this
->assertSession()
->pageTextContains('Available test dumper.');
$this
->assertSession()
->pageTextContains('Drupal dumper for testing purposes (available).');
$this
->assertFieldsByValue($this
->xpath('//input[@name="dumper" and not(@disabled="disabled")]'), 'available_test_dumper', 'Available dumper input not is disabled.');
$this
->assertFieldsByValue($this
->xpath('//input[@name="dumper"]'), 'not_available_test_dumper');
$this
->assertSession()
->pageTextContains('Not available test dumper.');
$this
->assertSession()
->pageTextContains('Drupal dumper for testing purposes (not available).Not available. You may need to install external dependencies for use this plugin.');
$this
->assertFieldsByValue($this
->xpath('//input[@name="dumper" and @disabled="disabled"]'), 'not_available_test_dumper', 'Non available dumper input is disabled.');
$edit = [
'dumper' => 'var_dumper',
];
$this
->drupalPostForm('admin/config/development/devel', $edit, 'Save configuration');
$this
->assertSession()
->pageTextContains('The configuration options have been saved.');
$this
->assertSession()
->checkboxChecked('Symfony var-dumper');
$config = \Drupal::config('devel.settings')
->get('devel_dumper');
$this
->assertEquals('var_dumper', $config, 'The configuration options have been properly saved');
}
public function testDumpersOutput() {
$edit = [
'dumper' => 'available_test_dumper',
];
$this
->drupalPostForm('admin/config/development/devel', $edit, 'Save configuration');
$this
->assertSession()
->pageTextContains('The configuration options have been saved.');
$this
->drupalGet('devel_dumper_test/dump');
$elements = $this
->xpath('//body/pre[contains(text(), :message)]', [
':message' => 'AvailableTestDumper::dump() Test output',
]);
$this
->assertNotEmpty($elements, 'Dumped message is present.');
$this
->drupalGet('devel_dumper_test/message');
$elements = $this
->xpath('//div[@aria-label="Status message"]/pre[contains(text(), :message)]', [
':message' => 'AvailableTestDumper::export() Test output',
]);
$this
->assertNotEmpty($elements, 'Dumped message is present.');
$this
->drupalGet('devel_dumper_test/export');
$elements = $this
->xpath('//div[@class="layout-content"]//pre[contains(text(), :message)]', [
':message' => 'AvailableTestDumper::export() Test output',
]);
$this
->assertNotEmpty($elements, 'Dumped message is present.');
$this
->drupalGet('devel_dumper_test/export_renderable');
$elements = $this
->xpath('//div[@class="layout-content"]//pre[contains(text(), :message)]', [
':message' => 'AvailableTestDumper::exportAsRenderable() Test output',
]);
$this
->assertNotEmpty($elements, 'Dumped message is present.');
$this
->assertSession()
->responseContains('devel_dumper_test/css/devel_dumper_test.css');
$this
->assertSession()
->responseContains('devel_dumper_test/js/devel_dumper_test.js');
if (version_compare(\Drupal::VERSION, 8.800000000000001, '>=')) {
$debug_filename = \Drupal::service('file_system')
->getTempDirectory() . '/' . 'drupal_debug.txt';
}
else {
$debug_filename = file_directory_temp() . '/drupal_debug.txt';
}
$this
->drupalGet('devel_dumper_test/debug');
$file_content = file_get_contents($debug_filename);
$expected = <<<EOF
<pre>AvailableTestDumper::export() Test output</pre>
EOF;
$this
->assertEquals($file_content, $expected, 'Dumped message is present.');
file_put_contents($debug_filename, '');
$this
->drupalLogout();
$this
->drupalGet('devel_dumper_test/debug');
$file_content = file_get_contents($debug_filename);
$expected = <<<EOF
<pre>AvailableTestDumper::export() Test output</pre>
EOF;
$this
->assertEquals($file_content, $expected, 'Dumped message is present.');
}
}