protected function ViewStorageTest::displayMethodTests

Tests the display related functions like getDisplaysList().

1 call to ViewStorageTest::displayMethodTests()
ViewStorageTest::testConfigurationEntityCRUD in drupal/core/modules/views/lib/Drupal/views/Tests/ViewStorageTest.php
Tests CRUD operations.

File

drupal/core/modules/views/lib/Drupal/views/Tests/ViewStorageTest.php, line 192
Definition of Drupal\views\Tests\ViewStorageTest.

Class

ViewStorageTest
Tests the functionality of View and ViewStorageController.

Namespace

Drupal\views\Tests

Code

protected function displayMethodTests() {

  // Enable the system module so l() can work using url_alias table.
  $this
    ->enableModules(array(
    'system',
  ));
  $this
    ->installSchema('system', 'url_alias');
  $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\Plugin\Core\Entity\View::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',
  )));
  $display = $view
    ->get('display');
  $this
    ->assertEqual($display[$id]['display_title'], $random_title);
  $random_title = $this
    ->randomName();
  $id = $view
    ->addDisplay('page', $random_title);
  $display = $view
    ->get('display');
  $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($display[$id]['display_title'], $random_title);
  $id = $view
    ->addDisplay('page');
  $display = $view
    ->get('display');
  $this
    ->assertEqual($display[$id]['display_title'], 'Page 3');

  // Tests Drupal\views\Plugin\Core\Entity\View::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\Plugin\Core\Entity\View::newDisplay().
  $view = $this->controller
    ->create(array());
  $view
    ->newDisplay('default');
  $display = $view
    ->newDisplay('page');
  $this
    ->assertEqual($display, 'page_1');
  $display = $view
    ->newDisplay('page');
  $this
    ->assertEqual($display, 'page_2');
  $display = $view
    ->newDisplay('feed');
  $this
    ->assertEqual($display, 'feed_1');
  $executable = $view
    ->get('executable');
  $executable
    ->initDisplay();
  $this
    ->assertTrue($executable->displayHandlers
    ->get('page_1') instanceof Page);
  $this
    ->assertTrue($executable->displayHandlers
    ->get('page_1')->default_display instanceof DefaultDisplay);
  $this
    ->assertTrue($executable->displayHandlers
    ->get('page_2') instanceof Page);
  $this
    ->assertTrue($executable->displayHandlers
    ->get('page_2')->default_display instanceof DefaultDisplay);
  $this
    ->assertTrue($executable->displayHandlers
    ->get('feed_1') instanceof Feed);
  $this
    ->assertTrue($executable->displayHandlers
    ->get('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
    ->get('executable');
  $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',
    'plugin_id' => 'numeric',
  );
  $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',
    'plugin_id' => 'standard',
  ) + $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);

  // Test removeItem method.
  unset($expected_items[$id2]);
  $view
    ->removeItem($display_id, 'field', $id2);
  $this
    ->assertEqual($view
    ->getItems('field', $display_id), $expected_items);
}