function TestDatabase::getLockFile
Same name in other branches
- 8.9.x core/lib/Drupal/Core/Test/TestDatabase.php \Drupal\Core\Test\TestDatabase::getLockFile()
- 10 core/lib/Drupal/Core/Test/TestDatabase.php \Drupal\Core\Test\TestDatabase::getLockFile()
- 11.x core/lib/Drupal/Core/Test/TestDatabase.php \Drupal\Core\Test\TestDatabase::getLockFile()
Gets the lock file path.
Parameters
int $lock_id: The test method lock ID.
Return value
string A file path to the symbolic link that prevents the lock ID being re-used.
2 calls to TestDatabase::getLockFile()
- TestDatabase::getTestLock in core/
lib/ Drupal/ Core/ Test/ TestDatabase.php - Generates a unique lock ID for the test method.
- TestDatabase::releaseLock in core/
lib/ Drupal/ Core/ Test/ TestDatabase.php - Releases a lock.
File
-
core/
lib/ Drupal/ Core/ Test/ TestDatabase.php, line 180
Class
- TestDatabase
- Provides helper methods for interacting with the fixture database.
Namespace
Drupal\Core\TestCode
protected function getLockFile($lock_id) {
return FileSystem::getOsTemporaryDirectory() . '/test_' . $lock_id;
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.