You are here

public function WizardPluginBaseKernelTest::testCreateView in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/views/tests/src/Kernel/Wizard/WizardPluginBaseKernelTest.php \Drupal\Tests\views\Kernel\Wizard\WizardPluginBaseKernelTest::testCreateView()

Tests the creating of a view.

See also

\Drupal\views\Plugin\views\wizard\WizardPluginBase

File

core/modules/views/tests/src/Kernel/Wizard/WizardPluginBaseKernelTest.php, line 45

Class

WizardPluginBaseKernelTest
Tests the wizard base plugin class.

Namespace

Drupal\Tests\views\Kernel\Wizard

Code

public function testCreateView() {
  $form = [];
  $form_state = new FormState();
  $form = $this->wizard
    ->buildForm($form, $form_state);
  $random_id = strtolower($this
    ->randomMachineName());
  $random_label = $this
    ->randomMachineName();
  $random_description = $this
    ->randomMachineName();

  // Add a new language and mark it as default.
  ConfigurableLanguage::createFromLangcode('it')
    ->save();
  $this
    ->config('system.site')
    ->set('default_langcode', 'it')
    ->save();
  $form_state
    ->setValues([
    'id' => $random_id,
    'label' => $random_label,
    'description' => $random_description,
    'base_table' => 'views_test_data',
  ]);
  $this->wizard
    ->validateView($form, $form_state);
  $view = $this->wizard
    ->createView($form, $form_state);
  $this
    ->assertInstanceOf(ViewUI::class, $view);
  $this
    ->assertEqual($view
    ->get('id'), $random_id);
  $this
    ->assertEqual($view
    ->get('label'), $random_label);
  $this
    ->assertEqual($view
    ->get('description'), $random_description);
  $this
    ->assertEqual($view
    ->get('base_table'), 'views_test_data');
  $this
    ->assertEqual($view
    ->get('langcode'), 'it');
}