class InlineFormErrorsIntegrationTest in Drupal 10
Same name and namespace in other branches
- 9 core/modules/quickedit/tests/src/FunctionalJavascript/InlineFormErrorsIntegrationTest.php \Drupal\Tests\quickedit\FunctionalJavascript\InlineFormErrorsIntegrationTest
Tests Inline Form Errors compatibility with Quick Edit.
@group quickedit
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\quickedit\FunctionalJavascript\InlineFormErrorsIntegrationTest
- class \Drupal\FunctionalJavascriptTests\WebDriverTestBase
Expanded class hierarchy of InlineFormErrorsIntegrationTest
File
- core/
modules/ quickedit/ tests/ src/ FunctionalJavascript/ InlineFormErrorsIntegrationTest.php, line 13
Namespace
Drupal\Tests\quickedit\FunctionalJavascriptView source
class InlineFormErrorsIntegrationTest extends WebDriverTestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = [
'quickedit',
'node',
'inline_form_errors',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'classy';
/**
* An editor user with permissions to access the in-place editor.
*
* @var \Drupal\user\UserInterface
*/
protected $editorUser;
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
// Create a page node type for testing.
NodeType::create([
'type' => 'page',
'name' => 'page',
])
->save();
// Create a user with the permission to use in-place editing.
$permissions = [
'access content',
'create page content',
'edit any page content',
'access contextual links',
'access in-place editing',
];
$this->editorUser = $this
->drupalCreateUser($permissions);
$this
->drupalLogin($this->editorUser);
}
/**
* Tests that the inline form errors are not visible for Quick Edit forms.
*/
public function testDisabledInlineFormErrors() {
$session = $this
->getSession();
$web_assert = $this
->assertSession();
// Create a page node.
$node = $this
->drupalCreateNode();
// Visit the node page.
$this
->drupalGet('node/' . $node
->id());
// Wait until the quick edit link is available.
$web_assert
->waitForElement('css', '.quickedit > a');
// Activate the quick editing mode.
$session
->executeScript("jQuery('article.node').find('.quickedit > a').click()");
$web_assert
->waitForElement('css', '.quickedit-toolbar');
// Clear the title field. Trigger a 'keyup' to be able to save the changes.
$session
->executeScript("jQuery('.field--name-title').text('').trigger('keyup')");
// Try to save the changes.
$save_button = $web_assert
->waitForElement('css', '.action-save.quickedit-button');
$save_button
->click();
// Wait until the form submission is complete.
$web_assert
->assertWaitOnAjaxRequest();
// Assert that no error summary from Inline Form Errors is shown.
$web_assert
->elementTextNotContains('css', '.quickedit-validation-errors', '1 error has been found');
// Assert that the required title error is shown.
$web_assert
->elementTextContains('css', '.quickedit-validation-errors', 'Title field is required.');
}
}