function ViewsUIWizardOverrideDisplaysTestCase::testOverrideDisplays
Tests that displays can be overridden via the UI.
File
-
tests/
views_ui.test, line 873
Class
- ViewsUIWizardOverrideDisplaysTestCase
- Tests that displays can be correctly overridden via the user interface.
Code
public function testOverrideDisplays() {
// Create a basic view that shows all content, with a page and a block
// display.
$view['human_name'] = $this->randomName(16);
$view['name'] = strtolower($this->randomName(16));
$view['page[create]'] = 1;
$view['page[path]'] = $this->randomName(16);
$view['block[create]'] = 1;
$view_path = $view['page[path]'];
$this->drupalPost('admin/structure/views/add', $view, t('Save & exit'));
// Configure its title. Since the page and block both started off with the
// same (empty) title in the views wizard, we expect the wizard to have set
// things up so that they both inherit from the default display, and we
// therefore only need to change that to have it take effect for both.
$edit = array();
$edit['title'] = $original_title = $this->randomName(16);
$edit['override[dropdown]'] = 'default';
$this->drupalPost("admin/structure/views/nojs/display/{$view['name']}/page/title", $edit, t('Apply'));
$this->drupalPost("admin/structure/views/view/{$view['name']}/edit/page", array(), t('Save'));
// Put the block into the first sidebar region, and make sure it will not
// display on the view's page display (since we will be searching for the
// presence/absence of the view's title in both the page and the block).
$this->drupalGet('admin/structure/block');
$edit = array();
$edit["blocks[views_{$view['name']}-block][region]"] = 'sidebar_first';
$this->drupalPost('admin/structure/block', $edit, t('Save blocks'));
$edit = array();
$edit['visibility'] = BLOCK_VISIBILITY_NOTLISTED;
$edit['pages'] = $view_path;
$this->drupalPost("admin/structure/block/manage/views/{$view['name']}-block/configure", $edit, t('Save block'));
// Add a node that will appear in the view, so that the block will actually
// be displayed.
$this->drupalCreateNode();
// Make sure the title appears in both the page and the block.
$this->drupalGet($view_path);
$this->assertText($original_title);
$this->drupalGet('');
$this->assertText($original_title);
// Change the title for the page display only, and make sure that is the
// only one that is changed.
$edit = array();
$edit['title'] = $new_title = $this->randomName(16);
$edit['override[dropdown]'] = 'page';
$this->drupalPost("admin/structure/views/nojs/display/{$view['name']}/page/title", $edit, t('Apply'));
$this->drupalPost("admin/structure/views/view/{$view['name']}/edit/page", array(), t('Save'));
$this->drupalGet($view_path);
$this->assertText($new_title);
$this->assertNoText($original_title);
$this->drupalGet('');
$this->assertText($original_title);
$this->assertNoText($new_title);
}