class ViewsWizardTest
Same name and namespace in other branches
- 11.x core/modules/views_ui/tests/src/FunctionalJavascript/ViewsWizardTest.php \Drupal\Tests\views_ui\FunctionalJavascript\ViewsWizardTest
Tests views creation wizard.
@group views_ui
Hierarchy
- class \Drupal\Tests\BrowserTestBase uses \Drupal\Core\Test\FunctionalTestSetupTrait, \Drupal\Tests\UiHelperTrait, \Drupal\Core\Test\TestSetupTrait, \Drupal\Tests\block\Traits\BlockCreationTrait, \Drupal\FunctionalTests\AssertLegacyTrait, \Drupal\Tests\RandomGeneratorTrait, \Drupal\Tests\node\Traits\NodeCreationTrait, \Drupal\Tests\node\Traits\ContentTypeCreationTrait, \Drupal\Tests\ConfigTestTrait, \Drupal\Tests\TestRequirementsTrait, \Drupal\Tests\user\Traits\UserCreationTrait, \Drupal\Tests\XdebugRequestTrait, \Drupal\Tests\Traits\PhpUnitWarnings, \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, \Drupal\Tests\ExtensionListTestTrait implements \PHPUnit\Framework\TestCase
- class \Drupal\FunctionalJavascriptTests\WebDriverTestBase implements \Drupal\Tests\BrowserTestBase
- class \Drupal\Tests\views_ui\FunctionalJavascript\ViewsWizardTest implements \Drupal\FunctionalJavascriptTests\WebDriverTestBase
- class \Drupal\FunctionalJavascriptTests\WebDriverTestBase implements \Drupal\Tests\BrowserTestBase
Expanded class hierarchy of ViewsWizardTest
See also
core/modules/views_ui/js/views-admin.js
File
-
core/
modules/ views_ui/ tests/ src/ FunctionalJavascript/ ViewsWizardTest.php, line 13
Namespace
Drupal\Tests\views_ui\FunctionalJavascriptView source
class ViewsWizardTest extends WebDriverTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'node',
'views',
'views_ui',
'block',
'user',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* {@inheritdoc}
*/
protected function setUp() : void {
parent::setUp();
$admin_user = $this->drupalCreateUser([
'access administration pages',
'administer views',
]);
$this->drupalLogin($admin_user);
}
/**
* Tests creating a View using the wizard.
*/
public function testCreateViewWizard() {
$this->drupalGet('admin/structure/views/add');
$page = $this->getSession()
->getPage();
// Set a view name, this should be used to prepopulate a number of other
// fields when creating displays.
$label_value = 'test view';
$search_input = $page->findField('label');
$search_input->setValue($label_value);
$page->findField('page[create]')
->click();
// Test if the title and path have been populated.
$this->assertEquals($label_value, $page->findField('page[title]')
->getValue());
$this->assertEquals(str_replace(' ', '-', $label_value), $page->findField('page[path]')
->getValue());
// Create a menu item.
$page->findField('page[link]')
->click();
$this->assertEquals($label_value, $page->findField('page[link_properties][title]')
->getValue());
// Wait for conditional field to show.
$this->assertSession()
->waitForElementVisible('named', [
'select',
'page[link_properties][parent]',
]);
// Assert a menu can be selected as a parent.
$this->assertSession()
->optionExists('page[link_properties][parent]', 'admin:');
// Assert a parent menu item can be selected from within a menu.
$this->assertSession()
->optionExists('page[link_properties][parent]', 'admin:entity.view.collection');
// Add a block display.
$page->findField('block[create]')
->click();
$this->assertEquals($label_value, $page->findField('block[title]')
->getValue());
// Select the entity type to display and test that the type selector is
// shown when expected.
$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.');
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.