Files
kimai2/tests/DataFixtures/ProjectFixtures.php

116 lines
2.6 KiB
PHP

<?php
/*
* This file is part of the Kimai time-tracking app.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace App\Tests\DataFixtures;
use App\Entity\Customer;
use App\Entity\Project;
use App\Entity\User;
use Doctrine\Bundle\FixturesBundle\Fixture;
use Doctrine\Common\Persistence\ObjectManager;
use Faker\Factory;
/**
* Defines the sample data to load in during controller tests.
*/
final class ProjectFixtures extends Fixture
{
/**
* @var int
*/
private $amount = 0;
/**
* @var bool
*/
private $isVisible = null;
/**
* @var callable
*/
private $callback;
public function getAmount(): int
{
return $this->amount;
}
public function setAmount(int $amount): ProjectFixtures
{
$this->amount = $amount;
return $this;
}
public function setIsVisible(bool $visible): ProjectFixtures
{
$this->isVisible = $visible;
return $this;
}
/**
* Will be called prior to persisting the object.
*
* @param callable $callback
* @return ProjectFixtures
*/
public function setCallback(callable $callback): ProjectFixtures
{
$this->callback = $callback;
return $this;
}
/**
* {@inheritdoc}
*/
public function load(ObjectManager $manager)
{
$customers = $this->getAllCustomers($manager);
$faker = Factory::create();
for ($i = 0; $i < $this->amount; $i++) {
$visible = 0 != $i % 3;
if (null !== $this->isVisible) {
$visible = $this->isVisible;
}
$project = new Project();
$project
->setName($faker->catchPhrase . ($visible ? '' : ' (x)'))
->setBudget(rand(0, 10000))
->setComment($faker->text)
->setCustomer($customers[array_rand($customers)])
->setVisible($visible)
;
if (null !== $this->callback) {
call_user_func($this->callback, $project);
}
$manager->persist($project);
}
$manager->flush();
}
/**
* @param ObjectManager $manager
* @return Customer[]
*/
protected function getAllCustomers(ObjectManager $manager)
{
$all = [];
/* @var User[] $entries */
$entries = $manager->getRepository(Customer::class)->findAll();
foreach ($entries as $temp) {
$all[$temp->getId()] = $temp;
}
return $all;
}
}