Merge pull request #63 from blueo/pulls/db-connection-on-state-load

Connect to test database on session load
This commit is contained in:
Serge Latyntsev 2019-05-10 14:15:03 +12:00 committed by GitHub
commit 0c479ad2eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -71,6 +71,9 @@ class TestSessionHTTPMiddleware implements HTTPMiddleware
Email::config()->set("send_all_emails_to", null);
}
// Connect to the test session database
$this->testSessionEnvironment->connectToDatabase();
// Allows inclusion of a PHP file, usually with procedural commands
// to set up required test state. The file can be generated
// through {@link TestSessionStubCodeWriter}, and the session state
@ -79,9 +82,6 @@ class TestSessionHTTPMiddleware implements HTTPMiddleware
if (isset($testState->stubfile)) {
$file = $testState->stubfile;
if (!Director::isLive() && $file && file_exists($file)) {
// Connect to the database so the included code can interact with it
$this->testSessionEnvironment->connectToDatabase();
include_once($file);
}
}