class UserBatchActionTest
Same name and namespace in other branches
- 11.x core/modules/views/tests/src/Functional/UserBatchActionTest.php \Drupal\Tests\views\Functional\UserBatchActionTest
- 10 core/modules/views/tests/src/Functional/UserBatchActionTest.php \Drupal\Tests\views\Functional\UserBatchActionTest
- 8.9.x core/modules/views/tests/src/Functional/UserBatchActionTest.php \Drupal\Tests\views\Functional\UserBatchActionTest
Tests the views bulk form with batch action.
@group action
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 extends \PHPUnit\Framework\TestCase
- class \Drupal\Tests\views\Functional\UserBatchActionTest extends \Drupal\Tests\BrowserTestBase
Expanded class hierarchy of UserBatchActionTest
See also
\Drupal\action\Plugin\views\field\BulkForm
File
-
core/
modules/ views/ tests/ src/ Functional/ UserBatchActionTest.php, line 13
Namespace
Drupal\Tests\views\FunctionalView source
class UserBatchActionTest extends BrowserTestBase {
/**
* Modules to install.
*
* @var array
*/
protected static $modules = [
// @todo Remove this in https://www.drupal.org/node/3219959
'block',
'user',
'user_batch_action_test',
'views',
];
/**
* {@inheritdoc}
*/
protected $defaultTheme = 'stark';
/**
* Tests user admin batch.
*/
public function testUserAction() {
$themes = [
'stark',
'olivero',
'claro',
];
$this->container
->get('theme_installer')
->install($themes);
$this->drupalLogin($this->rootUser);
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');
}
}
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.