94 lines
2.0 KiB
PHP
94 lines
2.0 KiB
PHP
<?php defined('SYSPATH') OR die('Kohana bootstrap needs to be included before tests run');
|
|
|
|
/**
|
|
* Tests Kohana_Security
|
|
*
|
|
* @group kohana
|
|
* @group kohana.security
|
|
*
|
|
* @package Kohana
|
|
* @category Tests
|
|
*/
|
|
|
|
class Kohana_SecurityTest extends Unittest_TestCase
|
|
{
|
|
/**
|
|
* Provides test data for test_envode_php_tags()
|
|
*
|
|
* @return array Test data sets
|
|
*/
|
|
public function provider_encode_php_tags()
|
|
{
|
|
return array(
|
|
array("<?php echo 'helloo'; ?>", "<?php echo 'helloo'; ?>"),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Tests Security::encode_php_tags()
|
|
*
|
|
* @test
|
|
* @dataProvider provider_encode_php_tags
|
|
* @covers Security::encode_php_tags
|
|
*/
|
|
public function test_encode_php_tags($expected, $input)
|
|
{
|
|
$this->assertSame($expected, Security::encode_php_tags($input));
|
|
}
|
|
|
|
/**
|
|
* Provides test data for test_strip_image_tags()
|
|
*
|
|
* @return array Test data sets
|
|
*/
|
|
public function provider_strip_image_tags()
|
|
{
|
|
return array(
|
|
array('foo', '<img src="foo" />'),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Tests Security::strip_image_tags()
|
|
*
|
|
* @test
|
|
* @dataProvider provider_strip_image_tags
|
|
* @covers Security::strip_image_tags
|
|
*/
|
|
public function test_strip_image_tags($expected, $input)
|
|
{
|
|
$this->assertSame($expected, Security::strip_image_tags($input));
|
|
}
|
|
|
|
/**
|
|
* Provides test data for Security::token()
|
|
*
|
|
* @return array Test data sets
|
|
*/
|
|
public function provider_csrf_token()
|
|
{
|
|
$array = array();
|
|
for ($i = 0; $i <= 4; $i++)
|
|
{
|
|
Security::$token_name = 'token_'.$i;
|
|
$array[] = array(Security::token(TRUE), Security::check(Security::token(FALSE)), $i);
|
|
}
|
|
return $array;
|
|
}
|
|
|
|
/**
|
|
* Tests Security::token()
|
|
*
|
|
* @test
|
|
* @dataProvider provider_csrf_token
|
|
* @covers Security::token
|
|
*/
|
|
public function test_csrf_token($expected, $input, $iteration)
|
|
{
|
|
Security::$token_name = 'token_'.$iteration;
|
|
$this->assertSame(TRUE, $input);
|
|
$this->assertSame($expected, Security::token(FALSE));
|
|
Session::instance()->delete(Security::$token_name);
|
|
}
|
|
}
|