class EntityReferenceAdminTest in Drupal 10
Same name in this branch
- 10 core/modules/field/tests/src/Functional/EntityReference/EntityReferenceAdminTest.php \Drupal\Tests\field\Functional\EntityReference\EntityReferenceAdminTest
- 10 core/modules/field/tests/src/FunctionalJavascript/EntityReference/EntityReferenceAdminTest.php \Drupal\Tests\field\FunctionalJavascript\EntityReference\EntityReferenceAdminTest
Same name and namespace in other branches
- 8 core/modules/field/tests/src/FunctionalJavascript/EntityReference/EntityReferenceAdminTest.php \Drupal\Tests\field\FunctionalJavascript\EntityReference\EntityReferenceAdminTest
- 9 core/modules/field/tests/src/FunctionalJavascript/EntityReference/EntityReferenceAdminTest.php \Drupal\Tests\field\FunctionalJavascript\EntityReference\EntityReferenceAdminTest
Tests for the administrative UI.
@group entity_reference
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\FunctionalJavascriptTests\WebDriverTestBase
- class \Drupal\Tests\field\FunctionalJavascript\EntityReference\EntityReferenceAdminTest uses FieldUiTestTrait
- class \Drupal\FunctionalJavascriptTests\WebDriverTestBase
Expanded class hierarchy of EntityReferenceAdminTest
File
- core/
modules/ field/ tests/ src/ FunctionalJavascript/ EntityReference/ EntityReferenceAdminTest.php, line 18
Namespace
Drupal\Tests\field\FunctionalJavascript\EntityReferenceView source
class EntityReferenceAdminTest extends WebDriverTestBase {
use FieldUiTestTrait;
/**
* Modules to install.
*
* Enable path module to ensure that the selection handler does not fail for
* entities with a path field.
*
* @var array
*/
protected static $modules = [
'node',
'field_ui',
'path',
'taxonomy',
'block',
'views_ui',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* The name of the content type created for testing purposes.
*
* @var string
*/
protected $type;
/**
* The name of a second content type to be used as a target of entity
* references.
*
* @var string
*/
protected $target_type;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$this
->drupalPlaceBlock('system_breadcrumb_block');
// Create a content type, with underscores.
$type_name = strtolower($this
->randomMachineName(8)) . '_test';
$type = $this
->drupalCreateContentType([
'name' => $type_name,
'type' => $type_name,
]);
$this->type = $type
->id();
// Create a second content type, to be a target for entity reference fields.
$type_name = strtolower($this
->randomMachineName(8)) . '_test';
$type = $this
->drupalCreateContentType([
'name' => $type_name,
'type' => $type_name,
]);
$this->target_type = $type
->id();
// Change the title field label.
$fields = \Drupal::service('entity_field.manager')
->getFieldDefinitions('node', $type
->id());
$fields['title']
->getConfig($type
->id())
->setLabel($type
->id() . ' title')
->save();
// Add text field to the second content type.
FieldStorageConfig::create([
'field_name' => 'field_text',
'entity_type' => 'node',
'type' => 'text',
'entity_types' => [
'node',
],
])
->save();
FieldConfig::create([
'label' => 'Text Field',
'field_name' => 'field_text',
'entity_type' => 'node',
'bundle' => $this->target_type,
'settings' => [],
'required' => FALSE,
])
->save();
// Create test user.
$admin_user = $this
->drupalCreateUser([
'access content',
'administer node fields',
'administer node display',
'administer views',
'create ' . $this->type . ' content',
'edit own ' . $this->type . ' content',
]);
$this
->drupalLogin($admin_user);
}
/**
* Tests the Entity Reference Admin UI.
*/
public function testFieldAdminHandler() {
$bundle_path = 'admin/structure/types/manage/' . $this->type;
$page = $this
->getSession()
->getPage();
$assert_session = $this
->assertSession();
// First step: 'Add new field' on the 'Manage fields' page.
$this
->drupalGet($bundle_path . '/fields/add-field');
// Check if the commonly referenced entity types appear in the list.
$this
->assertSession()
->optionExists('edit-new-storage-type', 'field_ui:entity_reference:node');
$this
->assertSession()
->optionExists('edit-new-storage-type', 'field_ui:entity_reference:user');
$page
->findField('new_storage_type')
->setValue('entity_reference');
$assert_session
->waitForField('label')
->setValue('Test');
$machine_name = $assert_session
->waitForElement('xpath', '//*[@id="edit-label-machine-name-suffix"]/span[contains(text(), "field_test")]');
$this
->assertNotEmpty($machine_name);
$page
->pressButton('Save and continue');
// Node should be selected by default.
$this
->assertSession()
->fieldValueEquals('settings[target_type]', 'node');
// Check that all entity types can be referenced.
$this
->assertFieldSelectOptions('settings[target_type]', array_keys(\Drupal::entityTypeManager()
->getDefinitions()));
// Second step: 'Field settings' form.
$this
->submitForm([], 'Save field settings');
// The base handler should be selected by default.
$this
->assertSession()
->fieldValueEquals('settings[handler]', 'default:node');
// The base handler settings should be displayed.
$entity_type_id = 'node';
// Check that the type label is correctly displayed.
$assert_session
->pageTextContains('Content type');
// Check that sort options are not yet visible.
$sort_by = $page
->findField('settings[handler_settings][sort][field]');
$this
->assertNotEmpty($sort_by);
$this
->assertFalse($sort_by
->isVisible(), 'The "sort by" options are hidden.');
$bundles = $this->container
->get('entity_type.bundle.info')
->getBundleInfo($entity_type_id);
foreach ($bundles as $bundle_name => $bundle_info) {
$this
->assertSession()
->fieldExists('settings[handler_settings][target_bundles][' . $bundle_name . ']');
}
reset($bundles);
// Initially, no bundles are selected so no sort options are available.
$this
->assertFieldSelectOptions('settings[handler_settings][sort][field]', [
'_none',
]);
// Select this bundle so that standard sort options are available.
$page
->findField('settings[handler_settings][target_bundles][' . $this->type . ']')
->setValue($this->type);
$assert_session
->assertWaitOnAjaxRequest();
// Test that a non-translatable base field is a sort option.
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'nid');
// Test that a translatable base field is a sort option.
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'title');
// Test that a configurable field is a sort option.
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'body.value');
// Test that a field not on this bundle is not a sort option.
$assert_session
->optionNotExists('settings[handler_settings][sort][field]', 'field_text.value');
// Test that the title option appears once, with the default label.
$title_options = $sort_by
->findAll('xpath', 'option[@value="title"]');
$this
->assertEquals(1, count($title_options));
$this
->assertEquals('Title', $title_options[0]
->getText());
// Also select the target bundle so that field_text is also available.
$page
->findField('settings[handler_settings][target_bundles][' . $this->target_type . ']')
->setValue($this->target_type);
$assert_session
->assertWaitOnAjaxRequest();
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'nid');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'title');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'body.value');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'field_text.value');
// Select only the target bundle. The options should be the same.
$page
->findField('settings[handler_settings][target_bundles][' . $this->type . ']')
->uncheck();
$assert_session
->assertWaitOnAjaxRequest();
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'nid');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'title');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'body.value');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'field_text.value');
// Exception: the title option has a different label.
$title_options = $sort_by
->findAll('xpath', 'option[@value="title"]');
$this
->assertEquals(1, count($title_options));
$this
->assertEquals($this->target_type . ' title', $title_options[0]
->getText());
// Test the sort settings.
// Option 0: no sort.
$this
->assertSession()
->fieldValueEquals('settings[handler_settings][sort][field]', '_none');
$sort_direction = $page
->findField('settings[handler_settings][sort][direction]');
$this
->assertFalse($sort_direction
->isVisible());
// Option 1: sort by field.
$sort_by
->setValue('nid');
$assert_session
->assertWaitOnAjaxRequest();
$this
->assertTrue($sort_direction
->isVisible());
$this
->assertSession()
->fieldValueEquals('settings[handler_settings][sort][direction]', 'ASC');
// Test that the sort-by options are sorted.
$labels = array_map(function (NodeElement $element) {
return $element
->getText();
}, $sort_by
->findAll('xpath', 'option'));
for ($i = count($labels) - 1, $sorted = TRUE; $i > 0; --$i) {
if ($labels[$i - 1] > $labels[$i]) {
$sorted = FALSE;
break;
}
}
$this
->assertTrue($sorted, 'The "sort by" options are sorted.');
// Set back to no sort.
$sort_by
->setValue('_none');
$assert_session
->assertWaitOnAjaxRequest();
$this
->assertFalse($sort_direction
->isVisible());
// Sort by nid, then select no bundles. The sort fields and sort direction
// should not display.
$sort_by
->setValue('nid');
$assert_session
->assertWaitOnAjaxRequest();
foreach ($bundles as $bundle_name => $bundle_info) {
$this
->assertSession()
->fieldExists('settings[handler_settings][target_bundles][' . $bundle_name . ']');
$page
->findField('settings[handler_settings][target_bundles][' . $bundle_name . ']')
->uncheck();
$assert_session
->assertWaitOnAjaxRequest();
}
$this
->assertFalse($sort_by
->isVisible(), 'The "sort by" options are hidden.');
$this
->assertFalse($sort_direction
->isVisible());
// Select a bundle and check the same two fields.
$page
->findField('settings[handler_settings][target_bundles][' . $this->target_type . ']')
->setValue($this->target_type);
$assert_session
->assertWaitOnAjaxRequest();
$this
->assertTrue($sort_by
->isVisible(), 'The "sort by" options are visible.');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'field_text.value');
// Un-select the bundle and check the same two fields.
$page
->findField('settings[handler_settings][target_bundles][' . $this->target_type . ']')
->uncheck();
$assert_session
->assertWaitOnAjaxRequest();
$this
->assertFalse($sort_by
->isVisible(), 'The "sort by" options are hidden yet again.');
$this
->assertFieldSelectOptions('settings[handler_settings][sort][field]', [
'_none',
]);
// Third step: confirm.
$page
->findField('settings[handler_settings][target_bundles][' . $this->target_type . ']')
->setValue($this->target_type);
$assert_session
->assertWaitOnAjaxRequest();
$this
->submitForm([
'required' => '1',
], 'Save settings');
// Check that the field appears in the overview form.
$this
->assertSession()
->elementTextContains('xpath', '//table[@id="field-overview"]//tr[@id="field-test"]/td[1]', "Test");
// Check that the field settings form can be submitted again, even when the
// field is required.
// The first 'Edit' link is for the Body field.
$this
->clickLink('Edit', 1);
$this
->submitForm([], 'Save settings');
// Switch the target type to 'taxonomy_term' and check that the settings
// specific to its selection handler are displayed.
$field_name = 'node.' . $this->type . '.field_test';
$edit = [
'settings[target_type]' => 'taxonomy_term',
];
$this
->drupalGet($bundle_path . '/fields/' . $field_name . '/storage');
$this
->submitForm($edit, 'Save field settings');
$this
->drupalGet($bundle_path . '/fields/' . $field_name);
$this
->assertSession()
->fieldExists('settings[handler_settings][auto_create]');
// Switch the target type to 'user' and check that the settings specific to
// its selection handler are displayed.
$field_name = 'node.' . $this->type . '.field_test';
$edit = [
'settings[target_type]' => 'user',
];
$this
->drupalGet($bundle_path . '/fields/' . $field_name . '/storage');
$this
->submitForm($edit, 'Save field settings');
$this
->drupalGet($bundle_path . '/fields/' . $field_name);
$this
->assertSession()
->fieldValueEquals('settings[handler_settings][filter][type]', '_none');
$this
->assertSession()
->fieldValueEquals('settings[handler_settings][sort][field]', '_none');
$assert_session
->optionNotExists('settings[handler_settings][sort][field]', 'nid');
$assert_session
->optionExists('settings[handler_settings][sort][field]', 'uid');
// Check that sort direction is visible only when a sort field is selected.
$sort_direction = $page
->findField('settings[handler_settings][sort][direction]');
$this
->assertFalse($sort_direction
->isVisible());
$sort_by
->setValue('name');
$assert_session
->assertWaitOnAjaxRequest();
$this
->assertTrue($sort_direction
->isVisible());
// Switch the target type to 'node'.
$field_name = 'node.' . $this->type . '.field_test';
$edit = [
'settings[target_type]' => 'node',
];
$this
->drupalGet($bundle_path . '/fields/' . $field_name . '/storage');
$this
->submitForm($edit, 'Save field settings');
// Try to select the views handler.
$this
->drupalGet($bundle_path . '/fields/' . $field_name);
$page
->findField('settings[handler]')
->setValue('views');
$views_text = (string) new FormattableMarkup('No eligible views were found. <a href=":create">Create a view</a> with an <em>Entity Reference</em> display, or add such a display to an <a href=":existing">existing view</a>.', [
':create' => Url::fromRoute('views_ui.add')
->toString(),
':existing' => Url::fromRoute('entity.view.collection')
->toString(),
]);
$assert_session
->waitForElement('xpath', '//a[contains(text(), "Create a view")]');
$assert_session
->responseContains($views_text);
$this
->submitForm([], 'Save settings');
// If no eligible view is available we should see a message.
$assert_session
->pageTextContains('The views entity selection mode requires a view.');
// Enable the entity_reference_test module which creates an eligible view.
$this->container
->get('module_installer')
->install([
'entity_reference_test',
]);
$this
->resetAll();
$this
->drupalGet($bundle_path . '/fields/' . $field_name);
$page
->findField('settings[handler]')
->setValue('views');
$assert_session
->waitForField('settings[handler_settings][view][view_and_display]')
->setValue('test_entity_reference:entity_reference_1');
$this
->submitForm([], 'Save settings');
$assert_session
->pageTextContains('Saved Test configuration.');
// Switch the target type to 'entity_test'.
$edit = [
'settings[target_type]' => 'entity_test',
];
$this
->drupalGet($bundle_path . '/fields/' . $field_name . '/storage');
$this
->submitForm($edit, 'Save field settings');
$this
->drupalGet($bundle_path . '/fields/' . $field_name);
$page
->findField('settings[handler]')
->setValue('views');
$assert_session
->waitForField('settings[handler_settings][view][view_and_display]')
->setValue('test_entity_reference_entity_test:entity_reference_1');
$edit = [
'required' => FALSE,
];
$this
->submitForm($edit, 'Save settings');
$assert_session
->pageTextContains('Saved Test configuration.');
}
/**
* Checks if a select element contains the specified options.
*
* @param string $name
* The field name.
* @param array $expected_options
* An array of expected options.
*
* @internal
*/
protected function assertFieldSelectOptions(string $name, array $expected_options) : void {
$field = $this
->assertSession()
->selectExists($name);
$options = $field
->findAll('xpath', 'option');
$optgroups = $field
->findAll('xpath', 'optgroup');
$nested_options = [];
foreach ($optgroups as $optgroup) {
$nested_options[] = $optgroup
->findAll('xpath', 'option');
}
$options = array_merge($options, ...$nested_options);
array_walk($options, function (NodeElement &$option) {
$option = $option
->getAttribute('value');
});
$this
->assertEqualsCanonicalizing($expected_options, $options);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
BlockCreationTrait:: |
protected | function | Creates a block instance based on default settings. Aliased as: drupalPlaceBlock | |
BrowserHtmlDebugTrait:: |
protected | property | The Base URI to use for links to the output files. | |
BrowserHtmlDebugTrait:: |
protected | property | Class name for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Counter for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Counter storage for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | Directory name for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | property | HTML output enabled. | |
BrowserHtmlDebugTrait:: |
protected | property | The file name to write the list of URLs to. | |
BrowserHtmlDebugTrait:: |
protected | property | HTML output test ID. | |
BrowserHtmlDebugTrait:: |
protected | function | Formats HTTP headers as string for HTML output logging. | |
BrowserHtmlDebugTrait:: |
protected | function | Provides a Guzzle middleware handler to log every response received. | |
BrowserHtmlDebugTrait:: |
protected | function | Logs a HTML output message in a text file. | |
BrowserHtmlDebugTrait:: |
protected | function | Creates the directory to store browser output. | |
BrowserTestBase:: |
protected | property | The base URL. | |
BrowserTestBase:: |
protected | property | The config importer that can be used in a test. | |
BrowserTestBase:: |
protected | property | An array of custom translations suitable for drupal_rewrite_settings(). | |
BrowserTestBase:: |
protected | property | The database prefix of this test run. | |
BrowserTestBase:: |
protected | property | Mink session manager. | |
BrowserTestBase:: |
protected | property | Mink default driver params. | |
BrowserTestBase:: |
protected | property | The original container. | |
BrowserTestBase:: |
protected | property | The original array of shutdown function callbacks. | |
BrowserTestBase:: |
protected | property | ||
BrowserTestBase:: |
protected | property | The profile to install as a basis for testing. | 8 |
BrowserTestBase:: |
protected | property | The app root. | |
BrowserTestBase:: |
protected | property | Browser tests are run in separate processes to prevent collisions between code that may be loaded by tests. | |
BrowserTestBase:: |
protected | property | Time limit in seconds for the test. | |
BrowserTestBase:: |
protected | property | The translation file directory for the test environment. | |
BrowserTestBase:: |
protected | function | Clean up the test environment. | |
BrowserTestBase:: |
protected | function | Configuration accessor for tests. Returns non-overridden configuration. | |
BrowserTestBase:: |
public static | function | Ensures test files are deletable. | |
BrowserTestBase:: |
protected | function | Gets an instance of the default Mink driver. | |
BrowserTestBase:: |
protected | function | Obtain the HTTP client for the system under test. | |
BrowserTestBase:: |
protected | function | Helper function to get the options of select field. | |
BrowserTestBase:: |
public | function | Returns Mink session. | |
BrowserTestBase:: |
protected | function | Get session cookies from current session. | |
BrowserTestBase:: |
protected | function |
Retrieves the current calling line in the class under test. Overrides BrowserHtmlDebugTrait:: |
|
BrowserTestBase:: |
public | function | Installs Drupal into the test site. | 1 |
BrowserTestBase:: |
protected | function | Registers additional Mink sessions. | |
BrowserTestBase:: |
protected | function | Sets up the root application path. | |
BrowserTestBase:: |
public static | function | ||
BrowserTestBase:: |
protected | function | Transforms a nested array into a flat array suitable for submitForm(). | |
BrowserTestBase:: |
protected | function | Performs an xpath search on the contents of the internal browser. | |
BrowserTestBase:: |
public | function | Prevents serializing any properties. | |
ConfigTestTrait:: |
protected | function | Returns a ConfigImporter object to import test configuration. | |
ConfigTestTrait:: |
protected | function | Copies configuration objects from source storage to target storage. | |
ContentTypeCreationTrait:: |
protected | function | Creates a custom content type based on default settings. Aliased as: drupalCreateContentType | |
EntityReferenceAdminTest:: |
protected | property |
The theme to install as the default for testing. Overrides BrowserTestBase:: |
|
EntityReferenceAdminTest:: |
protected static | property |
Modules to install. Overrides BrowserTestBase:: |
|
EntityReferenceAdminTest:: |
protected | property | The name of a second content type to be used as a target of entity references. | |
EntityReferenceAdminTest:: |
protected | property | The name of the content type created for testing purposes. | |
EntityReferenceAdminTest:: |
protected | function | Checks if a select element contains the specified options. | |
EntityReferenceAdminTest:: |
protected | function |
Overrides BrowserTestBase:: |
|
EntityReferenceAdminTest:: |
public | function | Tests the Entity Reference Admin UI. | |
ExtensionListTestTrait:: |
protected | function | Gets the path for the specified module. | |
ExtensionListTestTrait:: |
protected | function | Gets the path for the specified theme. | |
FieldUiTestTrait:: |
public | function | Adds an existing field through the Field UI. | |
FieldUiTestTrait:: |
public | function | Creates a new field through the Field UI. | |
FieldUiTestTrait:: |
public | function | Deletes a field through the Field UI. | |
FunctionalTestSetupTrait:: |
protected | property | The flag to set 'apcu_ensure_unique_prefix' setting. | |
FunctionalTestSetupTrait:: |
protected | property | The class loader to use for installation and initialization of setup. | |
FunctionalTestSetupTrait:: |
protected | property | The "#1" admin user. | |
FunctionalTestSetupTrait:: |
protected | function | Execute the non-interactive installer. | 1 |
FunctionalTestSetupTrait:: |
protected | function | Returns all supported database driver installer objects. | |
FunctionalTestSetupTrait:: |
protected | function | Initialize various configurations post-installation. | |
FunctionalTestSetupTrait:: |
protected | function | Initializes the kernel after installation. | |
FunctionalTestSetupTrait:: |
protected | function | Initialize settings created during install. | |
FunctionalTestSetupTrait:: |
protected | function | Initializes user 1 for the site to be installed. | |
FunctionalTestSetupTrait:: |
protected | function | Installs the default theme defined by `static::$defaultTheme` when needed. | |
FunctionalTestSetupTrait:: |
protected | function | Returns the parameters that will be used when the test installs Drupal. | 4 |
FunctionalTestSetupTrait:: |
protected | function | Prepares the current environment for running the test. | 20 |
FunctionalTestSetupTrait:: |
protected | function | Creates a mock request and sets it on the generator. | |
FunctionalTestSetupTrait:: |
protected | function | Prepares site settings and services before installation. | 2 |
FunctionalTestSetupTrait:: |
protected | function | Resets and rebuilds the environment after setup. | |
FunctionalTestSetupTrait:: |
protected | function | Rebuilds \Drupal::getContainer(). | |
FunctionalTestSetupTrait:: |
protected | function | Resets all data structures after having enabled new modules. | |
FunctionalTestSetupTrait:: |
protected | function | Changes parameters in the services.yml file. | |
FunctionalTestSetupTrait:: |
protected | function | Sets up the base URL based upon the environment variable. | |
FunctionalTestSetupTrait:: |
protected | function | Rewrites the settings.php file of the test site. | |
NodeCreationTrait:: |
protected | function | Creates a node based on default settings. Aliased as: drupalCreateNode | |
NodeCreationTrait:: |
public | function | Get a node from the database based on its title. Aliased as: drupalGetNodeByTitle | |
PhpUnitWarnings:: |
private static | property | Deprecation warnings from PHPUnit to raise with @trigger_error(). | |
PhpUnitWarnings:: |
public | function | Converts PHPUnit deprecation warnings to E_USER_DEPRECATED. | |
RandomGeneratorTrait:: |
protected | property | The random generator. | |
RandomGeneratorTrait:: |
protected | function | Gets the random generator for the utility methods. | |
RandomGeneratorTrait:: |
protected | function | Generates a unique random string containing letters and numbers. | |
RandomGeneratorTrait:: |
public | function | Generates a random PHP object. | |
RandomGeneratorTrait:: |
public | function | Generates a pseudo-random string of ASCII characters of codes 32 to 126. | |
RandomGeneratorTrait:: |
public | function | Callback for random string validation. | |
RefreshVariablesTrait:: |
protected | function | Refreshes in-memory configuration and state information. | 1 |
SessionTestTrait:: |
protected | property | The name of the session cookie. | |
SessionTestTrait:: |
protected | function | Generates a session cookie name. | |
SessionTestTrait:: |
protected | function | Returns the session name in use on the child site. | |
StorageCopyTrait:: |
protected static | function | Copy the configuration from one storage to another and remove stale items. | |
TestRequirementsTrait:: |
private | function | Checks missing module requirements. | |
TestRequirementsTrait:: |
protected | function | Check module requirements for the Drupal use case. | |
TestRequirementsTrait:: |
protected static | function | Returns the Drupal root directory. | |
TestSetupTrait:: |
protected static | property | An array of config object names that are excluded from schema checking. | |
TestSetupTrait:: |
protected | property | The dependency injection container used in the test. | |
TestSetupTrait:: |
protected | property | The DrupalKernel instance used in the test. | |
TestSetupTrait:: |
protected | property | The site directory of the original parent site. | |
TestSetupTrait:: |
protected | property | The private file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The public file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The site directory of this test run. | |
TestSetupTrait:: |
protected | property | Set to TRUE to strict check all configuration saved. | 1 |
TestSetupTrait:: |
protected | property | The temporary file directory for the test environment. | |
TestSetupTrait:: |
protected | property | The test run ID. | |
TestSetupTrait:: |
protected | function | Changes the database connection to the prefixed one. | |
TestSetupTrait:: |
protected | function | Gets the config schema exclusions for this test. | |
TestSetupTrait:: |
public static | function | Returns the database connection to the site under test. | |
TestSetupTrait:: |
protected | function | Generates a database prefix for running tests. | 1 |
UiHelperTrait:: |
protected | property | The current user logged in using the Mink controlled browser. | |
UiHelperTrait:: |
protected | property | The number of meta refresh redirects to follow, or NULL if unlimited. | |
UiHelperTrait:: |
protected | property | The number of meta refresh redirects followed during ::drupalGet(). | |
UiHelperTrait:: |
protected | function | Builds an absolute URL from a system path or a URL object. | |
UiHelperTrait:: |
protected | function | Checks for meta refresh tag and if found call drupalGet() recursively. | |
UiHelperTrait:: |
protected | function | Clicks the element with the given CSS selector. | |
UiHelperTrait:: |
protected | function | Follows a link by complete name. | |
UiHelperTrait:: |
protected | function | Searches elements using a CSS selector in the raw content. | |
UiHelperTrait:: |
protected | function | Translates a CSS expression to its XPath equivalent. | |
UiHelperTrait:: |
protected | function | Retrieves a Drupal path or an absolute path. | |
UiHelperTrait:: |
protected | function | Logs in a user using the Mink controlled browser. | |
UiHelperTrait:: |
protected | function | Logs a user out of the Mink controlled browser and confirms. | |
UiHelperTrait:: |
protected | function | Returns whether a given user account is logged in. | |
UiHelperTrait:: |
protected | function | Takes a path and returns an absolute path. | |
UiHelperTrait:: |
protected | function | Retrieves the plain-text content from the current page. | |
UiHelperTrait:: |
protected | function | Get the current URL from the browser. | |
UiHelperTrait:: |
protected | function | Determines if test is using DrupalTestBrowser. | |
UiHelperTrait:: |
protected | function | Prepare for a request to testing site. | 1 |
UiHelperTrait:: |
protected | function | Fills and submits a form. | |
UserCreationTrait:: |
protected | function | Checks whether a given list of permission names is valid. | |
UserCreationTrait:: |
protected | function | Creates an administrative role. | |
UserCreationTrait:: |
protected | function | Creates a role with specified permissions. Aliased as: drupalCreateRole | |
UserCreationTrait:: |
protected | function | Create a user with a given set of permissions. Aliased as: drupalCreateUser | |
UserCreationTrait:: |
protected | function | Grant permissions to a user role. | |
UserCreationTrait:: |
protected | function | Switch the current logged in user. | |
UserCreationTrait:: |
protected | function | Creates a random user account and sets it as current user. | |
WebDriverTestBase:: |
protected | property | Disables CSS animations in tests for more reliable testing. | |
WebDriverTestBase:: |
protected | property | Determines if a test should fail on JavaScript console errors. | 1 |
WebDriverTestBase:: |
protected | property |
Mink class for the default driver to use. Overrides BrowserTestBase:: |
1 |
WebDriverTestBase:: |
protected | function | Waits for the given time or until the given JS condition becomes TRUE. | |
WebDriverTestBase:: |
public | function |
Returns WebAssert object. Overrides UiHelperTrait:: |
|
WebDriverTestBase:: |
protected | function | Creates a screenshot. | |
WebDriverTestBase:: |
protected | function | Triggers a test failure if a JavaScript error was encountered. | |
WebDriverTestBase:: |
protected | function |
Gets the current Drupal javascript settings and parses into an array. Overrides BrowserTestBase:: |
|
WebDriverTestBase:: |
protected | function |
Returns headers in HTML output format. Overrides BrowserHtmlDebugTrait:: |
|
WebDriverTestBase:: |
protected | function |
Get the Mink driver args from an environment variable, if it is set. Can
be overridden in a derived class so it is possible to use a different
value for a subset of tests, e.g. the JavaScript tests. Overrides BrowserTestBase:: |
|
WebDriverTestBase:: |
protected | function |
Visits the front page when initializing Mink. Overrides BrowserTestBase:: |
|
WebDriverTestBase:: |
protected | function |
Initializes Mink sessions. Overrides BrowserTestBase:: |
|
WebDriverTestBase:: |
protected | function |
Install modules defined by `static::$modules`. Overrides FunctionalTestSetupTrait:: |
|
WebDriverTestBase:: |
protected | function |
Overrides BrowserTestBase:: |
|
XdebugRequestTrait:: |
protected | function | Adds xdebug cookies, from request setup. |