mirror of
https://github.com/kevinveenbirkenbach/infinito.git
synced 2025-09-13 13:57:10 +02:00
Renamed domain FixtureManagement to Fixture
This commit is contained in:
@@ -0,0 +1,78 @@
|
||||
<?php
|
||||
|
||||
namespace tests\Integration\Domain\Fixture;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use Infinito\Domain\Fixture\FixtureSourceFactory;
|
||||
use Infinito\Domain\Fixture\FixtureSource\FixtureSourceInterface;
|
||||
use Infinito\Entity\Source\SourceInterface;
|
||||
|
||||
/**
|
||||
* @author kevinfrantz
|
||||
*/
|
||||
class FixtureSourceFactoryIntegrationTest extends TestCase
|
||||
{
|
||||
/**
|
||||
* @var array|FixtureSourceInterface[]
|
||||
*/
|
||||
protected $fixtureSources;
|
||||
|
||||
/**
|
||||
* {@inheritdoc}
|
||||
*
|
||||
* @see \PHPUnit\Framework\TestCase::setUp()
|
||||
*/
|
||||
public function setUp(): void
|
||||
{
|
||||
$this->fixtureSources = FixtureSourceFactory::getAllFixtureSources();
|
||||
}
|
||||
|
||||
public function testFixtureSourcesSlugs(): void
|
||||
{
|
||||
$slugs = [];
|
||||
foreach ($this->fixtureSources as $fixtureSource) {
|
||||
$this->assertInstanceOf(FixtureSourceInterface::class, $fixtureSource);
|
||||
$slug = $fixtureSource->getSlug();
|
||||
$this->assertIsString($slug);
|
||||
$this->assertFalse(in_array($slug, $slugs), 'A slug has to be unique');
|
||||
$slugs[] = $slug;
|
||||
}
|
||||
}
|
||||
|
||||
public function testFixtureSourcesIcons(): void
|
||||
{
|
||||
$icons = [];
|
||||
foreach ($this->fixtureSources as $fixtureSource) {
|
||||
$this->assertInstanceOf(FixtureSourceInterface::class, $fixtureSource);
|
||||
$icon = $fixtureSource->getIcon();
|
||||
$this->assertIsString($icon);
|
||||
$this->assertFalse(in_array($icon, $icons), 'An icon has to be unique');
|
||||
$icons[] = $icon;
|
||||
}
|
||||
}
|
||||
|
||||
public function testFixtureSourceNames(): void
|
||||
{
|
||||
$names = [];
|
||||
foreach ($this->fixtureSources as $fixtureSource) {
|
||||
$this->assertInstanceOf(FixtureSourceInterface::class, $fixtureSource);
|
||||
$name = $fixtureSource->getName();
|
||||
$this->assertIsString($name);
|
||||
$this->assertFalse(in_array($name, $names), 'An name has to be unique');
|
||||
$names[] = $name;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* The following test is redundant.
|
||||
*/
|
||||
public function testFixtureSourcesObjects(): void
|
||||
{
|
||||
$objects = [];
|
||||
foreach ($this->fixtureSources as $fixtureSource) {
|
||||
$this->assertInstanceOf(SourceInterface::class, $fixtureSource->getORMReadyObject());
|
||||
$this->assertFalse(in_array($fixtureSource, $objects), 'A object has to be unique');
|
||||
$objects[] = $fixtureSource;
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user