2015-09-28 22:09:13 +08:00
|
|
|
<?php
|
2016-02-26 11:09:39 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* This file is part of Flarum.
|
|
|
|
*
|
|
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
|
|
*
|
|
|
|
* For the full copyright and license information, please view the LICENSE
|
|
|
|
* file that was distributed with this source code.
|
|
|
|
*/
|
|
|
|
|
2019-01-02 05:17:09 +08:00
|
|
|
namespace Flarum\Tests\integration;
|
2015-09-28 22:09:13 +08:00
|
|
|
|
2019-01-31 04:15:27 +08:00
|
|
|
use Flarum\Foundation\InstalledSite;
|
|
|
|
use Illuminate\Database\ConnectionInterface;
|
2015-09-28 22:09:13 +08:00
|
|
|
|
2019-01-31 04:15:27 +08:00
|
|
|
abstract class TestCase extends \PHPUnit\Framework\TestCase
|
2015-09-28 22:09:13 +08:00
|
|
|
{
|
|
|
|
public function setUp()
|
|
|
|
{
|
2019-01-31 04:15:27 +08:00
|
|
|
parent::setUp();
|
|
|
|
|
|
|
|
// Boot the Flarum app
|
|
|
|
$this->app();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected $app;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @return \Flarum\Foundation\InstalledApp
|
|
|
|
*/
|
|
|
|
protected function app()
|
|
|
|
{
|
|
|
|
if (! is_null($this->app)) {
|
|
|
|
return $this->app;
|
|
|
|
}
|
|
|
|
|
|
|
|
$site = new InstalledSite(
|
|
|
|
[
|
|
|
|
'base' => __DIR__.'/tmp',
|
|
|
|
'public' => __DIR__.'/tmp/public',
|
|
|
|
'storage' => __DIR__.'/tmp/storage',
|
|
|
|
],
|
|
|
|
include __DIR__.'/tmp/config.php'
|
|
|
|
);
|
|
|
|
|
|
|
|
return $this->app = $site->bootApp();
|
|
|
|
}
|
|
|
|
|
|
|
|
protected $database;
|
|
|
|
|
|
|
|
protected function database(): ConnectionInterface
|
|
|
|
{
|
|
|
|
if (is_null($this->database)) {
|
|
|
|
$this->database = $this->app()->getContainer()->make(
|
|
|
|
ConnectionInterface::class
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->database;
|
2015-09-28 22:09:13 +08:00
|
|
|
}
|
|
|
|
|
2019-01-31 04:15:27 +08:00
|
|
|
protected function prepareDatabase(array $tableData)
|
2015-09-28 22:09:13 +08:00
|
|
|
{
|
2019-01-31 04:15:27 +08:00
|
|
|
// We temporarily disable foreign key checks to simplify this process.
|
|
|
|
$this->database()->getSchemaBuilder()->disableForeignKeyConstraints();
|
|
|
|
|
|
|
|
// First, truncate all referenced tables so that they are empty.
|
|
|
|
foreach (array_keys($tableData) as $table) {
|
|
|
|
$this->database()->table($table)->truncate();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Then, insert all rows required for this test case.
|
|
|
|
foreach ($tableData as $table => $rows) {
|
|
|
|
$this->database()->table($table)->insert($rows);
|
|
|
|
}
|
|
|
|
|
|
|
|
// And finally, turn on foreign key checks again.
|
|
|
|
$this->database()->getSchemaBuilder()->enableForeignKeyConstraints();
|
2015-09-28 22:09:13 +08:00
|
|
|
}
|
|
|
|
}
|