View source
<?php
namespace Drupal\FunctionalTests;
use Behat\Mink\Exception\ElementNotFoundException;
use Behat\Mink\Exception\ExpectationException;
use Drupal\Component\Serialization\Json;
use Drupal\Component\Utility\Html;
use Drupal\Core\Url;
use Drupal\Tests\BrowserTestBase;
use Drupal\Tests\StreamCapturer;
use Drupal\Tests\Traits\Core\CronRunTrait;
use Drupal\user\Entity\Role;
use PHPUnit\Framework\ExpectationFailedException;
class BrowserTestBaseTest extends BrowserTestBase {
use CronRunTrait;
protected static $modules = [
'test_page_test',
'form_test',
'system_test',
'node',
];
protected $defaultTheme = 'classy';
public function testGoTo() {
$account = $this
->drupalCreateUser();
$this
->drupalLogin($account);
$this
->drupalGet('test-page');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->pageTextContains('Test page text.');
$text = $this
->getTextContent();
$this
->assertStringContainsString('Test page text.', $text);
$this
->assertStringNotContainsString('</html>', $text);
$this
->assertArrayHasKey('currentPathIsAdmin', $this
->getDrupalSettings()['path']);
$this
->assertStringNotContainsString('currentPathIsAdmin', $text);
$this
->assertSession()
->responseHeaderExists('X-Drupal-Cache-Tags');
$this
->assertSession()
->responseHeaderEquals('X-Drupal-Cache-Tags', 'http_response rendered');
$js_settings = $this
->getDrupalSettings();
$this
->assertSame('azAZ09();.,\\\\/-_{}', $js_settings['test-setting']);
$url = Url::fromRoute('test_page_test.render_title');
$this
->drupalGet($url);
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->pageTextContains('Hello Drupal');
$this
->drupalGet('system-test/header', [], [
'Test-Header' => 'header value',
]);
$this
->assertSession()
->responseHeaderExists('Test-Header');
$this
->assertSession()
->responseHeaderEquals('Test-Header', 'header value');
$this
->assertTrue($this
->isTestUsingGuzzleClient());
}
public function testDrupalGet() {
$this
->drupalGet('test-page');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->addressEquals('test-page');
$this
->drupalGet('/test-page');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->addressEquals('test-page');
$this
->drupalGet('/test-page/');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->addressEquals('/test-page/');
}
public function testForm() {
$this
->drupalGet('form-test/object-builder');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->elementExists('css', 'form#form-test-form-test-object');
$this
->assertSession()
->fieldExists('bananas');
$this
->assertSession()
->hiddenFieldExists('strawberry');
$this
->assertSession()
->hiddenFieldExists('red');
$this
->assertSession()
->hiddenFieldExists('redstrawberryhiddenfield');
$this
->assertSession()
->hiddenFieldValueNotEquals('strawberry', 'brown');
$this
->assertSession()
->hiddenFieldValueEquals('strawberry', 'red');
$this
->assertSession()
->hiddenFieldNotExists('bananas');
$this
->assertSession()
->hiddenFieldNotExists('pineapple');
$edit = [
'bananas' => 'green',
];
$this
->submitForm($edit, 'Save', 'form-test-form-test-object');
$config_factory = $this->container
->get('config.factory');
$value = $config_factory
->get('form_test.object')
->get('bananas');
$this
->assertSame('green', $value);
$this
->drupalGet('form-test/object-builder');
$this
->submitForm([
'bananas' => 'red',
], 'Save');
$value = $config_factory
->get('form_test.object')
->get('bananas');
$this
->assertSame('red', $value);
$this
->submitForm([], 'Save');
$value = $config_factory
->get('form_test.object')
->get('bananas');
$this
->assertSame('', $value);
$this
->submitForm([
'bananas' => 'blue',
], 'edit-submit');
$value = $config_factory
->get('form_test.object')
->get('bananas');
$this
->assertSame('blue', $value);
$this
->submitForm([
'bananas' => 'purple',
], 'op');
$value = $config_factory
->get('form_test.object')
->get('bananas');
$this
->assertSame('purple', $value);
$this
->drupalGet('form_test/form-state-values-clean');
$this
->submitForm([], 'Submit');
$values = Json::decode($this
->getSession()
->getPage()
->getContent());
$this
->assertSame(1000, $values['beer']);
$this
->drupalCreateContentType([
'type' => 'page',
]);
$this
->drupalLogin($this
->drupalCreateUser([
'create page content',
]));
$this
->drupalGet('form-test/two-instances-of-same-form');
$this
->getSession()
->getPage()
->fillField('edit-title-0-value', 'form1');
$this
->getSession()
->getPage()
->fillField('edit-title-0-value--2', 'form2');
$this
->submitForm([], 'Save', 'node-page-form--2');
$this
->assertSession()
->pageTextContains('Page form2 has been created.');
}
public function testClickLink() {
$this
->drupalGet('test-page');
$this
->clickLink('Visually identical test links');
$this
->assertStringContainsString('user/login', $this
->getSession()
->getCurrentUrl());
$this
->drupalGet('test-page');
$this
->clickLink('Visually identical test links', 0);
$this
->assertStringContainsString('user/login', $this
->getSession()
->getCurrentUrl());
$this
->drupalGet('test-page');
$this
->clickLink('Visually identical test links', 1);
$this
->assertStringContainsString('user/register', $this
->getSession()
->getCurrentUrl());
}
public function testError() {
$this
->expectException('\\Exception');
$this
->expectExceptionMessage('User notice: foo');
$this
->drupalGet('test-error');
}
public function testPipeCharInLocator() {
$this
->drupalGet('test-pipe-char');
$this
->assertSession()
->linkExists('foo|bar|baz');
}
public function testLinkExistsExact() {
$this
->drupalGet('test-pipe-char');
$this
->assertSession()
->linkExistsExact('foo|bar|baz');
}
public function testInvalidLinkExistsExact() {
$this
->drupalGet('test-pipe-char');
$this
->expectException(ExpectationException::class);
$this
->expectExceptionMessage('Link with label foo|bar found');
$this
->assertSession()
->linkExistsExact('foo|bar');
}
public function testLinkNotExistsExact() {
$this
->drupalGet('test-pipe-char');
$this
->assertSession()
->linkNotExistsExact('foo|bar');
}
public function testResponseHeaderDoesNotExist() {
$this
->drupalGet('test-pipe-char');
$this
->assertSession()
->responseHeaderDoesNotExist('Foo-Bar');
}
public function testInvalidLinkNotExistsExact() {
$this
->drupalGet('test-pipe-char');
$this
->expectException(ExpectationException::class);
$this
->expectExceptionMessage('Link with label foo|bar|baz not found');
$this
->assertSession()
->linkNotExistsExact('foo|bar|baz');
}
public function testTextAsserts() {
$this
->drupalGet('test-encoded');
$dangerous = 'Bad html <script>alert(123);</script>';
$sanitized = Html::escape($dangerous);
$this
->assertSession()
->responseNotContains($dangerous);
$this
->assertSession()
->responseContains($sanitized);
}
public function testXpathAsserts() {
$this
->drupalGet('test-field-xpath');
$this
->assertSession()
->elementTextContains('xpath', '//table/tbody/tr[2]/td[1]', 'one');
$this
->assertSession()
->fieldValueEquals('edit-name', 'Test name');
$this
->assertSession()
->fieldValueEquals('edit-options', '2');
$this
->assertSession()
->elementNotExists('xpath', '//notexisting');
$this
->assertSession()
->fieldValueNotEquals('edit-name', 'wrong value');
try {
$this
->assertSession()
->fieldExists('notexisting');
$this
->fail('The "notexisting" field was found.');
} catch (ExpectationException $e) {
}
try {
$this
->assertSession()
->fieldNotExists('edit-name');
$this
->fail('The "edit-name" field was not found.');
} catch (ExpectationException $e) {
}
}
public function testFieldAssertsForTextfields() {
$this
->drupalGet('test-field-xpath');
$this
->assertSession()
->fieldNotExists('invalid_name_and_id');
try {
$this
->assertSession()
->fieldNotExists('name');
$this
->fail('The "name" field was not found based on name.');
} catch (ExpectationException $e) {
}
try {
$this
->assertSession()
->fieldNotExists('edit-name');
$this
->fail('The "name" field was not found based on id.');
} catch (ExpectationException $e) {
}
$this
->assertSession()
->fieldExists('name');
$this
->assertSession()
->fieldExists('edit-name');
try {
$this
->assertSession()
->fieldExists('invalid_name_and_id');
$this
->fail('The "invalid_name_and_id" field was found.');
} catch (ElementNotFoundException $e) {
}
$this
->assertSession()
->fieldValueNotEquals('name', 'not the value');
$this
->assertSession()
->fieldNotExists('notexisting');
try {
$this
->assertSession()
->fieldNotExists('edit-description');
$this
->fail('The "description" field, with no value was not found.');
} catch (ExpectationException $e) {
}
try {
$this
->assertSession()
->fieldNotExists('name', NULL);
$this
->fail('The "name" field was not found.');
} catch (ExpectationException $e) {
}
$this
->assertSession()
->fieldExists('edit-name');
$this
->assertSession()
->fieldValueEquals('edit-name', 'Test name');
$this
->assertSession()
->fieldExists('edit-description');
$this
->assertSession()
->fieldValueEquals('edit-description', '');
try {
$this
->assertSession()
->fieldValueNotEquals('edit-name', '');
} catch (ExpectationFailedException $e) {
}
try {
$this
->assertSession()
->fieldValueNotEquals('edit-name', 'not the value');
} catch (ExpectationFailedException $e) {
}
$this
->assertSession()
->fieldValueNotEquals('name', 'not the value');
try {
$this
->assertSession()
->fieldValueNotEquals('name', 'Test name');
$this
->fail('fieldValueNotEquals failed to throw an exception.');
} catch (ExpectationException $e) {
}
$this
->assertSession()
->fieldValueEquals('name', 'Test name');
$this
->assertSession()
->fieldValueEquals('description', '');
try {
$this
->assertSession()
->fieldValueEquals('name', 'not the value');
$this
->fail('fieldValueEquals failed to throw an exception.');
} catch (ExpectationException $e) {
}
$this
->assertSession()
->fieldValueEquals('edit-test-textarea-with-newline', "Test text with\nnewline");
}
public function testFieldAssertsForButton() {
$this
->drupalGet('test-field-xpath');
$this
->assertSession()
->buttonExists('edit-save');
$this
->assertSession()
->buttonExists('Save');
$this
->assertSession()
->buttonExists('op');
$this
->assertSession()
->buttonNotExists('i-do-not-exist');
$this
->assertSession()
->buttonNotExists('I do not exist');
$this
->assertSession()
->buttonNotExists('no');
$this
->assertSession()
->buttonExists('duplicate_button');
$this
->assertSession()
->buttonExists('Duplicate button 1');
$this
->assertSession()
->buttonExists('Duplicate button 2');
$this
->assertSession()
->buttonNotExists('Rabbit');
try {
$this
->assertSession()
->buttonNotExists('Duplicate button 2');
$this
->fail('The "duplicate_button" field with the value Duplicate button 2 was not found.');
} catch (ExpectationException $e) {
}
}
public function testFieldAssertsForCheckbox() {
$this
->drupalGet('test-field-xpath');
$this
->assertSession()
->fieldExists('checkbox_enabled');
$this
->assertSession()
->fieldExists('checkbox_disabled');
$this
->assertSession()
->fieldValueEquals('checkbox_enabled', TRUE);
$this
->assertSession()
->fieldValueEquals('checkbox_disabled', FALSE);
$this
->assertSession()
->fieldValueNotEquals('checkbox_enabled', FALSE);
$this
->assertSession()
->fieldValueNotEquals('checkbox_disabled', TRUE);
$this
->assertSession()
->fieldValueEquals('checkbox_enabled', '1');
$this
->assertSession()
->fieldValueEquals('checkbox_disabled', '');
try {
$this
->assertSession()
->fieldValueNotEquals('checkbox_enabled', TRUE);
$this
->fail('fieldValueNotEquals failed to throw an exception.');
} catch (ExpectationException $e) {
}
$this
->assertSession()
->fieldValueEquals('edit-checkbox-enabled', TRUE);
$this
->assertSession()
->fieldValueEquals('edit-checkbox-disabled', FALSE);
$this
->assertSession()
->fieldValueNotEquals('edit-checkbox-enabled', FALSE);
$this
->assertSession()
->fieldValueNotEquals('edit-checkbox-disabled', TRUE);
$this
->assertSession()
->fieldExists('edit-checkbox-enabled');
$this
->assertSession()
->fieldExists('edit-checkbox-disabled');
$this
->assertSession()
->fieldExists('edit-checkbox-enabled');
$this
->assertSession()
->fieldExists('edit-checkbox-disabled');
$this
->assertSession()
->fieldValueEquals('edit-checkbox-enabled', '1');
$this
->assertSession()
->fieldValueEquals('edit-checkbox-disabled', '');
try {
$this
->assertSession()
->fieldNotExists('edit-checkbox-disabled', NULL);
$this
->fail('The "edit-checkbox-disabled" field was not found by ID, using NULL value.');
} catch (ExpectationException $e) {
}
$this
->assertSession()
->checkboxChecked('edit-checkbox-enabled');
$this
->assertSession()
->checkboxNotChecked('edit-checkbox-disabled');
try {
$this
->assertSession()
->checkboxNotChecked('incorrect_checkbox_id');
$this
->fail('The "incorrect_checkbox_id" field was found');
} catch (ExpectationException $e) {
}
try {
$this
->assertSession()
->checkboxNotChecked('edit-checkbox-enabled');
$this
->fail('The "edit-checkbox-enabled" field was not found in a checked state.');
} catch (ExpectationException $e) {
}
try {
$this
->assertSession()
->checkboxChecked('edit-checkbox-disabled');
$this
->fail('The "edit-checkbox-disabled" field was found and checked.');
} catch (ExpectationException $e) {
}
}
public function testCronRun() {
$last_cron_time = \Drupal::state()
->get('system.cron_last');
$this
->cronRun();
$this
->assertSession()
->statusCodeEquals(204);
$next_cron_time = \Drupal::state()
->get('system.cron_last');
$this
->assertGreaterThan($last_cron_time, $next_cron_time);
}
public function testInstall() {
$htaccess_filename = $this->tempFilesDirectory . '/.htaccess';
$this
->assertFileExists($htaccess_filename);
$this
->assertFalse(\Drupal::moduleHandler()
->moduleExists('update'), 'The Update module is not installed.');
}
public function testLocalTimeZone() {
$expected = 'Australia/Sydney';
$this
->assertEquals($expected, date_default_timezone_get());
$config_factory = $this->container
->get('config.factory');
$value = $config_factory
->get('system.date')
->get('timezone.default');
$this
->assertEquals($expected, $value);
$this
->assertEquals($expected, $this->rootUser
->getTimeZone());
$admin_user = $this
->drupalCreateUser([
'administer site configuration',
]);
$this
->assertEquals($expected, $admin_user
->getTimeZone());
}
public function testCheckForMetaRefresh() {
$this
->getSession()
->getDriver()
->getClient()
->followRedirects(FALSE);
$this->maximumMetaRefreshCount = 0;
$this
->drupalGet('test-meta-refresh');
$this
->assertNotEmpty($this
->cssSelect('meta[http-equiv="refresh"]'));
$this->maximumMetaRefreshCount = 1;
$this
->checkForMetaRefresh();
$this
->assertSession()
->pageTextContains('Test page text.');
}
public function testGetDefaultDriveInstance() {
putenv('MINK_DRIVER_ARGS=' . json_encode([
NULL,
[
'key1' => [
'key2' => [
'key3' => 3,
'key3.1' => 3.1,
],
],
],
]));
$this
->getDefaultDriverInstance();
$this
->assertEquals([
NULL,
[
'key1' => [
'key2' => [
'key3' => 3,
'key3.1' => 3.1,
],
],
],
], $this->minkDefaultDriverArgs);
}
public function testProfileModules() {
$this
->expectException(\InvalidArgumentException::class);
$this
->expectExceptionMessage('The module demo_umami_content does not exist.');
$this
->assertFileExists('core/profiles/demo_umami/modules/demo_umami_content/demo_umami_content.info.yml');
\Drupal::service('extension.list.module')
->getPathname('demo_umami_content');
}
public function testHtkey() {
$install_url = Url::fromUri('base:core/install.php', [
'external' => TRUE,
'absolute' => TRUE,
])
->toString();
$this
->drupalGet($install_url);
$this
->assertSession()
->statusCodeEquals(200);
unlink($this->siteDirectory . '/.htkey');
$this
->drupalGet($install_url);
$this
->assertSession()
->statusCodeEquals(403);
}
public function testPageContainsNoDuplicateId() {
$assert_session = $this
->assertSession();
$this
->drupalGet(Url::fromRoute('test_page_test.page_without_duplicate_ids'));
$assert_session
->pageContainsNoDuplicateId();
$this
->drupalGet(Url::fromRoute('test_page_test.page_with_duplicate_ids'));
$this
->expectException(ExpectationException::class);
$this
->expectExceptionMessage('The page contains a duplicate HTML ID "page-element".');
$assert_session
->pageContainsNoDuplicateId();
}
public function testEscapingAssertions() {
$assert = $this
->assertSession();
$this
->drupalGet('test-escaped-characters');
$assert
->assertNoEscaped('<div class="escaped">');
$assert
->responseContains('<div class="escaped">');
$assert
->assertEscaped('Escaped: <"\'&>');
$this
->drupalGet('test-escaped-script');
$assert
->assertNoEscaped('<div class="escaped">');
$assert
->responseContains('<div class="escaped">');
$assert
->assertEscaped("<script>alert('XSS');alert(\"XSS\");</script>");
$this
->drupalGet('test-unescaped-script');
$assert
->assertNoEscaped('<div class="unescaped">');
$assert
->responseContains('<div class="unescaped">');
$assert
->responseContains("<script>alert('Marked safe');alert(\"Marked safe\");</script>");
$assert
->assertNoEscaped("<script>alert('Marked safe');alert(\"Marked safe\");</script>");
}
public function testDeprecationHeaders() {
$this
->drupalGet('/test-deprecations');
$deprecation_messages = [];
foreach ($this
->getSession()
->getResponseHeaders() as $name => $values) {
if (preg_match('/^X-Drupal-Assertion-[0-9]+$/', $name, $matches)) {
foreach ($values as $value) {
$parameters = unserialize(urldecode($value));
if (count($parameters) === 3) {
if ($parameters[1] === 'User deprecated function') {
$deprecation_messages[] = (string) $parameters[0];
}
}
}
}
}
$this
->assertContains('Test deprecation message', $deprecation_messages);
$test_deprecation_messages = array_filter($deprecation_messages, function ($message) {
return $message === 'Test deprecation message';
});
$this
->assertCount(1, $test_deprecation_messages);
}
public function testVarDump() {
stream_filter_register("capture", StreamCapturer::class);
stream_filter_append(STDOUT, "capture");
$role = Role::load('authenticated');
dump($role);
dump($role
->id());
$this
->assertStringContainsString('Drupal\\user\\Entity\\Role', StreamCapturer::$cache);
$this
->assertStringContainsString('authenticated', StreamCapturer::$cache);
$body = $this
->drupalGet('test-page-var-dump');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertStringContainsString('<span class=sf-dump-note>', $body);
$this
->assertStringContainsString(' #<span class=sf-dump-protected title="Protected property">id</span>: "<span class=sf-dump-str title="9 characters">test_role</span>"', $body);
$this
->assertStringContainsString(' #<span class=sf-dump-protected title="Protected property">label</span>: "<span class=sf-dump-str title="9 characters">Test role</span>"', $body);
$this
->assertStringContainsString(' #<span class=sf-dump-protected title="Protected property">permissions</span>: []', $body);
$this
->assertStringContainsString(' #<span class=sf-dump-protected title="Protected property">uuid</span>: "', $body);
$this
->assertStringContainsString('</samp>}', $body);
}
public function testSimpleTestBaseUrlValidation() {
putenv('SIMPLETEST_BASE_URL=mysql://user:pass@localhost/database');
$this
->expectException(\Exception::class);
$this
->expectExceptionMessage('You must provide valid scheme for the SIMPLETEST_BASE_URL environment variable. Valid schema are: http, https.');
$this
->setupBaseUrl();
}
}