
| Current Path : /var/www/html1/bbp/web/core/modules/views_ui/tests/src/Functional/ |
Linux ift1.ift-informatik.de 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 |
| Current File : /var/www/html1/bbp/web/core/modules/views_ui/tests/src/Functional/SettingsTest.php |
<?php
namespace Drupal\Tests\views_ui\Functional;
use Drupal\Core\Database\Database;
/**
* Tests all ui related settings under admin/structure/views/settings.
*
* @group views_ui
*/
class SettingsTest extends UITestBase {
/**
* Stores an admin user used by the different tests.
*
* @var \Drupal\user\User
*/
protected $adminUser;
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setUp($import_test_views = TRUE): void {
parent::setUp($import_test_views);
$this->drupalPlaceBlock('local_tasks_block');
}
/**
* Tests the settings for the edit ui.
*/
public function testEditUI() {
$this->drupalLogin($this->adminUser);
// Test the settings tab exists.
$this->drupalGet('admin/structure/views');
$this->assertSession()->linkNotExists('admin/structure/views/settings');
// Test the confirmation message.
$this->drupalPostForm('admin/structure/views/settings', [], 'Save configuration');
$this->assertText('The configuration options have been saved.');
// Configure to always show the master display.
$edit = [
'ui_show_master_display' => TRUE,
];
$this->drupalPostForm('admin/structure/views/settings', $edit, 'Save configuration');
$view = [];
$view['label'] = $this->randomMachineName(16);
$view['id'] = strtolower($this->randomMachineName(16));
$view['description'] = $this->randomMachineName(16);
$view['page[create]'] = TRUE;
$view['page[title]'] = $this->randomMachineName(16);
$view['page[path]'] = $this->randomMachineName(16);
$this->drupalPostForm('admin/structure/views/add', $view, 'Save and edit');
// 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 = [
'ui_show_master_display' => FALSE,
];
$this->drupalPostForm('admin/structure/views/settings', $edit, 'Save configuration');
$view['page[create]'] = FALSE;
$this->drupalPostForm('admin/structure/views/add', $view, 'Save and edit');
// Create a view with an additional display, so master should be hidden.
$view['page[create]'] = TRUE;
$view['id'] = strtolower($this->randomMachineName());
$this->drupalPostForm('admin/structure/views/add', $view, 'Save and edit');
$this->assertSession()->linkNotExists('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 embeddable display.
$edit = [
'ui_show_display_embed' => TRUE,
];
$this->drupalPostForm('admin/structure/views/settings', $edit, 'Save configuration');
$view['id'] = strtolower($this->randomMachineName());
$this->drupalPostForm('admin/structure/views/add', $view, 'Save and edit');
$this->assertSession()->buttonExists('edit-displays-top-add-display-embed');
$edit = [
'ui_show_display_embed' => FALSE,
];
$this->drupalPostForm('admin/structure/views/settings', $edit, 'Save configuration');
$this->drupalPostForm('admin/structure/views/add', $view, 'Save and edit');
$this->assertSession()->buttonNotExists('edit-displays-top-add-display-embed');
// Configure to hide/show the sql at the preview.
$edit = [
'ui_show_sql_query_enabled' => FALSE,
];
$this->drupalPostForm('admin/structure/views/settings', $edit, 'Save configuration');
$view['id'] = strtolower($this->randomMachineName());
$this->drupalPostForm('admin/structure/views/add', $view, 'Save and edit');
$this->submitForm([], 'Update preview');
$xpath = $this->xpath('//div[@class="views-query-info"]/pre');
$this->assertCount(0, $xpath, 'The views sql is hidden.');
$edit = [
'ui_show_sql_query_enabled' => TRUE,
];
$this->drupalPostForm('admin/structure/views/settings', $edit, 'Save configuration');
$view['id'] = strtolower($this->randomMachineName());
$this->drupalPostForm('admin/structure/views/add', $view, 'Save and edit');
$this->submitForm([], 'Update preview');
$xpath = $this->xpath('//div[@class="views-query-info"]//pre');
$this->assertCount(1, $xpath, 'The views sql is shown.');
$this->assertStringNotContainsString('db_condition_placeholder', $xpath[0]->getText(), 'No placeholders are shown in the views sql.');
$this->assertStringContainsString(Database::getConnection()->escapeField("node_field_data.status") . " = '1'", $xpath[0]->getText(), 'The placeholders in the views sql is replace by the actual value.');
// Test the advanced settings form.
// Test the confirmation message.
$this->drupalPostForm('admin/structure/views/settings/advanced', [], 'Save configuration');
$this->assertText('The configuration options have been saved.');
$edit = [
'skip_cache' => TRUE,
'sql_signature' => TRUE,
];
$this->drupalPostForm('admin/structure/views/settings/advanced', $edit, 'Save configuration');
$this->assertSession()->checkboxChecked('edit-skip-cache');
$this->assertSession()->checkboxChecked('edit-sql-signature');
// Test the "Clear Views' cache" button.
$this->drupalPostForm('admin/structure/views/settings/advanced', [], "Clear Views' cache");
$this->assertText('The cache has been cleared.');
}
}