WizardPluginBaseKernelTest.php in Drupal 9
File
core/modules/views/tests/src/Kernel/Wizard/WizardPluginBaseKernelTest.php
View source
<?php
namespace Drupal\Tests\views\Kernel\Wizard;
use Drupal\Core\Form\FormState;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\Tests\views\Kernel\ViewsKernelTestBase;
use Drupal\views_ui\ViewUI;
class WizardPluginBaseKernelTest extends ViewsKernelTestBase {
protected static $modules = [
'language',
'system',
'user',
'views_ui',
];
protected $wizard;
protected function setUp($import_test_views = TRUE) : void {
parent::setUp();
$this
->installConfig([
'language',
]);
$this->wizard = $this->container
->get('plugin.manager.views.wizard')
->createInstance('standard:views_test_data', []);
}
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();
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
->assertEquals($random_id, $view
->get('id'));
$this
->assertEquals($random_label, $view
->get('label'));
$this
->assertEquals($random_description, $view
->get('description'));
$this
->assertEquals('views_test_data', $view
->get('base_table'));
$this
->assertEquals('it', $view
->get('langcode'));
}
}