1 views_ui.test ViewsUIWizardDisplaysTestCase::testRevertAllDisplays()

Tests that the revert to all displays select-option works as expected.

File

core/modules/views/tests/views_ui.test, line 894
Tests Views UI Wizard.

Class

ViewsUIWizardDisplaysTestCase
Tests that displays can be correctly overridden via the user interface.

Code

function testRevertAllDisplays() {
  // Create a basic view with a page, block.
  // Because there is both a title on page and block we expect the title on
  // the block be overridden.
  $view['human_name'] = $this->randomName(16);
  $view['name'] = strtolower($this->randomName(16));
  $view['page[create]'] = 1;
  $view['page[title]'] = $this->randomName(16);
  $view['page[path]'] = $this->randomName(16);
  $view['block[create]'] = 1;
  $view['block[title]'] = $this->randomName(16);
  $this->backdropPost('admin/structure/views/add', $view, t('Continue and configure'));

  // Revert the title of the block back to the default ones, but submit some
  // new values to be sure that the new value is not stored.
  $edit = array();
  $edit['title'] = $new_block_title = $this->randomName();
  $edit['override[dropdown]'] = 'default_revert';

  $this->backdropPost("admin/structure/views/nojs/display/{$view['name']}/block/title", $edit, t('Apply'));
  $this->backdropPost("admin/structure/views/view/{$view['name']}/configure/block", array(), t('Save'));
  $this->assertText($view['page[title]']);
}