1
0
mirror of https://github.com/ezyang/htmlpurifier.git synced 2025-08-16 11:03:58 +02:00

[3.1.0] Reconfigure tester to glob for test files using *Test.php pattern.

git-svn-id: http://htmlpurifier.org/svnroot/htmlpurifier/trunk@1585 48356398-32a2-884e-a903-53898d9a118a
This commit is contained in:
Edward Z. Yang
2008-03-02 02:05:47 +00:00
parent 8bda0c4dfb
commit fa6b6fe85f
4 changed files with 39 additions and 144 deletions

View File

@@ -86,17 +86,35 @@ if (!$AC['disable-phpt']) {
}
// load tests
$test_files = array();
$test_dirs = array();
$test_dirs_exclude = array();
$phpt_dirs = array();
require 'test_files.php'; // populates $test_files array
$FS = new FSTools();
// handle test dirs
foreach ($test_dirs as $dir) {
$raw_files = $FS->globr($dir, '*Test.php');
foreach ($raw_files as $file) {
$file = str_replace('\\', '/', $file);
if (isset($test_dirs_exclude[$file])) continue;
$test_files[] = $file;
}
}
// handle phpt files
foreach ($phpt_dirs as $dir) {
$FS = new FSTools();
$phpt_files = $FS->globr($dir, '*.phpt');
foreach ($phpt_files as $file) {
$test_files[] = str_replace('\\', '/', $file);
}
}
array_unique($test_files);
sort($test_files); // for the SELECT
$GLOBALS['HTMLPurifierTest']['Files'] = $test_files; // for the reporter
$test_file_lookup = array_flip($test_files);