fixtures fixed

This commit is contained in:
Brandon Shipley 2025-03-27 01:34:42 -07:00
parent d9a59fb82b
commit 2138762fb2
Signed by: bmfs
GPG Key ID: 14E38571D8BB0DE4
2 changed files with 67 additions and 40 deletions

View File

@ -1,55 +1,57 @@
<?php <?php
declare(strict_types=1);
use Cake\Cache\Cache; use Cake\Cache\Cache;
use Cake\Chronos\Chronos;
use Cake\Core\Configure; use Cake\Core\Configure;
use Cake\Core\Plugin; use Cake\Core\Plugin;
use Cake\Database\Type\JsonType; use Cake\Database\Connection;
use Cake\Database\TypeFactory;
use Cake\Datasource\ConnectionManager; use Cake\Datasource\ConnectionManager;
use Cake\ORM\Table;
use Cake\TestSuite\Fixture\SchemaLoader; use Cake\TestSuite\Fixture\SchemaLoader;
use Cake\Utility\Security;
use Cake\View\View;
use CakeProducts\CakeProductsPlugin; use CakeProducts\CakeProductsPlugin;
use TestApp\Application; use Migrations\TestSuite\Migrator;
use TestApp\Controller\AppController; use TestApp\Controller\AppController;
if (!defined('DS')) { if (!defined('DS')) {
define('DS', DIRECTORY_SEPARATOR); define('DS', DIRECTORY_SEPARATOR);
} }
if (!defined('WINDOWS')) {
define('ROOT', dirname(__DIR__)); if (DS === '\\' || substr(PHP_OS, 0, 3) === 'WIN') {
define('APP_DIR', 'src'); define('WINDOWS', true);
} else {
// Point app constants to the test app. define('WINDOWS', false);
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);
} }
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('LOGS', TMP . 'logs' . DS);
define('CACHE', TMP . 'cache' . DS); define('CACHE', TMP . 'cache' . DS);
define('APP', ROOT . DS . 'src' . DS);
define('CAKE_CORE_INCLUDE_PATH', ROOT . '/vendor/cakephp/cakephp'); define('APP_DIR', 'src');
define('CAKE_CORE_INCLUDE_PATH', PLUGIN_ROOT . '/vendor/cakephp/cakephp');
define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS); define('CORE_PATH', CAKE_CORE_INCLUDE_PATH . DS);
define('CAKE', CORE_PATH . APP_DIR . 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 CORE_PATH . 'config/bootstrap.php';
require CAKE_CORE_INCLUDE_PATH . '/src/functions.php'; require CAKE . 'functions.php';
Configure::write('App', [ Configure::write('App', [
'encoding' => 'utf-8', 'namespace' => 'TestApp',
'namespace' => 'App', 'encoding' => 'UTF-8',
'paths' => [ '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); Configure::write('debug', true);
@ -57,6 +59,7 @@ Configure::write('debug', true);
$cache = [ $cache = [
'default' => [ 'default' => [
'engine' => 'File', 'engine' => 'File',
'path' => CACHE,
], ],
'_cake_core_' => [ '_cake_core_' => [
'className' => 'File', 'className' => 'File',
@ -76,30 +79,37 @@ $cache = [
Cache::setConfig($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(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()); Plugin::getCollection()->add(new CakeProductsPlugin());
// Ensure default test connection is defined Chronos::setTestNow(Chronos::now());
if (!getenv('DB_URL')) { if (!getenv('DB_URL')) {
putenv('DB_URL=sqlite:///:memory:'); putenv('DB_URL=sqlite:///:memory:');
} }
ConnectionManager::setConfig('test', [ ConnectionManager::setConfig('test', [
'className' => Connection::class,
'url' => getenv('DB_URL') ?: null, 'url' => getenv('DB_URL') ?: null,
'timezone' => 'UTC', 'timezone' => 'UTC',
'quoteIdentifiers' => true, 'quoteIdentifiers' => false,
'cacheMetadata' => true, 'cacheMetadata' => true,
]); ]);
if (env('FIXTURE_SCHEMA_METADATA')) { /**
$loader = new SchemaLoader(); * Load schema from a SQL dump file.
$loader->loadInternalFile(env('FIXTURE_SCHEMA_METADATA')); *
} * 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']);

View File

@ -5,9 +5,17 @@ namespace TestApp;
use Cake\Http\BaseApplication; use Cake\Http\BaseApplication;
use Cake\Http\MiddlewareQueue; use Cake\Http\MiddlewareQueue;
use Cake\Routing\Middleware\RoutingMiddleware; use Cake\Routing\Middleware\RoutingMiddleware;
use Cake\Routing\RouteBuilder;
class Application extends BaseApplication { class Application extends BaseApplication {
/**
* @inheritDoc
*/
public function bootstrap(): void {
$this->addPlugin('CakeProducts');
}
/** /**
* @inheritDoc * @inheritDoc
*/ */
@ -17,4 +25,13 @@ class Application extends BaseApplication {
return $middleware; 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();
});
}
} }