2010-05-08 15:53:29 -04:30
|
|
|
<?php
|
2010-05-08 16:52:29 -04:30
|
|
|
/**
|
2011-10-19 00:06:29 +07:00
|
|
|
* A class to contain test cases and run them with shared fixtures
|
2010-05-08 16:52:29 -04:30
|
|
|
*
|
|
|
|
* PHP 5
|
|
|
|
*
|
|
|
|
* CakePHP(tm) : Rapid Development Framework (http://cakephp.org)
|
2013-02-08 20:59:49 +09:00
|
|
|
* Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-08 16:52:29 -04:30
|
|
|
*
|
|
|
|
* Licensed under The MIT License
|
2013-02-08 21:22:51 +09:00
|
|
|
* For full copyright and license information, please see the LICENSE.txt
|
2010-05-08 16:52:29 -04:30
|
|
|
* Redistributions of files must retain the above copyright notice.
|
|
|
|
*
|
2013-02-08 20:59:49 +09:00
|
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (http://cakefoundation.org)
|
2010-05-08 16:52:29 -04:30
|
|
|
* @link http://cakephp.org CakePHP(tm) Project
|
2011-07-26 01:46:14 -04:30
|
|
|
* @package Cake.TestSuite
|
2010-05-08 16:52:29 -04:30
|
|
|
* @since CakePHP(tm) v 2.0
|
|
|
|
* @license MIT License (http://www.opensource.org/licenses/mit-license.php)
|
|
|
|
*/
|
2011-12-08 07:35:02 -08:00
|
|
|
|
2011-08-27 10:34:08 -04:00
|
|
|
App::uses('Folder', 'Utility');
|
|
|
|
|
2011-12-08 07:35:02 -08:00
|
|
|
/**
|
|
|
|
* A class to contain test cases and run them with shared fixtures
|
|
|
|
*
|
|
|
|
* @package Cake.TestSuite
|
|
|
|
*/
|
2011-02-12 16:58:10 -05:00
|
|
|
class CakeTestSuite extends PHPUnit_Framework_TestSuite {
|
2010-05-08 15:53:29 -04:30
|
|
|
|
2010-09-25 00:00:08 -04: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-21 01:10:09 +02:00
|
|
|
$Folder = new Folder($directory);
|
2013-01-23 13:45:50 +01:00
|
|
|
list(, $files) = $Folder->read(true, true, true);
|
2010-09-25 00:00:08 -04:00
|
|
|
|
|
|
|
foreach ($files as $file) {
|
2012-04-23 12:49:28 +02:00
|
|
|
if (substr($file, -4) === '.php') {
|
|
|
|
$this->addTestFile($file);
|
|
|
|
}
|
2010-09-25 00:00:08 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2010-09-25 00:16:28 -04: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-21 01:10:09 +02:00
|
|
|
$Folder = new Folder($directory);
|
2011-12-22 02:03:22 +05:30
|
|
|
$files = $Folder->tree(null, true, 'files');
|
2010-09-25 00:16:28 -04:00
|
|
|
|
|
|
|
foreach ($files as $file) {
|
2012-04-23 12:49:28 +02:00
|
|
|
if (substr($file, -4) === '.php') {
|
|
|
|
$this->addTestFile($file);
|
|
|
|
}
|
2010-09-25 00:16:28 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-08-27 10:34:08 -04:00
|
|
|
}
|