[12.x] Fix stale in-memory SQLite connections after re-migration in RefreshDatabase #57716
+19
−0
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem
When using the
RefreshDatabasetrait with SQLite in-memory databases, tests can fail with "General error: 1 no such table" errors in subsequent test runs after a PDO connection is detected as closed.This occurs when:
mysqlandmysql_vandar)RefreshDatabaseState::$migrated = falseRefreshDatabaseState::$inMemoryConnectionsstill references the old, closed connectionsRoot Cause
In
RefreshDatabase::refreshTestDatabase(), whenRefreshDatabaseState::$migratedis false and migrations run again viamigrateDatabases(), the method creates new database connections. However, the stored PDO references inRefreshDatabaseState::$inMemoryConnectionsare never updated to point to these new connections.The check in
RefreshDatabase::beginDatabaseTransaction():Correctly detects when migrations need to run again, but the re-migration process doesn't update the cached in-memory connection references.
Solution
Call
updateInMemoryConnections()immediately aftermigrateDatabases()to ensureRefreshDatabaseState::$inMemoryConnectionsalways references the current, valid PDO instances.Changes
This ensures that after re-migration, all subsequent tests reference the correct in-memory database connections with the proper schema.