function SettingsTest::testEditUI

Tests the settings for the edit ui.

File

drupal/core/modules/views/lib/Drupal/views/Tests/UI/SettingsTest.php, line 33
Definition of Drupal\views\Tests\UI\SettingsTest.

Class

SettingsTest
Tests the various settings in the views UI.

Namespace

Drupal\views\Tests\UI

Code

function testEditUI() {
  $this
    ->drupalLogin($this->adminUser);

  // Test the settings tab exists.
  $this
    ->drupalGet('admin/structure/views');
  $this
    ->assertLinkByHref('admin/structure/views/settings');

  // Configure to always show the master display.
  $edit = array(
    'ui_show_master_display' => TRUE,
  );
  $this
    ->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
  $view = array();
  $view['human_name'] = $this
    ->randomName(16);
  $view['name'] = strtolower($this
    ->randomName(16));
  $view['description'] = $this
    ->randomName(16);
  $view['page[create]'] = TRUE;
  $view['page[title]'] = $this
    ->randomName(16);
  $view['page[path]'] = $this
    ->randomName(16);
  $this
    ->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
  $this
    ->assertLink(t('Master') . '*');

  // Configure to not always show the master display.
  // If you have a view without a page or block the master display should be
  // still shown.
  $edit = array(
    'ui_show_master_display' => FALSE,
  );
  $this
    ->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
  $view['page[create]'] = FALSE;
  $this
    ->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
  $this
    ->assertLink(t('Master') . '*');

  // Create a view with an additional display, so master should be hidden.
  $view['page[create]'] = TRUE;
  $this
    ->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
  $this
    ->assertNoLink(t('Master'));

  // Configure to always show the advanced settings.
  // @todo It doesn't seem to be a way to test this as this works just on js.
  // Configure to show the embedable display.
  $edit = array(
    'ui_show_display_embed' => TRUE,
  );
  $this
    ->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
  $this
    ->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
  $this
    ->assertFieldById('edit-displays-top-add-display-embed');
  $edit = array(
    'ui_show_display_embed' => FALSE,
  );
  $this
    ->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
  views_invalidate_cache();
  $this
    ->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
  $this
    ->assertNoFieldById('edit-displays-top-add-display-embed');

  // Configure to hide/show the sql at the preview.
  $edit = array(
    'ui_show_sql_query_enabled' => FALSE,
  );
  $this
    ->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
  $this
    ->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
  $this
    ->drupalPost(NULL, array(), t('Update preview'));
  $xpath = $this
    ->xpath('//div[@class="views-query-info"]/pre');
  $this
    ->assertEqual(count($xpath), 0, 'The views sql is hidden.');
  $edit = array(
    'ui_show_sql_query_enabled' => TRUE,
  );
  $this
    ->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
  $this
    ->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
  $this
    ->drupalPost(NULL, array(), t('Update preview'));
  $xpath = $this
    ->xpath('//div[@class="views-query-info"]//pre');
  $this
    ->assertEqual(count($xpath), 1, 'The views sql is shown.');
  $this
    ->assertFalse(strpos($xpath[0], 'db_condition_placeholder') !== FALSE, 'No placeholders are shown in the views sql.');
  $this
    ->assertTrue(strpos($xpath[0], "node.status = '1'") !== FALSE, 'The placeholders in the views sql is replace by the actual value.');
}