diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 674fe74..7e0556f 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,55 +1,57 @@ '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')); -} \ No newline at end of file +/** + * 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']); diff --git a/tests/test_app/src/Application.php b/tests/test_app/src/Application.php index ac74c12..78d92bb 100644 --- a/tests/test_app/src/Application.php +++ b/tests/test_app/src/Application.php @@ -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(); + }); + } + }