123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?php
- /*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Symfony\Tests\Component\Security\Authentication\Token;
- use Symfony\Component\Security\Authentication\Token\UsernamePasswordToken;
- use Symfony\Component\Security\Role\Role;
- class UsernamePasswordTokenTest extends \PHPUnit_Framework_TestCase
- {
- public function testConstructor()
- {
- $token = new UsernamePasswordToken('foo', 'bar');
- $this->assertFalse($token->isAuthenticated());
- $token = new UsernamePasswordToken('foo', 'bar', array('ROLE_FOO'));
- $this->assertEquals(array(new Role('ROLE_FOO')), $token->getRoles());
- $this->assertTrue($token->isAuthenticated());
- }
- /**
- * @expectedException LogicException
- */
- public function testSetAuthenticatedToTrue()
- {
- $token = new UsernamePasswordToken('foo', 'bar');
- $token->setAuthenticated(true);
- }
- public function testSetAuthenticatedToFalse()
- {
- $token = new UsernamePasswordToken('foo', 'bar');
- $token->setAuthenticated(false);
- $this->assertFalse($token->isAuthenticated());
- }
- public function testEraseCredentials()
- {
- $token = new UsernamePasswordToken('foo', 'bar');
- $token->eraseCredentials();
- $this->assertEquals('', $token->getCredentials());
- }
- }
|