thuecat/Tests/Unit/Domain/Model/Frontend/OfferTest.php
Daniel Siepmann 2fd4b1bc2f
Handle multiple offerType values (#75)
The import resulted in an exception if there was an array of types
instead of a string.
Both situations are now handled and API of models is kept.
Existing imported data is also kept.
2022-09-29 14:33:19 +02:00

112 lines
2.9 KiB
PHP

<?php
declare(strict_types=1);
/*
* Copyright (C) 2022 Daniel Siepmann <coding@daniel-siepmann.de>
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation; either version 2
* 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
namespace WerkraumMedia\ThueCat\Tests\Unit\Domain\Model\Frontend;
use PHPUnit\Framework\TestCase;
use WerkraumMedia\ThueCat\Domain\Model\Frontend\Offer;
/**
* @covers \WerkraumMedia\ThueCat\Domain\Model\Frontend\Offer
*/
class OfferTest extends TestCase
{
/**
* @test
*/
public function canBeCreatedWithLegacyTypeAsString(): void
{
$subject = Offer::createFromArray([
'type' => 'LegacyType',
'title' => 'Example Title',
'description' => 'Example Description',
'prices' => [],
]);
self::assertInstanceOf(
Offer::class,
$subject
);
self::assertSame('LegacyType', $subject->getType());
}
/**
* @test
*/
public function canBeCreatedWithSingleType(): void
{
$subject = Offer::createFromArray([
'types' => ['ParkingFee'],
'title' => 'Example Title',
'description' => 'Example Description',
'prices' => [],
]);
self::assertInstanceOf(
Offer::class,
$subject
);
self::assertSame('ParkingFee', $subject->getType());
}
/**
* @test
*/
public function canBeCreatedWithMultipleTypes(): void
{
$subject = Offer::createFromArray([
'types' => ['Childcare', 'CourseOffer'],
'title' => 'Example Title',
'description' => 'Example Description',
'prices' => [],
]);
self::assertInstanceOf(
Offer::class,
$subject
);
self::assertSame('CourseOffer', $subject->getType());
}
/**
* @test
*/
public function canBeCreatedWithoutType(): void
{
$subject = Offer::createFromArray([
'title' => 'Example Title',
'description' => 'Example Description',
'prices' => [],
]);
self::assertInstanceOf(
Offer::class,
$subject
);
self::assertSame('', $subject->getType());
}
}