function StorageTest::testDetails

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

Tests changing label, description and tag.

See also

views_ui_edit_details_form

File

core/modules/views_ui/tests/src/Functional/StorageTest.php, line 39

Class

StorageTest
Tests the UI of storage properties of views.

Namespace

Drupal\Tests\views_ui\Functional

Code

public function testDetails() : void {
  $view_name = 'test_view';
  ConfigurableLanguage::createFromLangcode('fr')->save();
  $edit = [
    'label' => $this->randomMachineName(),
    'tag' => $this->randomMachineName(),
    'description' => $this->randomMachineName(30),
    'langcode' => 'fr',
  ];
  $this->drupalGet("admin/structure/views/nojs/edit-details/{$view_name}/default");
  $this->submitForm($edit, 'Apply');
  $this->submitForm([], 'Save');
  $view = Views::getView($view_name);
  foreach ([
    'label',
    'tag',
    'description',
    'langcode',
  ] as $property) {
    $this->assertEquals($edit[$property], $view->storage
      ->get($property), "Make sure the property {$property} got probably saved.");
  }
}

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