function BasicTest::testWizardDefaultValues

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Functional/Wizard/BasicTest.php \Drupal\Tests\views\Functional\Wizard\BasicTest::testWizardDefaultValues()
  2. 10 core/modules/views/tests/src/Functional/Wizard/BasicTest.php \Drupal\Tests\views\Functional\Wizard\BasicTest::testWizardDefaultValues()
  3. 11.x core/modules/views/tests/src/Functional/Wizard/BasicTest.php \Drupal\Tests\views\Functional\Wizard\BasicTest::testWizardDefaultValues()

Tests default plugin values are populated from the wizard form.

See also

\Drupal\views\Plugin\views\display\DisplayPluginBase::mergeDefaults()

File

core/modules/views/tests/src/Functional/Wizard/BasicTest.php, line 200

Class

BasicTest
Tests creating views with the wizard and viewing them on the listing page.

Namespace

Drupal\Tests\views\Functional\Wizard

Code

public function testWizardDefaultValues() {
    $random_id = strtolower($this->randomMachineName(16));
    // Create a basic view.
    $view = [];
    $view['label'] = $this->randomMachineName(16);
    $view['id'] = $random_id;
    $view['description'] = $this->randomMachineName(16);
    $view['page[create]'] = FALSE;
    $this->drupalPostForm('admin/structure/views/add', $view, t('Save and edit'));
    // Make sure the plugin types that should not have empty options don't have.
    // Test against all values is unit tested.
    // @see \Drupal\Tests\views\Kernel\Plugin\DisplayKernelTest
    $view = Views::getView($random_id);
    $displays = $view->storage
        ->get('display');
    foreach ($displays as $display) {
        foreach ([
            'query',
            'exposed_form',
            'pager',
            'style',
            'row',
        ] as $type) {
            $this->assertFalse(empty($display['display_options'][$type]['options']), new FormattableMarkup('Default options found for @plugin.', [
                '@plugin' => $type,
            ]));
        }
    }
}

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