Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@..
Decoded Output download
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Security\Core\Tests\User;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Security\Core\Exception\UserNotFoundException;
use Symfony\Component\Security\Core\User\InMemoryUser;
use Symfony\Component\Security\Core\User\InMemoryUserProvider;
class InMemoryUserProviderTest extends TestCase
{
public function testConstructor()
{
$provider = $this->createProvider();
$user = $provider->loadUserByIdentifier('fabien');
$this->assertEquals('foo', $user->getPassword());
$this->assertEquals(['ROLE_USER'], $user->getRoles());
$this->assertFalse($user->isEnabled());
}
public function testRefresh()
{
$user = new InMemoryUser('fabien', 'bar');
$provider = $this->createProvider();
$refreshedUser = $provider->refreshUser($user);
$this->assertEquals('foo', $refreshedUser->getPassword());
$this->assertEquals(['ROLE_USER'], $refreshedUser->getRoles());
$this->assertFalse($refreshedUser->isEnabled());
}
protected function createProvider(): InMemoryUserProvider
{
return new InMemoryUserProvider([
'fabien' => [
'password' => 'foo',
'enabled' => false,
'roles' => ['ROLE_USER'],
],
]);
}
public function testCreateUser()
{
$provider = new InMemoryUserProvider();
$provider->createUser(new InMemoryUser('fabien', 'foo'));
$user = $provider->loadUserByIdentifier('fabien');
$this->assertEquals('foo', $user->getPassword());
}
public function testCreateUserAlreadyExist()
{
$provider = new InMemoryUserProvider();
$provider->createUser(new InMemoryUser('fabien', 'foo'));
$this->expectException(\LogicException::class);
$provider->createUser(new InMemoryUser('fabien', 'foo'));
}
public function testLoadUserByIdentifierDoesNotExist()
{
$this->expectException(UserNotFoundException::class);
(new InMemoryUserProvider())->loadUserByIdentifier('fabien');
}
}
?>
Did this file decode correctly?
Original Code
<?php
/*
* This file is part of the Symfony package.
*
* (c) Fabien Potencier <[email protected]>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Symfony\Component\Security\Core\Tests\User;
use PHPUnit\Framework\TestCase;
use Symfony\Component\Security\Core\Exception\UserNotFoundException;
use Symfony\Component\Security\Core\User\InMemoryUser;
use Symfony\Component\Security\Core\User\InMemoryUserProvider;
class InMemoryUserProviderTest extends TestCase
{
public function testConstructor()
{
$provider = $this->createProvider();
$user = $provider->loadUserByIdentifier('fabien');
$this->assertEquals('foo', $user->getPassword());
$this->assertEquals(['ROLE_USER'], $user->getRoles());
$this->assertFalse($user->isEnabled());
}
public function testRefresh()
{
$user = new InMemoryUser('fabien', 'bar');
$provider = $this->createProvider();
$refreshedUser = $provider->refreshUser($user);
$this->assertEquals('foo', $refreshedUser->getPassword());
$this->assertEquals(['ROLE_USER'], $refreshedUser->getRoles());
$this->assertFalse($refreshedUser->isEnabled());
}
protected function createProvider(): InMemoryUserProvider
{
return new InMemoryUserProvider([
'fabien' => [
'password' => 'foo',
'enabled' => false,
'roles' => ['ROLE_USER'],
],
]);
}
public function testCreateUser()
{
$provider = new InMemoryUserProvider();
$provider->createUser(new InMemoryUser('fabien', 'foo'));
$user = $provider->loadUserByIdentifier('fabien');
$this->assertEquals('foo', $user->getPassword());
}
public function testCreateUserAlreadyExist()
{
$provider = new InMemoryUserProvider();
$provider->createUser(new InMemoryUser('fabien', 'foo'));
$this->expectException(\LogicException::class);
$provider->createUser(new InMemoryUser('fabien', 'foo'));
}
public function testLoadUserByIdentifierDoesNotExist()
{
$this->expectException(UserNotFoundException::class);
(new InMemoryUserProvider())->loadUserByIdentifier('fabien');
}
}
Function Calls
None |
Stats
MD5 | e15128f4d9a7af9171a154d0bc2b9ebc |
Eval Count | 0 |
Decode Time | 90 ms |