class UserSaveTest in Drupal 10
Same name and namespace in other branches
- 8 core/modules/user/tests/src/Kernel/UserSaveTest.php \Drupal\Tests\user\Kernel\UserSaveTest
- 9 core/modules/user/tests/src/Kernel/UserSaveTest.php \Drupal\Tests\user\Kernel\UserSaveTest
Tests account saving for arbitrary new uid.
@group user
Hierarchy
- class \Drupal\KernelTests\KernelTestBase extends \PHPUnit\Framework\TestCase implements ServiceProviderInterface uses \Drupal\Tests\PhpUnitCompatibilityTrait, \Symfony\Bridge\PhpUnit\ExpectDeprecationTrait, AssertContentTrait, ConfigTestTrait, ExtensionListTestTrait, RandomGeneratorTrait, TestRequirementsTrait, PhpUnitWarnings
- class \Drupal\Tests\user\Kernel\UserSaveTest
Expanded class hierarchy of UserSaveTest
File
- core/
modules/ user/ tests/ src/ Kernel/ UserSaveTest.php, line 13
Namespace
Drupal\Tests\user\KernelView source
class UserSaveTest extends KernelTestBase {
/**
* {@inheritdoc}
*/
protected static $modules = [
'system',
'user',
];
/**
* Ensures that an existing password is unset after the user was saved.
*/
public function testExistingPasswordRemoval() {
$this
->installSchema('system', [
'sequences',
]);
$this
->installEntitySchema('user');
/** @var \Drupal\user\Entity\User $user */
$user = User::create([
'name' => $this
->randomMachineName(),
]);
$user
->save();
$user
->setExistingPassword('existing password');
$this
->assertNotNull($user->pass->existing);
$user
->save();
$this
->assertNull($user->pass->existing);
}
}