UserBatchActionTest.php

Same filename and directory in other branches
  1. 9 core/modules/views/tests/src/Functional/UserBatchActionTest.php
  2. 8.9.x core/modules/views/tests/src/Functional/UserBatchActionTest.php
  3. 11.x core/modules/views/tests/src/Functional/UserBatchActionTest.php

Namespace

Drupal\Tests\views\Functional

File

core/modules/views/tests/src/Functional/UserBatchActionTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\views\Functional;

use Drupal\Tests\BrowserTestBase;

/**
 * Tests the views bulk form with batch action.
 *
 * @group action
 * @see \Drupal\action\Plugin\views\field\BulkForm
 */
class UserBatchActionTest extends BrowserTestBase {
    
    /**
     * Modules to install.
     *
     * @var array
     */
    protected static $modules = [
        'user',
        'user_batch_action_test',
        'views',
    ];
    
    /**
     * {@inheritdoc}
     */
    protected $defaultTheme = 'stark';
    
    /**
     * Tests user admin batch.
     */
    public function testUserAction() : void {
        $themes = [
            'stark',
            'olivero',
            'claro',
        ];
        $this->container
            ->get('theme_installer')
            ->install($themes);
        $this->drupalLogin($this->createUser([
            'administer users',
        ]));
        foreach ($themes as $theme) {
            $this->config('system.theme')
                ->set('default', $theme)
                ->save();
            $this->drupalGet('admin/people');
            $edit = [
                'user_bulk_form[0]' => TRUE,
                'action' => 'user_batch_action_test_action',
            ];
            $this->submitForm($edit, 'Apply');
            $this->assertSession()
                ->pageTextContains('One item has been processed.');
            $this->assertSession()
                ->pageTextContains($theme . ' theme used');
        }
    }

}

Classes

Title Deprecated Summary
UserBatchActionTest Tests the views bulk form with batch action.

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.