fixtures fixed
This commit is contained in:
parent
d9a59fb82b
commit
2138762fb2
|
@ -1,55 +1,57 @@
|
|||
<?php
|
||||
declare(strict_types=1);
|
||||
|
||||
use Cake\Cache\Cache;
|
||||
use Cake\Chronos\Chronos;
|
||||
use Cake\Core\Configure;
|
||||
use Cake\Core\Plugin;
|
||||
use Cake\Database\Type\JsonType;
|
||||
use Cake\Database\TypeFactory;
|
||||
use Cake\Database\Connection;
|
||||
use Cake\Datasource\ConnectionManager;
|
||||
use Cake\ORM\Table;
|
||||
use Cake\TestSuite\Fixture\SchemaLoader;
|
||||
use Cake\Utility\Security;
|
||||
use Cake\View\View;
|
||||
use CakeProducts\CakeProductsPlugin;
|
||||
use TestApp\Application;
|
||||
use Migrations\TestSuite\Migrator;
|
||||
use TestApp\Controller\AppController;
|
||||
|
||||
if (!defined('DS')) {
|
||||
define('DS', DIRECTORY_SEPARATOR);
|
||||
}
|
||||
|
||||
define('ROOT', dirname(__DIR__));
|
||||
define('APP_DIR', 'src');
|
||||
|
||||
// Point app constants to the test app.
|
||||
define('TEST_ROOT', ROOT . DS . 'tests' . DS . 'test_app' . DS);
|
||||
define('APP', TEST_ROOT . APP_DIR . DS);
|
||||
|
||||
define('TMP', ROOT . DS . 'tmp' . DS);
|
||||
if (!is_dir(TMP)) {
|
||||
mkdir(TMP, 0770, true);
|
||||
if (!defined('WINDOWS')) {
|
||||
if (DS === '\\' || substr(PHP_OS, 0, 3) === 'WIN') {
|
||||
define('WINDOWS', true);
|
||||
} else {
|
||||
define('WINDOWS', false);
|
||||
}
|
||||
}
|
||||
define('TESTS', ROOT . DS . 'tests' . DS);
|
||||
define('CONFIG', TESTS . 'config' . DS);
|
||||
|
||||
define('PLUGIN_ROOT', dirname(__DIR__));
|
||||
define('ROOT', PLUGIN_ROOT . DS . 'tests' . DS . 'test_app');
|
||||
define('TMP', PLUGIN_ROOT . DS . 'tmp' . DS);
|
||||
define('LOGS', TMP . 'logs' . DS);
|
||||
define('CACHE', TMP . 'cache' . DS);
|
||||
|
||||
define('CAKE_CORE_INCLUDE_PATH', ROOT . '/vendor/cakephp/cakephp');
|
||||
define('APP', ROOT . DS . 'src' . DS);
|
||||
define('APP_DIR', 'src');
|
||||
define('CAKE_CORE_INCLUDE_PATH', PLUGIN_ROOT . '/vendor/cakephp/cakephp');
|
||||
define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS);
|
||||
define('CAKE', CORE_PATH . APP_DIR . DS);
|
||||
|
||||
require dirname(__DIR__) . '/vendor/autoload.php';
|
||||
define('WWW_ROOT', PLUGIN_ROOT . DS . 'webroot' . DS);
|
||||
define('TESTS', __DIR__ . DS);
|
||||
define('CONFIG', TESTS . 'config' . DS);
|
||||
|
||||
ini_set('intl.default_locale', 'de-DE');
|
||||
|
||||
require PLUGIN_ROOT . '/vendor/autoload.php';
|
||||
require CORE_PATH . 'config/bootstrap.php';
|
||||
require CAKE_CORE_INCLUDE_PATH . '/src/functions.php';
|
||||
require CAKE . 'functions.php';
|
||||
|
||||
Configure::write('App', [
|
||||
'encoding' => 'utf-8',
|
||||
'namespace' => 'App',
|
||||
'namespace' => 'TestApp',
|
||||
'encoding' => 'UTF-8',
|
||||
'paths' => [
|
||||
'templates' => [TESTS . 'test_app' . DS . 'templates' . DS],
|
||||
'templates' => [
|
||||
PLUGIN_ROOT . DS . 'tests' . DS . 'test_app' . DS . 'templates' . DS,
|
||||
],
|
||||
],
|
||||
'fullBaseUrl' => 'http://localhost',
|
||||
]);
|
||||
|
||||
Configure::write('debug', true);
|
||||
|
@ -57,6 +59,7 @@ Configure::write('debug', true);
|
|||
$cache = [
|
||||
'default' => [
|
||||
'engine' => 'File',
|
||||
'path' => CACHE,
|
||||
],
|
||||
'_cake_core_' => [
|
||||
'className' => 'File',
|
||||
|
@ -76,30 +79,37 @@ $cache = [
|
|||
|
||||
Cache::setConfig($cache);
|
||||
|
||||
Security::setSalt('123');
|
||||
|
||||
TypeFactory::map('json', JsonType::class);
|
||||
|
||||
class_alias(Application::class, 'App\Application');
|
||||
class_alias(AppController::class, 'App\Controller\AppController');
|
||||
class_alias(Table::class, 'App\Model\Table\Table');
|
||||
class_alias(View::class, 'App\View\AppView');
|
||||
|
||||
Plugin::getCollection()->add(new CakeProductsPlugin());
|
||||
|
||||
// Ensure default test connection is defined
|
||||
Chronos::setTestNow(Chronos::now());
|
||||
|
||||
if (!getenv('DB_URL')) {
|
||||
putenv('DB_URL=sqlite:///:memory:');
|
||||
}
|
||||
|
||||
ConnectionManager::setConfig('test', [
|
||||
'className' => Connection::class,
|
||||
'url' => getenv('DB_URL') ?: null,
|
||||
'timezone' => 'UTC',
|
||||
'quoteIdentifiers' => true,
|
||||
'quoteIdentifiers' => false,
|
||||
'cacheMetadata' => true,
|
||||
]);
|
||||
|
||||
if (env('FIXTURE_SCHEMA_METADATA')) {
|
||||
$loader = new SchemaLoader();
|
||||
$loader->loadInternalFile(env('FIXTURE_SCHEMA_METADATA'));
|
||||
}
|
||||
/**
|
||||
* 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.
|
||||
*/
|
||||
// Load a schema dump file.
|
||||
//(new SchemaLoader())->loadSqlFiles('tests/schema.sql', 'test');
|
||||
|
||||
|
||||
$migrator = new Migrator();
|
||||
$migrator->run(['plugin' => 'CakeProducts']);
|
||||
|
|
|
@ -5,9 +5,17 @@ namespace TestApp;
|
|||
use Cake\Http\BaseApplication;
|
||||
use Cake\Http\MiddlewareQueue;
|
||||
use Cake\Routing\Middleware\RoutingMiddleware;
|
||||
use Cake\Routing\RouteBuilder;
|
||||
|
||||
class Application extends BaseApplication {
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
public function bootstrap(): void {
|
||||
$this->addPlugin('CakeProducts');
|
||||
}
|
||||
|
||||
/**
|
||||
* @inheritDoc
|
||||
*/
|
||||
|
@ -17,4 +25,13 @@ class Application extends BaseApplication {
|
|||
return $middleware;
|
||||
}
|
||||
|
||||
public function routes(RouteBuilder $routes): void
|
||||
{
|
||||
parent::routes($routes); // TODO: Change the autogenerated stub
|
||||
|
||||
$routes->plugin('CakeProducts', ['path' => '/cake-products'], function (RouteBuilder $pluginRoutes):void {
|
||||
$pluginRoutes->fallbacks();
|
||||
});
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue