You are here

DisplayExtenderUITest.php in Zircon Profile 8

Same filename and directory in other branches
  1. 8.0 core/modules/views_ui/src/Tests/DisplayExtenderUITest.php

File

core/modules/views_ui/src/Tests/DisplayExtenderUITest.php
View source
<?php

/**
 * @file
 * Contains \Drupal\views_ui\Tests\DisplayExtenderUITest.
 */
namespace Drupal\views_ui\Tests;

use Drupal\views\Views;

/**
 * Tests the display extender UI.
 *
 * @group views_ui
 */
class DisplayExtenderUITest extends UITestBase {

  /**
   * Views used by this test.
   *
   * @var array
   */
  public static $testViews = array(
    'test_view',
  );

  /**
   * Tests the display extender UI.
   */
  public function testDisplayExtenderUI() {
    $this
      ->config('views.settings')
      ->set('display_extenders', array(
      'display_extender_test',
    ))
      ->save();
    $view = Views::getView('test_view');
    $view_edit_url = "admin/structure/views/view/{$view->storage->id()}/edit";
    $display_option_url = 'admin/structure/views/nojs/display/test_view/default/test_extender_test_option';
    $this
      ->drupalGet($view_edit_url);
    $this
      ->assertLinkByHref($display_option_url, 0, 'Make sure the option defined by the test display extender appears in the UI.');
    $random_text = $this
      ->randomMachineName();
    $this
      ->drupalPostForm($display_option_url, array(
      'test_extender_test_option' => $random_text,
    ), t('Apply'));
    $this
      ->assertLink($random_text);
    $this
      ->drupalPostForm(NULL, array(), t('Save'));
    $view = Views::getView($view->storage
      ->id());
    $view
      ->initDisplay();
    $display_extender_options = $view->display_handler
      ->getOption('display_extenders');
    $this
      ->assertEqual($display_extender_options['display_extender_test']['test_extender_test_option'], $random_text, 'Make sure that the display extender option got saved.');
  }

}

Classes

Namesort descending Description
DisplayExtenderUITest Tests the display extender UI.