2014-08-28 10:45:55 +02:00
|
|
|
<?php
|
|
|
|
namespace Szurubooru\Tests;
|
|
|
|
|
2014-09-01 20:51:59 +02:00
|
|
|
abstract class AbstractDatabaseTestCase extends \Szurubooru\Tests\AbstractTestCase
|
2014-08-28 10:45:55 +02:00
|
|
|
{
|
2014-08-30 17:10:45 +02:00
|
|
|
protected $databaseConnection;
|
2014-08-28 10:45:55 +02:00
|
|
|
protected $upgradeService;
|
|
|
|
|
|
|
|
public function setUp()
|
|
|
|
{
|
|
|
|
$host = 'localhost';
|
|
|
|
$port = 27017;
|
|
|
|
$database = 'test';
|
2014-09-10 17:41:47 +02:00
|
|
|
$config = $this->mockConfig();
|
|
|
|
$config->set('database/host', 'localhost');
|
|
|
|
$config->set('database/port', '27017');
|
|
|
|
$config->set('database/name', 'test');
|
2014-08-30 17:10:45 +02:00
|
|
|
$this->databaseConnection = new \Szurubooru\DatabaseConnection($config);
|
|
|
|
$this->upgradeService = new \Szurubooru\UpgradeService($this->databaseConnection);
|
2014-08-28 10:45:55 +02:00
|
|
|
$this->upgradeService->prepareForUsage();
|
|
|
|
}
|
|
|
|
|
|
|
|
public function tearDown()
|
|
|
|
{
|
|
|
|
$this->upgradeService->removeAllData();
|
|
|
|
}
|
|
|
|
}
|