mirror of
https://github.com/silverstripe/silverstripe-testsession
synced 2024-10-22 14:06:00 +02:00
API Explicit DB import, partially revert DB connection changes
- Renamed 'createDatabaseTemplate' to 'importDatabasePath' - No longer using 'createDatabase' flag, always loading a new DB - Reinstating SELECT DATABASE and SHOW DATABASES checks to ensure DBs don't get created multiple times
This commit is contained in:
parent
2a13ce2d08
commit
1582e74d10
@ -89,6 +89,22 @@ class TestSessionController extends Controller {
|
|||||||
|
|
||||||
$this->environment->startTestSession($params, $id);
|
$this->environment->startTestSession($params, $id);
|
||||||
|
|
||||||
|
// Optionally import database
|
||||||
|
if(!empty($params['importDatabasePath'])) {
|
||||||
|
$this->environment->importDatabase(
|
||||||
|
$params['importDatabasePath'],
|
||||||
|
!empty($params['requireDefaultRecords']) ? $params['requireDefaultRecords'] : false
|
||||||
|
);
|
||||||
|
} else if(!empty($params['requireDefaultRecords']) && $params['requireDefaultRecords']) {
|
||||||
|
$this->environment->requireDefaultRecords();
|
||||||
|
}
|
||||||
|
|
||||||
|
// Fixtures
|
||||||
|
$fixtureFile = (!empty($params['fixture'])) ? $params['fixture'] : null;
|
||||||
|
if($fixtureFile) {
|
||||||
|
$this->environment->loadFixtureIntoDb($fixtureFile);
|
||||||
|
}
|
||||||
|
|
||||||
return $this->renderWith('TestSession_inprogress');
|
return $this->renderWith('TestSession_inprogress');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -122,7 +138,7 @@ class TestSessionController extends Controller {
|
|||||||
);
|
);
|
||||||
if($databaseTemplates) {
|
if($databaseTemplates) {
|
||||||
$fields->push(
|
$fields->push(
|
||||||
$dropdown = new DropdownField('createDatabaseTemplate', false)
|
$dropdown = new DropdownField('importDatabasePath', false)
|
||||||
);
|
);
|
||||||
|
|
||||||
$dropdown->setSource($databaseTemplates)
|
$dropdown->setSource($databaseTemplates)
|
||||||
|
@ -109,7 +109,8 @@ class TestSessionEnvironment extends Object {
|
|||||||
*
|
*
|
||||||
* @param array $state An array of test state options to write.
|
* @param array $state An array of test state options to write.
|
||||||
*/
|
*/
|
||||||
public function startTestSession($state, $id = null) {
|
public function startTestSession($state = null, $id = null) {
|
||||||
|
if(!$state) $state = array();
|
||||||
$this->removeStateFile();
|
$this->removeStateFile();
|
||||||
$this->id = $id;
|
$this->id = $id;
|
||||||
|
|
||||||
@ -157,18 +158,26 @@ class TestSessionEnvironment extends Object {
|
|||||||
* @throws InvalidArgumentException
|
* @throws InvalidArgumentException
|
||||||
*/
|
*/
|
||||||
public function applyState($state) {
|
public function applyState($state) {
|
||||||
global $databaseConfig;
|
|
||||||
|
|
||||||
$this->extend('onBeforeApplyState', $state);
|
$this->extend('onBeforeApplyState', $state);
|
||||||
|
|
||||||
|
$database = (isset($state->database)) ? $state->database : null;
|
||||||
|
|
||||||
|
// back up source
|
||||||
|
global $databaseConfig;
|
||||||
|
$this->oldDatabaseName = $databaseConfig['database'];
|
||||||
|
|
||||||
// Load existing state from $this->state into $state, if there is any
|
// Load existing state from $this->state into $state, if there is any
|
||||||
$oldState = $this->getState();
|
$oldState = $this->getState();
|
||||||
|
|
||||||
if($oldState) {
|
if($oldState) {
|
||||||
foreach($oldState as $k => $v) {
|
foreach($oldState as $k => $v) {
|
||||||
if(!isset($state->$k)) $state->$k = $v; // Don't overwrite stuff in $state, as that's the new state
|
if(!isset($state->$k)) {
|
||||||
|
$state->$k = $v; // Don't overwrite stuff in $state, as that's the new state
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ensure we have a connection to the database
|
||||||
if(isset($state->database) && $state->database) {
|
if(isset($state->database) && $state->database) {
|
||||||
if(!DB::getConn()) {
|
if(!DB::getConn()) {
|
||||||
// No connection, so try and connect to tmpdb if it exists
|
// No connection, so try and connect to tmpdb if it exists
|
||||||
@ -191,7 +200,7 @@ class TestSessionEnvironment extends Object {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Database
|
// Database
|
||||||
if(!$this->isRunningTests() && (@$state->createDatabase || @$state->database)) {
|
if(!$this->isRunningTests()) {
|
||||||
$dbName = (isset($state->database)) ? $state->database : null;
|
$dbName = (isset($state->database)) ? $state->database : null;
|
||||||
|
|
||||||
if($dbName) {
|
if($dbName) {
|
||||||
@ -221,42 +230,11 @@ class TestSessionEnvironment extends Object {
|
|||||||
// Connect to the new database, overwriting the old DB connection (if any)
|
// Connect to the new database, overwriting the old DB connection (if any)
|
||||||
DB::connect($databaseConfig);
|
DB::connect($databaseConfig);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Import database template if required
|
|
||||||
if(isset($state->createDatabaseTemplate) && $state->createDatabaseTemplate) {
|
|
||||||
$sql = file_get_contents($state->createDatabaseTemplate);
|
|
||||||
// Split into individual query commands, removing comments
|
|
||||||
$sqlCmds = array_filter(
|
|
||||||
preg_split('/\s*;\s*/',
|
|
||||||
preg_replace(array('/^$\n/m', '/^(\/|#).*$\n/m'), '', $sql)
|
|
||||||
)
|
|
||||||
);
|
|
||||||
|
|
||||||
// Execute each query
|
|
||||||
foreach($sqlCmds as $sqlCmd) {
|
|
||||||
DB::query($sqlCmd);
|
|
||||||
}
|
|
||||||
|
|
||||||
// In case the dump involved CREATE TABLE commands, we need to ensure
|
|
||||||
// the schema is still up to date
|
|
||||||
$dbAdmin = new DatabaseAdmin();
|
|
||||||
$populate = (isset($state->requireDefaultRecords) && $state->requireDefaultRecords);
|
|
||||||
Versioned::set_reading_mode('');
|
|
||||||
$dbAdmin->doBuild(true /*quiet*/, $populate);
|
|
||||||
}
|
|
||||||
|
|
||||||
if(isset($state->createDatabase)) unset($state->createDatabase);
|
|
||||||
}
|
|
||||||
|
|
||||||
// Fixtures
|
|
||||||
$fixtureFile = (isset($state->fixture)) ? $state->fixture : null;
|
|
||||||
if($fixtureFile) {
|
|
||||||
$this->loadFixtureIntoDb($fixtureFile);
|
|
||||||
unset($state->fixture); // Only insert the fixture(s) once, not every time we call this method
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// Mailer
|
// Mailer
|
||||||
$mailer = (isset($state->mailer)) ? $state->mailer : null;
|
$mailer = (isset($state->mailer)) ? $state->mailer : null;
|
||||||
|
|
||||||
if($mailer) {
|
if($mailer) {
|
||||||
if(!class_exists($mailer) || !is_subclass_of($mailer, 'Mailer')) {
|
if(!class_exists($mailer) || !is_subclass_of($mailer, 'Mailer')) {
|
||||||
throw new InvalidArgumentException(sprintf(
|
throw new InvalidArgumentException(sprintf(
|
||||||
@ -278,14 +256,57 @@ class TestSessionEnvironment extends Object {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$this->saveState($state);
|
||||||
|
$this->extend('onAfterApplyState');
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Import the database
|
||||||
|
*
|
||||||
|
* @param String $path Absolute path to a SQL dump (include DROP TABLE commands)
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function importDatabase($path, $requireDefaultRecords = false) {
|
||||||
|
$sql = file_get_contents($path);
|
||||||
|
|
||||||
|
// Split into individual query commands, removing comments
|
||||||
|
$sqlCmds = array_filter(
|
||||||
|
preg_split('/\s*;\s*/',
|
||||||
|
preg_replace(array('/^$\n/m', '/^(\/|#).*$\n/m'), '', $sql)
|
||||||
|
)
|
||||||
|
);
|
||||||
|
|
||||||
|
// Execute each query
|
||||||
|
foreach($sqlCmds as $sqlCmd) {
|
||||||
|
DB::query($sqlCmd);
|
||||||
|
}
|
||||||
|
|
||||||
|
// In case the dump involved CREATE TABLE commands, we need to ensure the schema is still up to date
|
||||||
|
$dbAdmin = new DatabaseAdmin();
|
||||||
|
Versioned::set_reading_mode('');
|
||||||
|
$dbAdmin->doBuild(true, $requireDefaultRecords);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Build the database with default records, see {@link DataObject->requireDefaultRecords()}.
|
||||||
|
*/
|
||||||
|
public function requireDefaultRecords() {
|
||||||
|
$dbAdmin = new DatabaseAdmin();
|
||||||
|
Versioned::set_reading_mode('');
|
||||||
|
$dbAdmin->doBuild(true, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sliented as if the file already exists by another process, we don't want
|
||||||
|
* to modify.
|
||||||
|
*/
|
||||||
|
public function saveState($state) {
|
||||||
if (defined('JSON_PRETTY_PRINT')) {
|
if (defined('JSON_PRETTY_PRINT')) {
|
||||||
$content = json_encode($state, JSON_PRETTY_PRINT);
|
$content = json_encode($state, JSON_PRETTY_PRINT);
|
||||||
} else {
|
} else {
|
||||||
$content = json_encode($state);
|
$content = json_encode($state);
|
||||||
}
|
}
|
||||||
file_put_contents($this->getFilePath(), $content);
|
file_put_contents($this->getFilePath(), $content, LOCK_EX);
|
||||||
|
|
||||||
$this->extend('onAfterApplyState');
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public function loadFromFile() {
|
public function loadFromFile() {
|
||||||
@ -305,6 +326,7 @@ class TestSessionEnvironment extends Object {
|
|||||||
|
|
||||||
private function removeStateFile() {
|
private function removeStateFile() {
|
||||||
$file = $this->getFilePath();
|
$file = $this->getFilePath();
|
||||||
|
|
||||||
if(file_exists($file)) {
|
if(file_exists($file)) {
|
||||||
if(!unlink($file)) {
|
if(!unlink($file)) {
|
||||||
throw new \Exception('Unable to remove the testsession state file, please remove it manually. File '
|
throw new \Exception('Unable to remove the testsession state file, please remove it manually. File '
|
||||||
@ -329,6 +351,8 @@ class TestSessionEnvironment extends Object {
|
|||||||
|
|
||||||
if(SapphireTest::using_temp_db()) {
|
if(SapphireTest::using_temp_db()) {
|
||||||
$this->resetDatabaseName();
|
$this->resetDatabaseName();
|
||||||
|
|
||||||
|
SapphireTest::set_is_running_test(false);
|
||||||
}
|
}
|
||||||
|
|
||||||
$this->removeStateFile();
|
$this->removeStateFile();
|
||||||
@ -343,7 +367,7 @@ class TestSessionEnvironment extends Object {
|
|||||||
* @return FixtureFactory The loaded fixture
|
* @return FixtureFactory The loaded fixture
|
||||||
* @throws LogicException
|
* @throws LogicException
|
||||||
*/
|
*/
|
||||||
protected function loadFixtureIntoDb($fixtureFile) {
|
public function loadFixtureIntoDb($fixtureFile) {
|
||||||
$realFile = realpath(BASE_PATH.'/'.$fixtureFile);
|
$realFile = realpath(BASE_PATH.'/'.$fixtureFile);
|
||||||
$baseDir = realpath(Director::baseFolder());
|
$baseDir = realpath(Director::baseFolder());
|
||||||
if(!$realFile || !file_exists($realFile)) {
|
if(!$realFile || !file_exists($realFile)) {
|
||||||
@ -371,11 +395,17 @@ class TestSessionEnvironment extends Object {
|
|||||||
* Reset the database connection to use the original database. Called by {@link self::endTestSession()}.
|
* Reset the database connection to use the original database. Called by {@link self::endTestSession()}.
|
||||||
*/
|
*/
|
||||||
public function resetDatabaseName() {
|
public function resetDatabaseName() {
|
||||||
|
if($this->oldDatabaseName) {
|
||||||
global $databaseConfig;
|
global $databaseConfig;
|
||||||
|
|
||||||
$databaseConfig['database'] = $this->oldDatabaseName;
|
$databaseConfig['database'] = $this->oldDatabaseName;
|
||||||
|
|
||||||
DB::connect($databaseConfig);
|
$conn = DB::getConn();
|
||||||
|
|
||||||
|
if($conn) {
|
||||||
|
$conn->selectDatabase($this->oldDatabaseName);
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
Loading…
Reference in New Issue
Block a user