mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-21 09:35:49 +02:00
Fixed problem with loading Fixtures on MySQL in combination with savepoints
We must now load the fixtures using custom command partdb:fixtures:load
This commit is contained in:
parent
5b3156ccf4
commit
5faeb5dd56
5 changed files with 133 additions and 4 deletions
3
.github/workflows/tests.yml
vendored
3
.github/workflows/tests.yml
vendored
|
@ -108,8 +108,9 @@ jobs:
|
||||||
- name: Do migrations
|
- name: Do migrations
|
||||||
run: php bin/console --env test doctrine:migrations:migrate -n
|
run: php bin/console --env test doctrine:migrations:migrate -n
|
||||||
|
|
||||||
|
# Use our own custom fixtures loading command to circumvent some problems with reset the autoincrement values
|
||||||
- name: Load fixtures
|
- name: Load fixtures
|
||||||
run: php bin/console --env test doctrine:fixtures:load -n
|
run: php bin/console --env test partdb:fixtures:load -n
|
||||||
|
|
||||||
- name: Run PHPunit and generate coverage
|
- name: Run PHPunit and generate coverage
|
||||||
run: ./bin/phpunit --coverage-clover=coverage.xml
|
run: ./bin/phpunit --coverage-clover=coverage.xml
|
||||||
|
|
|
@ -397,4 +397,4 @@ when@test:
|
||||||
arguments:
|
arguments:
|
||||||
- '@doctrine.fixtures.loader'
|
- '@doctrine.fixtures.loader'
|
||||||
- '@doctrine'
|
- '@doctrine'
|
||||||
- { default: '@App\Doctrine\Purger\ResetAutoIncrementPurgerFactory' }
|
- { default: '@App\Doctrine\Purger\DoNotUsePurgerFactory' }
|
76
src/Command/LoadFixturesCommand.php
Normal file
76
src/Command/LoadFixturesCommand.php
Normal file
|
@ -0,0 +1,76 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Command;
|
||||||
|
|
||||||
|
use App\Doctrine\Purger\ResetAutoIncrementORMPurger;
|
||||||
|
use App\Doctrine\Purger\DoNotUsePurgerFactory;
|
||||||
|
use App\Doctrine\Purger\ResetAutoIncrementPurgerFactory;
|
||||||
|
use Doctrine\Bundle\FixturesBundle\Purger\ORMPurgerFactory;
|
||||||
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
use Symfony\Component\Console\Attribute\AsCommand;
|
||||||
|
use Symfony\Component\Console\Command\Command;
|
||||||
|
use Symfony\Component\Console\Input\ArrayInput;
|
||||||
|
use Symfony\Component\Console\Input\InputInterface;
|
||||||
|
use Symfony\Component\Console\Output\OutputInterface;
|
||||||
|
use Symfony\Component\Console\Style\SymfonyStyle;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This command does basically the same as doctrine:fixtures:load, but it purges the database before loading the fixtures.
|
||||||
|
* It does so in another transaction, so we can modify the purger to reset the autoincrement, which would not be possible
|
||||||
|
* because the implicit commit otherwise.
|
||||||
|
*/
|
||||||
|
#[AsCommand(name: 'partdb:fixtures:load', description: 'Load test fixtures into the database and allows to reset the autoincrement before loading the fixtures.', hidden: true)]
|
||||||
|
class LoadFixturesCommand extends Command
|
||||||
|
{
|
||||||
|
public function __construct(private readonly EntityManagerInterface $entityManager)
|
||||||
|
{
|
||||||
|
parent::__construct();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected function execute(InputInterface $input, OutputInterface $output)
|
||||||
|
{
|
||||||
|
$ui = new SymfonyStyle($input, $output);
|
||||||
|
|
||||||
|
$ui->warning('This command is for development and testing purposes only. It will purge the database and load fixtures afterwards. Do not use in production!');
|
||||||
|
|
||||||
|
if (! $ui->confirm(sprintf('Careful, database "%s" will be purged. Do you want to continue?', $this->entityManager->getConnection()->getDatabase()), ! $input->isInteractive())) {
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
$factory = new ResetAutoIncrementPurgerFactory();
|
||||||
|
$purger = $factory->createForEntityManager(null, $this->entityManager);
|
||||||
|
|
||||||
|
$purger->purge();
|
||||||
|
|
||||||
|
//Afterwards run the load fixtures command as normal, but with the --append option
|
||||||
|
$new_input = new ArrayInput([
|
||||||
|
'command' => 'doctrine:fixtures:load',
|
||||||
|
'--append' => true,
|
||||||
|
]);
|
||||||
|
|
||||||
|
$returnCode = $this->getApplication()?->doRun($new_input, $output);
|
||||||
|
|
||||||
|
return $returnCode ?? Command::FAILURE;
|
||||||
|
}
|
||||||
|
}
|
53
src/Doctrine/Purger/DoNotUsePurgerFactory.php
Normal file
53
src/Doctrine/Purger/DoNotUsePurgerFactory.php
Normal file
|
@ -0,0 +1,53 @@
|
||||||
|
<?php
|
||||||
|
/*
|
||||||
|
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||||
|
*
|
||||||
|
* Copyright (C) 2019 - 2023 Jan Böhmer (https://github.com/jbtronics)
|
||||||
|
*
|
||||||
|
* This program is free software: you can redistribute it and/or modify
|
||||||
|
* it under the terms of the GNU Affero General Public License as published
|
||||||
|
* by the Free Software Foundation, either version 3 of the License, or
|
||||||
|
* (at your option) any later version.
|
||||||
|
*
|
||||||
|
* This program is distributed in the hope that it will be useful,
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
* GNU Affero General Public License for more details.
|
||||||
|
*
|
||||||
|
* You should have received a copy of the GNU Affero General Public License
|
||||||
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
||||||
|
*/
|
||||||
|
|
||||||
|
declare(strict_types=1);
|
||||||
|
|
||||||
|
|
||||||
|
namespace App\Doctrine\Purger;
|
||||||
|
|
||||||
|
use Doctrine\Bundle\FixturesBundle\Purger\PurgerFactory;
|
||||||
|
use Doctrine\Common\DataFixtures\Purger\ORMPurgerInterface;
|
||||||
|
use Doctrine\Common\DataFixtures\Purger\PurgerInterface;
|
||||||
|
use Doctrine\ORM\EntityManagerInterface;
|
||||||
|
|
||||||
|
class DoNotUsePurgerFactory implements PurgerFactory
|
||||||
|
{
|
||||||
|
|
||||||
|
public function createForEntityManager(
|
||||||
|
?string $emName,
|
||||||
|
EntityManagerInterface $em,
|
||||||
|
array $excluded = [],
|
||||||
|
bool $purgeWithTruncate = false
|
||||||
|
): PurgerInterface {
|
||||||
|
return new class() implements ORMPurgerInterface {
|
||||||
|
|
||||||
|
public function purge(): void
|
||||||
|
{
|
||||||
|
throw new \LogicException('Do not use doctrine:fixtures:load directly. Use partdb:fixtures:load instead!');
|
||||||
|
}
|
||||||
|
|
||||||
|
public function setEntityManager(EntityManagerInterface $em)
|
||||||
|
{
|
||||||
|
// TODO: Implement setEntityManager() method.
|
||||||
|
}
|
||||||
|
};
|
||||||
|
}
|
||||||
|
}
|
|
@ -190,7 +190,6 @@ class ResetAutoIncrementORMPurger implements PurgerInterface, ORMPurgerInterface
|
||||||
|
|
||||||
//Reseting autoincrement is only supported on MySQL platforms
|
//Reseting autoincrement is only supported on MySQL platforms
|
||||||
if ($platform instanceof AbstractMySQLPlatform ) { //|| $platform instanceof SqlitePlatform) {
|
if ($platform instanceof AbstractMySQLPlatform ) { //|| $platform instanceof SqlitePlatform) {
|
||||||
$connection->beginTransaction();
|
|
||||||
$connection->executeQuery($this->getResetAutoIncrementSQL($tbl, $platform));
|
$connection->executeQuery($this->getResetAutoIncrementSQL($tbl, $platform));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue