_resolveTestFile($filePath, $params); return parent::load('', $file); } /** * Convert path fragments used by CakePHP's test runner to absolute paths that can be fed to PHPUnit. * * @param string $filePath * @param string $params * @return void */ protected function _resolveTestFile($filePath, $params) { $basePath = $this->_basePath($params) . DS . $filePath; $ending = 'Test.php'; return (strpos($basePath, $ending) === (strlen($basePath) - strlen($ending))) ? $basePath : $basePath . $ending; } /** * Generates the base path to a set of tests based on the parameters. * * @param array $params * @return string The base path. */ protected static function _basePath($params) { $result = null; if (!empty($params['core'])) { $result = CORE_TEST_CASES; } elseif (!empty($params['plugin'])) { if (!CakePlugin::loaded($params['plugin'])) { try { CakePlugin::load($params['plugin']); $result = CakePlugin::path($params['plugin']) . 'Test' . DS . 'Case'; } catch (MissingPluginException $e) { } } else { $result = CakePlugin::path($params['plugin']) . 'Test' . DS . 'Case'; } } elseif (!empty($params['app'])) { $result = APP_TEST_CASES; } return $result; } /** * Get the list of files for the test listing. * * @param string $params * @return array */ public static function generateTestList($params) { $directory = self::_basePath($params); $fileList = self::_getRecursiveFileList($directory); $testCases = array(); foreach ($fileList as $testCaseFile) { $case = str_replace($directory . DS, '', $testCaseFile); $case = str_replace('Test.php', '', $case); $testCases[$testCaseFile] = $case; } sort($testCases); return $testCases; } /** * Gets a recursive list of files from a given directory and matches then against * a given fileTestFunction, like isTestCaseFile() * * @param string $directory The directory to scan for files. * @return array */ protected static function _getRecursiveFileList($directory = '.') { $fileList = array(); if (!is_dir($directory)) { return $fileList; } $files = new RegexIterator( new RecursiveIteratorIterator(new RecursiveDirectoryIterator($directory)), '/.*Test.php$/' ); foreach ($files as $file) { $fileList[] = $file->getPathname(); } return $fileList; } }