class ViewsListTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/views_ui/tests/src/Functional/ViewsListTest.php \Drupal\Tests\views_ui\Functional\ViewsListTest
- 9 core/modules/views_ui/tests/src/Functional/ViewsListTest.php \Drupal\Tests\views_ui\Functional\ViewsListTest
Tests the views list.
@group views_ui
Hierarchy
- class \Drupal\Tests\BrowserTestBase extends \PHPUnit\Framework\TestCase uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, FunctionalTestSetupTrait, TestSetupTrait, BlockCreationTrait, ConfigTestTrait, ExtensionListTestTrait, ContentTypeCreationTrait, NodeCreationTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings, UiHelperTrait, UserCreationTrait, XdebugRequestTrait
- class \Drupal\Tests\views\Functional\ViewTestBase uses ViewResultAssertionTrait
- class \Drupal\Tests\views_ui\Functional\UITestBase
- class \Drupal\Tests\views_ui\Functional\ViewsListTest
- class \Drupal\Tests\views_ui\Functional\UITestBase
- class \Drupal\Tests\views\Functional\ViewTestBase uses ViewResultAssertionTrait
Expanded class hierarchy of ViewsListTest
File
- core/
modules/ views_ui/ tests/ src/ Functional/ ViewsListTest.php, line 13
Namespace
Drupal\Tests\views_ui\FunctionalView source
class ViewsListTest extends UITestBase {
/**
* Modules to enable.
*
* @var array
*/
protected static $modules = [
'block',
'views_ui',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* A user with permission to administer views.
*
* @var \Drupal\user\Entity\User
*/
protected $adminUser;
/**
* {@inheritdoc}
*/
protected function setUp($import_test_views = TRUE, $modules = []) : void {
parent::setUp($import_test_views, $modules);
$this
->drupalPlaceBlock('local_tasks_block');
$this
->drupalPlaceBlock('local_actions_block');
$this->adminUser = $this
->drupalCreateUser([
'administer views',
]);
$this
->drupalLogin($this->adminUser);
}
/**
* Tests that the views list does not use a pager.
*/
public function testViewsListLimit() {
// Check if we can access the main views admin page.
$this
->drupalGet('admin/structure/views');
$this
->assertSession()
->statusCodeEquals(200);
$this
->assertSession()
->linkExists('Add view');
// Check that there is a link to the content view without a destination
// parameter.
$this
->drupalGet('admin/structure/views');
$links = $this
->getSession()
->getPage()
->findAll('xpath', "//a[contains(@href, 'admin/structure/views/view/content')]");
$this
->assertStringEndsWith('admin/structure/views/view/content', $links[0]
->getAttribute('href'));
$this
->assertSession()
->linkByHrefExists('admin/structure/views/view/content/delete?destination');
// Count default views to be subtracted from the limit.
$views = count(Views::getEnabledViews());
// Create multiples views.
$limit = 51;
$values = $this
->config('views.view.test_view_storage')
->get();
for ($i = 1; $i <= $limit - $views; $i++) {
$values['id'] = 'test_view_storage_new' . $i;
unset($values['uuid']);
$created = View::create($values);
$created
->save();
}
$this
->drupalGet('admin/structure/views');
// Check that all the rows are listed.
$this
->assertCount($limit, $this
->xpath('//tbody/tr[contains(@class,"views-ui-list-enabled")]'));
}
}