diff options
author | Kévin Dunglas <dunglas@gmail.com> | 2014-08-31 17:01:28 +0200 |
---|---|---|
committer | Kévin Dunglas <dunglas@gmail.com> | 2014-09-01 13:47:09 +0200 |
commit | cf4aa25c4d8e8d70f073bd690d67a999989eb05a (patch) | |
tree | 6be1307e35faf5e9df63b9741d405621c581278e /Core/Tests/Util/StringUtilsTest.php | |
parent | dd1ae0ad000020fc6ddae6c66846e5fe383d8828 (diff) | |
download | symfony-security-cf4aa25c4d8e8d70f073bd690d67a999989eb05a.zip symfony-security-cf4aa25c4d8e8d70f073bd690d67a999989eb05a.tar.gz symfony-security-cf4aa25c4d8e8d70f073bd690d67a999989eb05a.tar.bz2 |
[Security] Add more tests for StringUtils::equals
Diffstat (limited to 'Core/Tests/Util/StringUtilsTest.php')
-rw-r--r-- | Core/Tests/Util/StringUtilsTest.php | 44 |
1 files changed, 41 insertions, 3 deletions
diff --git a/Core/Tests/Util/StringUtilsTest.php b/Core/Tests/Util/StringUtilsTest.php index 89da98d..e0366a5 100644 --- a/Core/Tests/Util/StringUtilsTest.php +++ b/Core/Tests/Util/StringUtilsTest.php @@ -13,11 +13,49 @@ namespace Symfony\Component\Security\Core\Tests\Util; use Symfony\Component\Security\Core\Util\StringUtils; +/** + * Data from PHP.net's hash_equals tests + */ class StringUtilsTest extends \PHPUnit_Framework_TestCase { - public function testEquals() + 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) { - $this->assertTrue(StringUtils::equals('password', 'password')); - $this->assertFalse(StringUtils::equals('password', 'foo')); + $this->assertFalse(StringUtils::equals($known, $user)); } } |