UserSaveTest.php

Same filename and directory in other branches
  1. 9 core/modules/user/tests/src/Kernel/UserSaveTest.php
  2. 8.9.x core/modules/user/tests/src/Kernel/UserSaveTest.php
  3. 10 core/modules/user/tests/src/Kernel/UserSaveTest.php

Namespace

Drupal\Tests\user\Kernel

File

core/modules/user/tests/src/Kernel/UserSaveTest.php

View source
<?php

declare (strict_types=1);
namespace Drupal\Tests\user\Kernel;

use Drupal\KernelTests\KernelTestBase;
use Drupal\user\Entity\User;

/**
 * Tests account saving for arbitrary new uid.
 *
 * @group user
 */
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() : void {
        $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);
    }

}

Classes

Title Deprecated Summary
UserSaveTest Tests account saving for arbitrary new uid.

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