function ShortcutSetsTest::testShortcutSetSwitchNoSetName
Tests switching a user's shortcut set without providing a new set name.
File
- 
              core/
modules/ shortcut/ tests/ src/ Functional/ ShortcutSetsTest.php, line 148  
Class
- ShortcutSetsTest
 - Create, view, edit, delete, and change shortcut sets.
 
Namespace
Drupal\Tests\shortcut\FunctionalCode
public function testShortcutSetSwitchNoSetName() {
  $edit = [
    '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');
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.