From d90b77073ee2c718ed819fd8c379b573ff66158b Mon Sep 17 00:00:00 2001 From: Franz Liedke Date: Wed, 30 Jan 2019 21:16:25 +0100 Subject: [PATCH] Setup Composer commands for testing and setup --- .../testing/tests/integration/setup.php | 53 +++++++++++++++++++ 1 file changed, 53 insertions(+) create mode 100644 php-packages/testing/tests/integration/setup.php diff --git a/php-packages/testing/tests/integration/setup.php b/php-packages/testing/tests/integration/setup.php new file mode 100644 index 000000000..e207e29d0 --- /dev/null +++ b/php-packages/testing/tests/integration/setup.php @@ -0,0 +1,53 @@ + + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + */ + +use Flarum\Install\AdminUser; +use Flarum\Install\DatabaseConfig; +use Flarum\Install\Installation; + +require __DIR__.'/../../vendor/autoload.php'; + +/* + * Setup installation configuration + */ + +$installation = new Installation( + __DIR__.'/tmp', + __DIR__.'/tmp/public', + __DIR__.'/tmp/storage' +); + +$pipeline = $installation + ->configPath('config.php') + ->debugMode(true) + ->baseUrl('http://localhost') + ->databaseConfig(new DatabaseConfig( + 'mysql', + env('DB_HOST', 'localhost'), + intval(env('DB_PORT', 3306)), + env('DB_DATABASE', 'flarum_test'), + env('DB_USERNAME', 'root'), + env('DB_PASSWORD', ''), + env('DB_PREFIX', '') + )) + ->adminUser(new AdminUser( + 'admin', + 'secret', + 'admin@flarum.email' + )) + ->settings(['mail_driver' => 'log']) + ->build(); + +/* + * Run the actual configuration + */ + +$pipeline->run();