You are here

public function FieldUITest::testFieldUI in Drupal 10

Same name and namespace in other branches
  1. 8 core/modules/views_ui/tests/src/Functional/FieldUITest.php \Drupal\Tests\views_ui\Functional\FieldUITest::testFieldUI()
  2. 9 core/modules/views_ui/tests/src/Functional/FieldUITest.php \Drupal\Tests\views_ui\Functional\FieldUITest::testFieldUI()

Tests the UI of field handlers.

File

core/modules/views_ui/tests/src/Functional/FieldUITest.php, line 31

Class

FieldUITest
Tests the UI of field handlers.

Namespace

Drupal\Tests\views_ui\Functional

Code

public function testFieldUI() {

  // Ensure the field is not marked as hidden on the first run.
  $this
    ->drupalGet('admin/structure/views/view/test_view/edit');
  $this
    ->assertSession()
    ->pageTextContains('Views test: Name');
  $this
    ->assertSession()
    ->pageTextNotContains('Views test: Name [hidden]');

  // Hides the field and check whether the hidden label is appended.
  $edit_handler_url = 'admin/structure/views/nojs/handler/test_view/default/field/name';
  $this
    ->drupalGet($edit_handler_url);
  $this
    ->submitForm([
    'options[exclude]' => TRUE,
  ], 'Apply');
  $this
    ->assertSession()
    ->pageTextContains('Views test: Name [hidden]');

  // Ensure that the expected tokens appear in the UI.
  $edit_handler_url = 'admin/structure/views/nojs/handler/test_view/default/field/age';
  $this
    ->drupalGet($edit_handler_url);
  $xpath = '//details[@id="edit-options-alter-help"]/ul/li';
  $this
    ->assertSession()
    ->elementTextEquals('xpath', $xpath, '{{ age }} == Age');
  $edit_handler_url = 'admin/structure/views/nojs/handler/test_view/default/field/id';
  $this
    ->drupalGet($edit_handler_url);
  $this
    ->assertSession()
    ->elementTextEquals('xpath', "{$xpath}[1]", '{{ age }} == Age');
  $this
    ->assertSession()
    ->elementTextEquals('xpath', "{$xpath}[2]", '{{ id }} == ID');
  $edit_handler_url = 'admin/structure/views/nojs/handler/test_view/default/field/name';
  $this
    ->drupalGet($edit_handler_url);
  $this
    ->assertSession()
    ->elementTextEquals('xpath', "{$xpath}[1]", '{{ age }} == Age');
  $this
    ->assertSession()
    ->elementTextEquals('xpath', "{$xpath}[2]", '{{ id }} == ID');
  $this
    ->assertSession()
    ->elementTextEquals('xpath', "{$xpath}[3]", '{{ name }} == Name');
  $result = $this
    ->xpath('//details[@id="edit-options-more"]');
  $this
    ->assertEmpty($result, "Container 'more' is empty and should not be displayed.");

  // Ensure that dialog titles are not escaped.
  $edit_groupby_url = 'admin/structure/views/nojs/handler/test_view/default/field/name';
  $this
    ->assertSession()
    ->linkByHrefNotExists($edit_groupby_url, 0, 'No aggregation link found.');

  // Enable aggregation on the view.
  $edit = [
    'group_by' => TRUE,
  ];
  $this
    ->drupalGet('/admin/structure/views/nojs/display/test_view/default/group_by');
  $this
    ->submitForm($edit, 'Apply');
  $this
    ->assertSession()
    ->linkByHrefExists($edit_groupby_url, 0, 'Aggregation link found.');
  $edit_handler_url = '/admin/structure/views/ajax/handler-group/test_view/default/field/name';
  $this
    ->drupalGet($edit_handler_url);
  $data = Json::decode($this
    ->getSession()
    ->getPage()
    ->getContent());
  $this
    ->assertEquals('Configure aggregation settings for field Views test: Name', $data[3]['dialogOptions']['title']);
}