summaryrefslogtreecommitdiffstats
path: root/Tests/Core/Encoder/BasePasswordEncoderTest.php
diff options
context:
space:
mode:
authorBernhard Schussek <bschussek@gmail.com>2013-09-16 10:03:00 +0200
committerFabien Potencier <fabien.potencier@gmail.com>2013-09-18 09:16:41 +0200
commit5a6aaab2c35213f5ca7e57f061fbb2675e2ece35 (patch)
tree461816fef8160401dc113d3fef190fb437d01cc7 /Tests/Core/Encoder/BasePasswordEncoderTest.php
parent513a354be10f0ed87933adcb788e48660f8e6ed4 (diff)
downloadsymfony-security-5a6aaab2c35213f5ca7e57f061fbb2675e2ece35.zip
symfony-security-5a6aaab2c35213f5ca7e57f061fbb2675e2ece35.tar.gz
symfony-security-5a6aaab2c35213f5ca7e57f061fbb2675e2ece35.tar.bz2
[Security] Split the component into 3 sub-components Core, ACL, HTTP
Diffstat (limited to 'Tests/Core/Encoder/BasePasswordEncoderTest.php')
-rw-r--r--Tests/Core/Encoder/BasePasswordEncoderTest.php85
1 files changed, 0 insertions, 85 deletions
diff --git a/Tests/Core/Encoder/BasePasswordEncoderTest.php b/Tests/Core/Encoder/BasePasswordEncoderTest.php
deleted file mode 100644
index 2ef1dcc..0000000
--- a/Tests/Core/Encoder/BasePasswordEncoderTest.php
+++ /dev/null
@@ -1,85 +0,0 @@
-<?php
-
-/*
- * This file is part of the Symfony package.
- *
- * (c) Fabien Potencier <fabien@symfony.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
-
-namespace Symfony\Component\Security\Tests\Core\Encoder;
-
-use Symfony\Component\Security\Core\Encoder\BasePasswordEncoder;
-
-class PasswordEncoder extends BasePasswordEncoder
-{
- public function encodePassword($raw, $salt)
- {
- }
-
- public function isPasswordValid($encoded, $raw, $salt)
- {
- }
-}
-
-class BasePasswordEncoderTest extends \PHPUnit_Framework_TestCase
-{
- public function testComparePassword()
- {
- $this->assertTrue($this->invokeComparePasswords('password', 'password'));
- $this->assertFalse($this->invokeComparePasswords('password', 'foo'));
- }
-
- public function testDemergePasswordAndSalt()
- {
- $this->assertEquals(array('password', 'salt'), $this->invokeDemergePasswordAndSalt('password{salt}'));
- $this->assertEquals(array('password', ''), $this->invokeDemergePasswordAndSalt('password'));
- $this->assertEquals(array('', ''), $this->invokeDemergePasswordAndSalt(''));
- }
-
- public function testMergePasswordAndSalt()
- {
- $this->assertEquals('password{salt}', $this->invokeMergePasswordAndSalt('password', 'salt'));
- $this->assertEquals('password', $this->invokeMergePasswordAndSalt('password', ''));
- }
-
- /**
- * @expectedException InvalidArgumentException
- */
- public function testMergePasswordAndSaltWithException()
- {
- $this->invokeMergePasswordAndSalt('password', '{foo}');
- }
-
- protected function invokeDemergePasswordAndSalt($password)
- {
- $encoder = new PasswordEncoder();
- $r = new \ReflectionObject($encoder);
- $m = $r->getMethod('demergePasswordAndSalt');
- $m->setAccessible(true);
-
- return $m->invoke($encoder, $password);
- }
-
- protected function invokeMergePasswordAndSalt($password, $salt)
- {
- $encoder = new PasswordEncoder();
- $r = new \ReflectionObject($encoder);
- $m = $r->getMethod('mergePasswordAndSalt');
- $m->setAccessible(true);
-
- return $m->invoke($encoder, $password, $salt);
- }
-
- protected function invokeComparePasswords($p1, $p2)
- {
- $encoder = new PasswordEncoder();
- $r = new \ReflectionObject($encoder);
- $m = $r->getMethod('comparePasswords');
- $m->setAccessible(true);
-
- return $m->invoke($encoder, $p1, $p2);
- }
-}