function QueryTest::testQueryUI

Same name and namespace in other branches
  1. 9 core/modules/views_ui/tests/src/Functional/QueryTest.php \Drupal\Tests\views_ui\Functional\QueryTest::testQueryUI()
  2. 8.9.x core/modules/views_ui/tests/src/Functional/QueryTest.php \Drupal\Tests\views_ui\Functional\QueryTest::testQueryUI()
  3. 11.x core/modules/views_ui/tests/src/Functional/QueryTest.php \Drupal\Tests\views_ui\Functional\QueryTest::testQueryUI()

Tests query plugins settings.

File

core/modules/views_ui/tests/src/Functional/QueryTest.php, line 42

Class

QueryTest
Tests query plugins.

Namespace

Drupal\Tests\views_ui\Functional

Code

public function testQueryUI() : void {
  $view = View::load('test_view');
  $display =& $view->getDisplay('default');
  $display['display_options']['query'] = [
    'type' => 'query_test',
  ];
  $view->save();
  // Save some query settings.
  $query_settings_path = "admin/structure/views/nojs/display/test_view/default/query";
  $random_value = $this->randomMachineName();
  $this->drupalGet($query_settings_path);
  $this->submitForm([
    'query[options][test_setting]' => $random_value,
  ], 'Apply');
  $this->submitForm([], 'Save');
  // Check that the settings are saved into the view itself.
  $view = Views::getView('test_view');
  $view->initDisplay();
  $view->initQuery();
  $this->assertEquals($random_value, $view->query->options['test_setting'], 'Query settings got saved');
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.