WizardPluginBaseKernelTest.php in Zircon Profile 8
File
core/modules/views/src/Tests/Wizard/WizardPluginBaseKernelTest.php
View source
<?php
namespace Drupal\views\Tests\Wizard;
use Drupal\Core\Form\FormState;
use Drupal\language\Entity\ConfigurableLanguage;
use Drupal\views\Tests\ViewKernelTestBase;
use Drupal\views_ui\ViewUI;
class WizardPluginBaseKernelTest extends ViewKernelTestBase {
public static $modules = array(
'language',
'system',
'user',
'views_ui',
);
protected $wizard;
protected function setUp() {
parent::setUp();
$this
->installConfig(array(
'language',
));
$this->wizard = $this->container
->get('plugin.manager.views.wizard')
->createInstance('standard:views_test_data', array());
}
public function testCreateView() {
$form = array();
$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
->assertTrue($view instanceof ViewUI, 'The created view is a ViewUI object.');
$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');
}
}