72 lines
2.1 KiB
Twig
72 lines
2.1 KiB
Twig
{#
|
|
/**
|
|
* Tests bootstrap file
|
|
*
|
|
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
|
|
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
*
|
|
* Licensed under The MIT License
|
|
* For full copyright and license information, please see the LICENSE.txt
|
|
* Redistributions of files must retain the above copyright notice.
|
|
*
|
|
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
|
|
* @link https://cakephp.org CakePHP(tm) Project
|
|
* @since 2.0.0
|
|
* @license https://www.opensource.org/licenses/mit-license.php MIT License
|
|
*/
|
|
#}
|
|
{{ element('Bake.file_header',{namespace: null}) }}
|
|
|
|
/**
|
|
* Test suite bootstrap for {{ plugin }}.
|
|
*
|
|
* This function is used to find the location of CakePHP whether CakePHP
|
|
* has been installed as a dependency of the plugin, or the plugin is itself
|
|
* installed as a dependency of an application.
|
|
*/
|
|
$findRoot = function ($root) {
|
|
do {
|
|
$lastRoot = $root;
|
|
$root = dirname($root);
|
|
if (is_dir($root . '/vendor/cakephp/cakephp')) {
|
|
return $root;
|
|
}
|
|
} while ($root !== $lastRoot);
|
|
|
|
throw new Exception('Cannot find the root of the application, unable to run tests');
|
|
};
|
|
$root = $findRoot(__FILE__);
|
|
unset($findRoot);
|
|
|
|
chdir($root);
|
|
|
|
require_once $root . '/vendor/autoload.php';
|
|
|
|
/**
|
|
* Define fallback values for required constants and configuration.
|
|
* To customize constants and configuration remove this require
|
|
* and define the data required by your plugin here.
|
|
*/
|
|
require_once $root . '/vendor/cakephp/cakephp/tests/bootstrap.php';
|
|
|
|
if (file_exists($root . '/config/bootstrap.php')) {
|
|
require $root . '/config/bootstrap.php';
|
|
|
|
return;
|
|
}
|
|
|
|
/**
|
|
* Load schema from a SQL dump file.
|
|
*
|
|
* If your plugin does not use database fixtures you can
|
|
* safely delete this.
|
|
*
|
|
* If you want to support multiple databases, consider
|
|
* using migrations to provide schema for your plugin,
|
|
* and using \Migrations\TestSuite\Migrator to load schema.
|
|
*/
|
|
use Cake\TestSuite\Fixture\SchemaLoader;
|
|
|
|
// Load a schema dump file.
|
|
(new SchemaLoader())->loadSqlFiles('tests/schema.sql', 'test');
|