View source
<?php
namespace Drupal\Tests\views_ui\FunctionalJavascript;
use Drupal\FunctionalJavascriptTests\WebDriverTestBase;
class ViewsWizardTest extends WebDriverTestBase {
protected static $modules = [
'node',
'views',
'views_ui',
'block',
'user',
];
protected $defaultTheme = 'stark';
protected function setUp() : void {
parent::setUp();
$admin_user = $this
->drupalCreateUser([
'access administration pages',
'administer views',
]);
$this
->drupalLogin($admin_user);
}
public function testCreateViewWizard() {
$this
->drupalGet('admin/structure/views/add');
$page = $this
->getSession()
->getPage();
$label_value = 'test view';
$search_input = $page
->findField('label');
$search_input
->setValue($label_value);
$page
->findField('page[create]')
->click();
$this
->assertEquals($label_value, $page
->findField('page[title]')
->getValue());
$this
->assertEquals(str_replace(' ', '-', $label_value), $page
->findField('page[path]')
->getValue());
$page
->findField('page[link]')
->click();
$this
->assertEquals($label_value, $page
->findField('page[link_properties][title]')
->getValue());
$this
->assertSession()
->waitForElementVisible('named', [
'select',
'page[link_properties][parent]',
]);
$this
->assertSession()
->optionExists('page[link_properties][parent]', 'admin:');
$this
->assertSession()
->optionExists('page[link_properties][parent]', 'admin:entity.view.collection');
$page
->findField('block[create]')
->click();
$this
->assertEquals($label_value, $page
->findField('block[title]')
->getValue());
$page
->selectFieldOption('show[wizard_key]', 'node');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->assertNull($page
->findField('show[type]'), 'The "of type" filter is not added for nodes when there are no node types.');
$this
->assertEquals('teasers', $page
->findField('page[style][row_plugin]')
->getValue(), 'The page display format shows the expected default value.');
$this
->assertEquals('titles_linked', $page
->findField('block[style][row_plugin]')
->getValue(), 'The block display format shows the expected default value.');
$page
->selectFieldOption('show[wizard_key]', 'users');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->assertNull($page
->findField('show[type]'), 'The "of type" filter is not added for users.');
$this
->assertEquals('fields', $page
->findField('page[style][row_plugin]')
->getValue(), 'The page display format was updated to a valid value.');
$this
->assertEquals('fields', $page
->findField('block[style][row_plugin]')
->getValue(), 'The block display format was updated to a valid value.');
$this
->drupalCreateContentType([
'type' => 'page',
]);
$page
->selectFieldOption('show[wizard_key]', 'node');
$this
->assertSession()
->assertWaitOnAjaxRequest();
$this
->assertNotNull($page
->findField('show[type]'), 'The "of type" filter is added for nodes when there is at least one node type.');
$this
->assertEquals('fields', $page
->findField('page[style][row_plugin]')
->getValue(), 'The page display format was not changed from a valid value.');
$this
->assertEquals('fields', $page
->findField('block[style][row_plugin]')
->getValue(), 'The block display format was not changed from a valid value.');
}
}