Skip to content

Commit

Permalink
Merge branch '2.5'
Browse files Browse the repository at this point in the history
* 2.5:
  Revert "minor #11808 [Security] Add more tests for StringUtils::equals (dunglas)"
  • Loading branch information
fabpot committed Sep 3, 2014
2 parents ddc0e86 + 1ec88be commit f940d92
Showing 1 changed file with 3 additions and 41 deletions.
44 changes: 3 additions & 41 deletions src/Symfony/Component/Security/Core/Tests/Util/StringUtilsTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,49 +13,11 @@

use Symfony\Component\Security\Core\Util\StringUtils;

/**
* Data from PHP.net's hash_equals tests
*/
class StringUtilsTest extends \PHPUnit_Framework_TestCase
{
public function dataProviderTrue()
{
return array(
array('same', 'same'),
array('', ''),
array(123, 123),
array(null, ''),
array(null, null),
);
}

public function dataProviderFalse()
{
return array(
array('not1same', 'not2same'),
array('short', 'longer'),
array('longer', 'short'),
array('', 'notempty'),
array('notempty', ''),
array(123, 'NaN'),
array('NaN', 123),
array(null, 123),
);
}

/**
* @dataProvider dataProviderTrue
*/
public function testEqualsTrue($known, $user)
{
$this->assertTrue(StringUtils::equals($known, $user));
}

/**
* @dataProvider dataProviderFalse
*/
public function testEqualsFalse($known, $user)
public function testEquals()
{
$this->assertFalse(StringUtils::equals($known, $user));
$this->assertTrue(StringUtils::equals('password', 'password'));
$this->assertFalse(StringUtils::equals('password', 'foo'));
}
}

0 comments on commit f940d92

Please sign in to comment.