2010-05-08 20:23:29 +00:00
|
|
|
<?php
|
2010-05-08 21:22:29 +00:00
|
|
|
/**
|
2011-10-18 17:06:29 +00:00
|
|
|
* A class to contain test cases and run them with shared fixtures
|
2010-05-08 21:22:29 +00:00
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 11:59:49 +00:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-08 21:22:29 +00:00
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 12:22:51 +00:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-05-08 21:22:29 +00:00
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 11:59:49 +00:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-08 21:22:29 +00:00
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 06:16:14 +00:00
|
|
|
* @package Cake.TestSuite
|
2010-05-08 21:22:29 +00:00
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
2011-12-08 15:35:02 +00:00
|
|
|
|
2011-08-27 14:34:08 +00:00
|
|
|
App::uses('Folder', 'Utility');
|
|
|
|
|
2011-12-08 15:35:02 +00:00
|
|
|
/**
|
|
|
|
* A class to contain test cases and run them with shared fixtures
|
|
|
|
*
|
|
|
|
* @package Cake.TestSuite
|
|
|
|
*/
|
2011-02-12 21:58:10 +00:00
|
|
|
class CakeTestSuite extends PHPUnit_Framework_TestSuite {
|
2010-05-08 20:23:29 +00:00
|
|
|
|
2010-09-25 04:00:08 +00:00
|
|
|
/**
|
|
|
|
* Adds all the files in a directory to the test suite. Does not recurse through directories.
|
|
|
|
*
|
|
|
|
* @param string $directory The directory to add tests from.
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function addTestDirectory($directory = '.') {
|
2011-10-20 23:10:09 +00:00
|
|
|
$Folder = new Folder($directory);
|
2013-01-23 12:45:50 +00:00
|
|
|
list(, $files) = $Folder->read(true, true, true);
|
2010-09-25 04:00:08 +00:00
|
|
|
|
|
|
|
foreach ($files as $file) {
|
2012-04-23 10:49:28 +00:00
|
|
|
if (substr($file, -4) === '.php') {
|
|
|
|
$this->addTestFile($file);
|
|
|
|
}
|
2010-09-25 04:00:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-25 04:16:28 +00:00
|
|
|
/**
|
|
|
|
* Recursively adds all the files in a directory to the test suite.
|
|
|
|
*
|
|
|
|
* @param string $directory The directory subtree to add tests from.
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function addTestDirectoryRecursive($directory = '.') {
|
2011-10-20 23:10:09 +00:00
|
|
|
$Folder = new Folder($directory);
|
2011-12-21 20:33:22 +00:00
|
|
|
$files = $Folder->tree(null, true, 'files');
|
2010-09-25 04:16:28 +00:00
|
|
|
|
|
|
|
foreach ($files as $file) {
|
2012-04-23 10:49:28 +00:00
|
|
|
if (substr($file, -4) === '.php') {
|
|
|
|
$this->addTestFile($file);
|
|
|
|
}
|
2010-09-25 04:16:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-27 14:34:08 +00:00
|
|
|
}
|