mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-16 13:24:31 +02:00
Started adding basic tests for LogEntryRepository
This commit is contained in:
parent
8fdf37261d
commit
204178740c
4 changed files with 213 additions and 0 deletions
71
src/DataFixtures/LogEntryFixtures.php
Normal file
71
src/DataFixtures/LogEntryFixtures.php
Normal file
|
@ -0,0 +1,71 @@
|
|||
<?php
|
||||
/*
|
||||
* This file is part of Part-DB (https://github.com/Part-DB/Part-DB-symfony).
|
||||
*
|
||||
* Copyright (C) 2019 - 2024 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\DataFixtures;
|
||||
|
||||
use App\Entity\LogSystem\ElementCreatedLogEntry;
|
||||
use App\Entity\LogSystem\ElementEditedLogEntry;
|
||||
use App\Entity\Parts\Category;
|
||||
use App\Entity\UserSystem\User;
|
||||
use Doctrine\Bundle\FixturesBundle\Fixture;
|
||||
use Doctrine\Common\DataFixtures\DependentFixtureInterface;
|
||||
use Doctrine\Persistence\ObjectManager;
|
||||
|
||||
class LogEntryFixtures extends Fixture implements DependentFixtureInterface
|
||||
{
|
||||
|
||||
public function load(ObjectManager $manager)
|
||||
{
|
||||
$this->createCategoryEntries($manager);
|
||||
}
|
||||
|
||||
public function createCategoryEntries(ObjectManager $manager): void
|
||||
{
|
||||
$category = $this->getReference(Category::class . '_1', Category::class);
|
||||
|
||||
$logEntry = new ElementCreatedLogEntry($category);
|
||||
$logEntry->setUser($this->getReference(UserFixtures::ADMIN, User::class));
|
||||
$logEntry->setComment('Test');
|
||||
$manager->persist($logEntry);
|
||||
|
||||
$logEntry = new ElementEditedLogEntry($category);
|
||||
$logEntry->setUser($this->getReference(UserFixtures::ADMIN, User::class));
|
||||
$logEntry->setComment('Test');
|
||||
|
||||
$logEntry->setOldData(['name' => 'Test']);
|
||||
$logEntry->setNewData(['name' => 'Node 1.1']);
|
||||
|
||||
$manager->persist($logEntry);
|
||||
$manager->flush();
|
||||
|
||||
|
||||
}
|
||||
|
||||
public function getDependencies(): array
|
||||
{
|
||||
return [
|
||||
UserFixtures::class,
|
||||
DataStructureFixtures::class
|
||||
];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue