protected function ViewStorageTest::displayMethodTests in Views (for Drupal 7) 8.3
Tests the display related functions like getDisplaysList().
1 call to ViewStorageTest::displayMethodTests()
- ViewStorageTest::testConfigurationEntityCRUD in lib/
Drupal/ views/ Tests/ ViewStorageTest.php - Tests CRUD operations.
File
- lib/
Drupal/ views/ Tests/ ViewStorageTest.php, line 306 - Definition of Drupal\views\Tests\ViewStorageTest.
Class
- ViewStorageTest
- Tests the functionality of ViewStorage and ViewStorageController.
Namespace
Drupal\views\TestsCode
protected function displayMethodTests() {
$config['display'] = array(
'page_1' => array(
'display_options' => array(
'path' => 'test',
),
'display_plugin' => 'page',
'id' => 'page_2',
'display_title' => 'Page 1',
'position' => 1,
),
'feed_1' => array(
'display_options' => array(
'path' => 'test.xml',
),
'display_plugin' => 'feed',
'id' => 'feed',
'display_title' => 'Feed',
'position' => 2,
),
'page_2' => array(
'display_options' => array(
'path' => 'test/%/extra',
),
'display_plugin' => 'page',
'id' => 'page_2',
'display_title' => 'Page 2',
'position' => 3,
),
);
$view = $this->controller
->create($config);
$this
->assertEqual($view
->getDisplaysList(), array(
'Feed',
'Page',
), 'Make sure the display admin names are returns in alphabetic order.');
// Paths with a "%" shouldn't not be linked
$expected_paths = array();
$expected_paths[] = l('/test', 'test');
$expected_paths[] = l('/test.xml', 'test.xml');
$expected_paths[] = '/test/%/extra';
$this
->assertEqual($view
->getPaths(), $expected_paths, 'Make sure the paths in the ui are generated as expected.');
// Tests Drupal\views\ViewStorage::addDisplay()
$view = $this->controller
->create(array());
$random_title = $this
->randomName();
$id = $view
->addDisplay('page', $random_title);
$this
->assertEqual($id, 'page_1', format_string('Make sure the first display (%id_new) has the expected ID (%id)', array(
'%id_new' => $id,
'%id' => 'page_1',
)));
$this
->assertEqual($view->display[$id]['display_title'], $random_title);
$random_title = $this
->randomName();
$id = $view
->addDisplay('page', $random_title);
$this
->assertEqual($id, 'page_2', format_string('Make sure the second display (%id_new) has the expected ID (%id)', array(
'%id_new' => $id,
'%id' => 'page_2',
)));
$this
->assertEqual($view->display[$id]['display_title'], $random_title);
$id = $view
->addDisplay('page');
$this
->assertEqual($view->display[$id]['display_title'], 'Page 3');
// Tests Drupal\views\ViewStorage::generateDisplayId().
// @todo Sadly this method is not public so it cannot be tested.
// $view = $this->controller->create(array());
// $this->assertEqual($view->generateDisplayId('default'), 'default', 'The plugin ID for default is always default.');
// $this->assertEqual($view->generateDisplayId('feed'), 'feed_1', 'The generated ID for the first instance of a plugin type should have an suffix of _1.');
// $view->addDisplay('feed', 'feed title');
// $this->assertEqual($view->generateDisplayId('feed'), 'feed_2', 'The generated ID for the first instance of a plugin type should have an suffix of _2.');
// Tests Drupal\views\ViewStorage::newDisplay().
$view = $this->controller
->create(array());
$view
->newDisplay('default');
$display = $view
->newDisplay('page');
$this
->assertTrue($display instanceof Page);
$this
->assertTrue($view
->getExecutable()->displayHandlers['page_1'] instanceof Page);
$this
->assertTrue($view
->getExecutable()->displayHandlers['page_1']->default_display instanceof DefaultDisplay);
$display = $view
->newDisplay('page');
$this
->assertTrue($display instanceof Page);
$this
->assertTrue($view
->getExecutable()->displayHandlers['page_2'] instanceof Page);
$this
->assertTrue($view
->getExecutable()->displayHandlers['page_2']->default_display instanceof DefaultDisplay);
$display = $view
->newDisplay('feed');
$this
->assertTrue($display instanceof Feed);
$this
->assertTrue($view
->getExecutable()->displayHandlers['feed_1'] instanceof Feed);
$this
->assertTrue($view
->getExecutable()->displayHandlers['feed_1']->default_display instanceof DefaultDisplay);
// Tests item related methods().
$view = $this->controller
->create(array(
'base_table' => 'views_test_data',
));
$view
->addDisplay('default');
$view = $view
->getExecutable();
$display_id = 'default';
$expected_items = array();
// Tests addItem with getItem.
// Therefore add one item without any optioins and one item with some
// options.
$id1 = $view
->addItem($display_id, 'field', 'views_test_data', 'id');
$item1 = $view
->getItem($display_id, 'field', 'id');
$expected_items[$id1] = $expected_item = array(
'id' => 'id',
'table' => 'views_test_data',
'field' => 'id',
);
$this
->assertEqual($item1, $expected_item);
$options = array(
'alter' => array(
'text' => $this
->randomName(),
),
);
$id2 = $view
->addItem($display_id, 'field', 'views_test_data', 'name', $options);
$item2 = $view
->getItem($display_id, 'field', 'name');
$expected_items[$id2] = $expected_item = array(
'id' => 'name',
'table' => 'views_test_data',
'field' => 'name',
) + $options;
$this
->assertEqual($item2, $expected_item);
// Tests the expected fields from the previous additions.
$this
->assertEqual($view
->getItems('field', $display_id), $expected_items);
// Alter an existing item via setItem and check the result via getItem
// and getItems.
$item = array(
'alter' => array(
'text' => $this
->randomName(),
),
) + $item1;
$expected_items[$id1] = $item;
$view
->setItem($display_id, 'field', $id1, $item);
$this
->assertEqual($view
->getItem($display_id, 'field', 'id'), $item);
$this
->assertEqual($view
->getItems('field', $display_id), $expected_items);
}