function ShortcutSetsTest::testShortcutSetSwitchNoSetName in Zircon Profile 8.0
Same name and namespace in other branches
- 8 core/modules/shortcut/src/Tests/ShortcutSetsTest.php \Drupal\shortcut\Tests\ShortcutSetsTest::testShortcutSetSwitchNoSetName()
Tests switching a user's shortcut set without providing a new set name.
File
- core/
modules/ shortcut/ src/ Tests/ ShortcutSetsTest.php, line 148 - Contains \Drupal\shortcut\Tests\ShortcutSetsTest.
Class
- ShortcutSetsTest
- Create, view, edit, delete, and change shortcut sets.
Namespace
Drupal\shortcut\TestsCode
function testShortcutSetSwitchNoSetName() {
$edit = array(
'set' => 'new',
);
$this
->drupalPostForm('user/' . $this->adminUser
->id() . '/shortcuts', $edit, t('Change set'));
$this
->assertText(t('The new set label is required.'));
$current_set = shortcut_current_displayed_set($this->adminUser);
$this
->assertEqual($current_set
->id(), $this->set
->id(), 'Attempting to switch to a new shortcut set without providing a set name does not succeed.');
$this
->assertFieldByXPath("//input[@name='label' and contains(concat(' ', normalize-space(@class), ' '), ' error ')]", NULL, 'The new set label field has the error class');
}