This repository was archived by the owner on Jun 30, 2023. It is now read-only.

Description
I'm currently working on an extension that imports static data using an ext_tables_static+adt.sql file, and that includes a functional repository test that tests that records can be loaded from the corresponding table, and that fields are mapped correctly for the model.
The first time one of those tests is run (when a new test system and a new DB is created), is passes. The second time, it fails because the database is truncated:
public function setUp(
// …
) {
$this->registerNtfStreamWrapper();
$this->setTypo3Context();
if ($this->recentTestSystemExists()) {
$this->includeAndStartCoreBootstrap();
$this->initializeTestDatabase();
$this->loadExtensionConfiguration();
} else {
// …
}
protected function initializeTestDatabase()
{
$this->bootstrap->initializeTypo3DbGlobal();
/** @var DatabaseConnection $database */
$database = $GLOBALS['TYPO3_DB'];
// …
foreach ($database->admin_get_tables() as $table) {
$database->admin_query('TRUNCATE ' . $table['Name'] . ';');
}
}
This problem occurs with nimut/testing-framework 2.0.3, but the corresponding code in master does the same things.
May a configuration in the functional test case which tables should be kept would be an approach for this?