Files
SyliusCmsPlugin/tests/Fixture/FrequentlyAskedQuestionFixtureTest.php
Mikołaj Król 4d40f0ee59 Update PHPUnit
2018-07-17 01:41:43 +02:00

238 lines
6.2 KiB
PHP
Executable File

<?php
/*
* This file has been created by developers from BitBag.
* Feel free to contact us once you face any issues or want to start
* another great project.
* You can find more information about us on https://bitbag.shop and write us
* an email on mikolaj.krol@bitbag.pl.
*/
declare(strict_types=1);
namespace Tests\BitBag\SyliusCmsPlugin\Fixture;
use BitBag\SyliusCmsPlugin\Fixture\Factory\FixtureFactoryInterface;
use BitBag\SyliusCmsPlugin\Fixture\FrequentlyAskedQuestionFixture;
use Matthias\SymfonyConfigTest\PhpUnit\ConfigurationTestCaseTrait;
use PHPUnit\Framework\TestCase;
final class FrequentlyAskedQuestionFixtureTest extends TestCase
{
use ConfigurationTestCaseTrait;
/**
* @test
*/
public function custom_are_optional(): void
{
$this->assertConfigurationIsValid([[]], 'custom');
}
/**
* @test
*/
public function custom_enabled_is_optional_but_must_be_boolean(): void
{
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'enabled' => true,
],
],
],
], 'custom.*.enabled');
$this->assertPartialConfigurationIsInvalid([
[
'custom' => [
'faq_1' => [
'enabled' => 'boolean',
],
],
],
], 'custom.*.enabled');
}
/**
* @test
*/
public function custom_remove_existing_is_optional_but_must_be_boolean(): void
{
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'remove_existing' => true,
],
],
],
], 'custom.*.remove_existing');
$this->assertPartialConfigurationIsInvalid([
[
'custom' => [
'faq_1' => [
'remove_existing' => 'boolean',
],
],
],
], 'custom.*.remove_existing');
}
/**
* @test
*/
public function custom_number_is_optional_but_must_be_integer(): void
{
$this->assertConfigurationIsValid([
[
'custom' => [
'homepage_banner' => [
'number' => 1,
],
],
],
], 'custom.*.number');
$this->assertPartialConfigurationIsInvalid([
[
'custom' => [
'homepage_banner' => [
'number' => '1',
],
],
],
], 'custom.*.number');
}
/**
* @test
*/
public function custom_position_is_optional_but_must_be_integer(): void
{
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'position' => 1,
],
],
],
], 'custom.*.position');
$this->assertPartialConfigurationIsInvalid([
[
'custom' => [
'faq_1' => [
'position' => '1',
],
],
],
], 'custom.*.position');
}
/**
* @test
*/
public function custom_translations_is_optional_but_must_be_array(): void
{
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'translations' => [],
],
],
],
], 'custom.*.translations');
$this->assertPartialConfigurationIsInvalid([
[
'custom' => [
'faq_1' => [
'translations' => 'array',
],
],
],
], 'custom.*.translations');
}
/**
* @test
*/
public function custom_may_contain_question(): void
{
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'translations' => [
'en_US' => [
'question' => 'Example question ?',
],
],
],
],
],
], 'custom.*.translations.*.question');
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'translations' => [
'en_US' => [
'question' => '',
],
],
],
],
],
], 'custom.*.translations.*.question');
}
/**
* @test
*/
public function custom_may_contain_answer(): void
{
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'translations' => [
'en_US' => [
'answer' => 'Example answer',
],
],
],
],
],
], 'custom.*.translations.*.answer');
$this->assertConfigurationIsValid([
[
'custom' => [
'faq_1' => [
'translations' => [
'en_US' => [
'answer' => '',
],
],
],
],
],
], 'custom.*.translations.*.answer');
}
protected function getConfiguration(): FrequentlyAskedQuestionFixture
{
/** @var FixtureFactoryInterface $faqFixtureFactory */
$faqFixtureFactory = $this->getMockBuilder(FixtureFactoryInterface::class)->getMock();
return new FrequentlyAskedQuestionFixture($faqFixtureFactory);
}
}