phpmyadmin/test/libraries/core/PMA_securePath_test.php
Zarubin Stas f7d7102d2f - Unit Test grouped by library directory
- Added configuration file phpunit.xml.dist and bootstraper-dist.php
 - Ignoring phpunit.xml, bootstraper.php and build/
2011-06-29 20:06:27 +03:00

19 lines
623 B
PHP

<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
* Tests for PMA_securePath() from libraries/core.lib.php
* PMA_securePath changes .. to .
*
* @package phpMyAdmin-test
*/
require_once 'libraries/core.lib.php';
class PMA_securePath extends PHPUnit_Framework_TestCase{
public function testReplaceDots(){
$this->assertEquals(PMA_securePath('../../../etc/passwd'), './././etc/passwd');
$this->assertEquals(PMA_securePath('/var/www/../phpmyadmin'), '/var/www/./phpmyadmin');
$this->assertEquals(PMA_securePath('./path/with..dots/../../file..php'), './path/with.dots/././file.php');
}
}