PasswordHashingLegacyTest.php
Same filename in other branches
Namespace
Drupal\Tests\Core\PasswordFile
-
core/
tests/ Drupal/ Tests/ Core/ Password/ PasswordHashingLegacyTest.php
View source
<?php
declare (strict_types=1);
namespace Drupal\Tests\Core\Password;
use Drupal\Core\Password\PhpassHashedPassword;
use Drupal\Tests\UnitTestCase;
/**
* Unit tests for deprecated password hashing API.
*
* @group System
* @group legacy
*/
class PasswordHashingLegacyTest extends UnitTestCase {
/**
* @covers \Drupal\Core\Password\PhpassHashedPassword
*/
public function testDeprecation() : void {
$this->expectDeprecation('\\Drupal\\Core\\Password\\PhpassHashedPassword is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. The password compatibility service has been moved to the phpass module. Use \\Drupal\\phpass\\Password\\PhpassHashedPassword instead. See https://www.drupal.org/node/3322420');
$this->expectDeprecation('Calling Drupal\\Core\\Password\\PhpassHashedPasswordBase::__construct() with numeric $countLog2 as the first parameter is deprecated in drupal:10.1.0 and is removed from drupal:11.0.0. Use PhpassHashedPasswordInterface::__construct() with $corePassword parameter set to an instance of Drupal\\Core\\Password\\PhpPassword instead. See https://www.drupal.org/node/3322420');
$passwordService = new PhpassHashedPassword(4);
$this->assertInstanceOf(PhpassHashedPassword::class, $passwordService);
}
}
Classes
Title | Deprecated | Summary |
---|---|---|
PasswordHashingLegacyTest | Unit tests for deprecated password hashing API. |
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.