public function FieldUiIntegrationTest::testFieldUiIntegration in Drupal 9
Same name and namespace in other branches
- 8 core/modules/media_library/tests/src/FunctionalJavascript/FieldUiIntegrationTest.php \Drupal\Tests\media_library\FunctionalJavascript\FieldUiIntegrationTest::testFieldUiIntegration()
Tests field UI integration for media library widget.
File
- core/
modules/ media_library/ tests/ src/ FunctionalJavascript/ FieldUiIntegrationTest.php, line 36
Class
- FieldUiIntegrationTest
- Tests field UI integration for media library widget.
Namespace
Drupal\Tests\media_library\FunctionalJavascriptCode
public function testFieldUiIntegration() {
$page = $this
->getSession()
->getPage();
$assert_session = $this
->assertSession();
$user = $this
->drupalCreateUser([
'access administration pages',
'administer node fields',
'administer node form display',
]);
$this
->drupalLogin($user);
$this
->drupalGet('/admin/structure/types/manage/article/fields/add-field');
$page
->selectFieldOption('new_storage_type', 'field_ui:entity_reference:media');
$this
->assertNotNull($assert_session
->waitForField('label'));
$page
->fillField('label', 'Shatner');
$this
->waitForText('field_shatner');
$page
->pressButton('Save and continue');
$page
->pressButton('Save field settings');
$assert_session
->pageTextNotContains('Undefined index: target_bundles');
$this
->waitForFieldExists('Type One')
->check();
$this
->assertElementExistsAfterWait('css', '[name="settings[handler_settings][target_bundles][type_one]"][checked="checked"]');
$page
->checkField('settings[handler_settings][target_bundles][type_two]');
$this
->assertElementExistsAfterWait('css', '[name="settings[handler_settings][target_bundles][type_two]"][checked="checked"]');
$page
->checkField('settings[handler_settings][target_bundles][type_three]');
$this
->assertElementExistsAfterWait('css', '[name="settings[handler_settings][target_bundles][type_three]"][checked="checked"]');
$page
->pressButton('Save settings');
$assert_session
->pageTextContains('Saved Shatner configuration.');
}