function FieldUITest::testFieldLabel

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

Tests the field labels.

File

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

Class

FieldUITest
Tests the UI of field handlers.

Namespace

Drupal\Tests\views_ui\Functional

Code

public function testFieldLabel() {
    // Create a view with unformatted style and make sure the fields have no
    // labels by default.
    $view = [];
    $view['label'] = $this->randomMachineName(16);
    $view['id'] = strtolower($this->randomMachineName(16));
    $view['description'] = $this->randomMachineName(16);
    $view['show[wizard_key]'] = 'node';
    $view['page[create]'] = TRUE;
    $view['page[style][style_plugin]'] = 'default';
    $view['page[title]'] = $this->randomMachineName(16);
    $view['page[path]'] = $view['id'];
    $this->drupalGet('admin/structure/views/add');
    $this->submitForm($view, 'Save and edit');
    $view = Views::getView($view['id']);
    $view->initHandlers();
    $this->assertEquals('', $view->field['title']->options['label'], 'The field label for normal styles are empty.');
}

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