Skip to content
Snippets Groups Projects
Commit 60ec9f45 authored by Daniel Wehner's avatar Daniel Wehner Committed by Tim Plunkett
Browse files

Issue #1602372 by dawehner, aspilicious, Pedro Lozano: Convert views settings to config.

parent b6b6fb3f
No related branches found
No related tags found
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
<?php
/**
* @file
* Definition of Drupal\views\Tests\UiSettingsTest.
*/
namespace Drupal\views\Tests;
use Drupal\simpletest\WebTestBase;
/**
* Tests the various settings in the views ui.
*/
class UiSettingsTest extends WebTestBase {
/**
* Stores an admin user used by the different tests.
*
* @var Drupal\user\User
*/
protected $adminUser;
public static function getInfo() {
return array(
'name' => 'Views UI settings',
'description' => 'Tests all ui related settings under admin/structure/views/settings.',
'group' => 'Views UI',
);
}
protected function setUp() {
parent::setUp('views', 'views_ui');
$this->adminUser = $this->drupalCreateUser(array('administer views'));
}
/**
* Tests the settings for the views listing page.
*/
function testViewsListing() {
$this->drupalLogin($this->adminUser);
// Configure to hide listing filters.
$edit = array(
'views_ui_show_listing_filters' => FALSE,
);
$this->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
$this->drupalGet('admin/structure/views');
$this->assertFieldByXPath("//div[contains(@class, 'ctools-export-ui-row')][contains(@class, 'element-invisible')]");
// Configure to show listing filters.
$edit = array(
'views_ui_show_listing_filters' => TRUE,
);
$this->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
$this->drupalGet('admin/structure/views');
$this->assertNoFieldByXPath("//div[contains(@class, 'ctools-export-ui-row')][contains(@class, 'element-invisible')]");
}
/**
* Tests the advanced help message setting.
*/
function testAdvancedHelpMessage() {
$this->drupalLogin($this->adminUser);
// Configure to hide the advanced help message.
$edit = array(
'views_ui_show_advanced_help_warning' => FALSE,
);
$this->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
$this->drupalGet('admin/structure/views');
$this->assertNoText(t('If you install the advanced help module'));
// Configure to show the advanced help message.
$edit = array(
'views_ui_show_advanced_help_warning' => TRUE,
);
$this->drupalPost('admin/structure/views/settings', $edit, t('Save configuration'));
$this->drupalGet('admin/structure/views');
$this->assertText(t('If you install the advanced help module'));
}
/**
* Tests the settings for the edit ui.
*/
function testEditUi() {
$this->drupalLogin($this->adminUser);
// Configure to always show the master display.
$edit = array(
'views_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(
'views_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(
'views_ui_display_embed' => TRUE,
);
$this->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
$this->assertFieldById('edit-displays-top-add-display-embed');
$edit = array(
'views_ui_display_embed' => FALSE,
);
views_invalidate_cache();
$this->drupalPost('admin/structure/views/add', $view, t('Continue & edit'));
$this->assertNoFieldById('edit-displays-top-add-display-embed');
//
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment