2019-07-18 13:44:19 +02:00
|
|
|
<?php
|
2021-01-07 08:50:43 +01:00
|
|
|
|
2019-07-18 13:44:19 +02:00
|
|
|
namespace Wrm\Events\Tests\Unit\Domain\Model;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Test case.
|
|
|
|
*
|
|
|
|
* @author Dirk Koritnik <koritnik@werkraum-media.de>
|
|
|
|
*/
|
|
|
|
class EventsTest extends \TYPO3\TestingFramework\Core\Unit\UnitTestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var \Wrm\Events\Domain\Model\Events
|
|
|
|
*/
|
|
|
|
protected $subject = null;
|
|
|
|
|
2021-01-07 09:01:58 +01:00
|
|
|
protected function setUp(): void
|
2019-07-18 13:44:19 +02:00
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
$this->subject = new \Wrm\Events\Domain\Model\Events();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getGlobalIdReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getGlobalId()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setGlobalIdForStringSetsGlobalId()
|
|
|
|
{
|
|
|
|
$this->subject->setGlobalId('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'globalId',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getTitleReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getTitle()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setTitleForStringSetsTitle()
|
|
|
|
{
|
|
|
|
$this->subject->setTitle('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'title',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getTeaserReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getTeaser()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setTeaserForStringSetsTeaser()
|
|
|
|
{
|
|
|
|
$this->subject->setTeaser('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'teaser',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getDetailsReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getDetails()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setDetailsForStringSetsDetails()
|
|
|
|
{
|
|
|
|
$this->subject->setDetails('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'details',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getPriceInfoReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getPriceInfo()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setPriceInfoForStringSetsPriceInfo()
|
|
|
|
{
|
|
|
|
$this->subject->setPriceInfo('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'priceInfo',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getStreetReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getStreet()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setStreetForStringSetsStreet()
|
|
|
|
{
|
|
|
|
$this->subject->setStreet('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'street',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getDistrictReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getDistrict()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setDistrictForStringSetsDistrict()
|
|
|
|
{
|
|
|
|
$this->subject->setDistrict('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'district',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getCityReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getCity()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setCityForStringSetsCity()
|
|
|
|
{
|
|
|
|
$this->subject->setCity('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'city',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getZipReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getZip()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setZipForStringSetsZip()
|
|
|
|
{
|
|
|
|
$this->subject->setZip('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'zip',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getWebReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getWeb()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setWebForStringSetsWeb()
|
|
|
|
{
|
|
|
|
$this->subject->setWeb('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'web',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getBookingReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getBooking()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setBookingForStringSetsBooking()
|
|
|
|
{
|
|
|
|
$this->subject->setBooking('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'booking',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getTicketReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getTicket()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setTicketForStringSetsTicket()
|
|
|
|
{
|
|
|
|
$this->subject->setTicket('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'ticket',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getFacebookReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getFacebook()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setFacebookForStringSetsFacebook()
|
|
|
|
{
|
|
|
|
$this->subject->setFacebook('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'facebook',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getYoutubeReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getYoutube()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setYoutubeForStringSetsYoutube()
|
|
|
|
{
|
|
|
|
$this->subject->setYoutube('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'youtube',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getLatitudeReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getLatitude()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setLatitudeForStringSetsLatitude()
|
|
|
|
{
|
|
|
|
$this->subject->setLatitude('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'latitude',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getLongitudeReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getLongitude()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setLongitudeForStringSetsLongitude()
|
|
|
|
{
|
|
|
|
$this->subject->setLongitude('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'longitude',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getImagesReturnsInitialValueForFileReference()
|
|
|
|
{
|
|
|
|
self::assertEquals(
|
|
|
|
null,
|
|
|
|
$this->subject->getImages()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setImagesForFileReferenceSetsImages()
|
|
|
|
{
|
|
|
|
$fileReferenceFixture = new \TYPO3\CMS\Extbase\Domain\Model\FileReference();
|
|
|
|
$this->subject->setImages($fileReferenceFixture);
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
$fileReferenceFixture,
|
|
|
|
'images',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getSlugReturnsInitialValueForString()
|
|
|
|
{
|
|
|
|
self::assertSame(
|
|
|
|
'',
|
|
|
|
$this->subject->getSlug()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setSlugForStringSetsSlug()
|
|
|
|
{
|
|
|
|
$this->subject->setSlug('Conceived at T3CON10');
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
'Conceived at T3CON10',
|
|
|
|
'slug',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getOrganizerReturnsInitialValueFor()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setOrganizerForSetsOrganizer()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getDateReturnsInitialValueFor()
|
|
|
|
{
|
|
|
|
$newObjectStorage = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
|
|
self::assertEquals(
|
|
|
|
$newObjectStorage,
|
|
|
|
$this->subject->getDate()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setDateForObjectStorageContainingSetsDate()
|
|
|
|
{
|
2021-01-07 09:01:58 +01:00
|
|
|
// $date = new ();
|
2019-07-18 13:44:19 +02:00
|
|
|
$objectStorageHoldingExactlyOneDate = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
|
|
$objectStorageHoldingExactlyOneDate->attach($date);
|
|
|
|
$this->subject->setDate($objectStorageHoldingExactlyOneDate);
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
$objectStorageHoldingExactlyOneDate,
|
|
|
|
'date',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function addDateToObjectStorageHoldingDate()
|
|
|
|
{
|
2021-01-07 09:01:58 +01:00
|
|
|
// $date = new ();
|
2019-07-18 13:44:19 +02:00
|
|
|
$dateObjectStorageMock = $this->getMockBuilder(\TYPO3\CMS\Extbase\Persistence\ObjectStorage::class)
|
|
|
|
->setMethods(['attach'])
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$dateObjectStorageMock->expects(self::once())->method('attach')->with(self::equalTo($date));
|
|
|
|
$this->inject($this->subject, 'date', $dateObjectStorageMock);
|
|
|
|
|
|
|
|
$this->subject->addDate($date);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function removeDateFromObjectStorageHoldingDate()
|
|
|
|
{
|
2021-01-07 09:01:58 +01:00
|
|
|
// $date = new ();
|
2019-07-18 13:44:19 +02:00
|
|
|
$dateObjectStorageMock = $this->getMockBuilder(\TYPO3\CMS\Extbase\Persistence\ObjectStorage::class)
|
|
|
|
->setMethods(['detach'])
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$dateObjectStorageMock->expects(self::once())->method('detach')->with(self::equalTo($date));
|
|
|
|
$this->inject($this->subject, 'date', $dateObjectStorageMock);
|
|
|
|
|
|
|
|
$this->subject->removeDate($date);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function getRegionReturnsInitialValueFor()
|
|
|
|
{
|
|
|
|
$newObjectStorage = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
|
|
self::assertEquals(
|
|
|
|
$newObjectStorage,
|
|
|
|
$this->subject->getRegion()
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function setRegionForObjectStorageContainingSetsRegion()
|
|
|
|
{
|
2021-01-07 09:01:58 +01:00
|
|
|
// $region = new ();
|
2019-07-18 13:44:19 +02:00
|
|
|
$objectStorageHoldingExactlyOneRegion = new \TYPO3\CMS\Extbase\Persistence\ObjectStorage();
|
|
|
|
$objectStorageHoldingExactlyOneRegion->attach($region);
|
|
|
|
$this->subject->setRegion($objectStorageHoldingExactlyOneRegion);
|
|
|
|
|
|
|
|
self::assertAttributeEquals(
|
|
|
|
$objectStorageHoldingExactlyOneRegion,
|
|
|
|
'region',
|
|
|
|
$this->subject
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function addRegionToObjectStorageHoldingRegion()
|
|
|
|
{
|
2021-01-07 09:01:58 +01:00
|
|
|
// $region = new ();
|
2019-07-18 13:44:19 +02:00
|
|
|
$regionObjectStorageMock = $this->getMockBuilder(\TYPO3\CMS\Extbase\Persistence\ObjectStorage::class)
|
|
|
|
->setMethods(['attach'])
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$regionObjectStorageMock->expects(self::once())->method('attach')->with(self::equalTo($region));
|
|
|
|
$this->inject($this->subject, 'region', $regionObjectStorageMock);
|
|
|
|
|
|
|
|
$this->subject->addRegion($region);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function removeRegionFromObjectStorageHoldingRegion()
|
|
|
|
{
|
2021-01-07 09:01:58 +01:00
|
|
|
// $region = new ();
|
2019-07-18 13:44:19 +02:00
|
|
|
$regionObjectStorageMock = $this->getMockBuilder(\TYPO3\CMS\Extbase\Persistence\ObjectStorage::class)
|
|
|
|
->setMethods(['detach'])
|
|
|
|
->disableOriginalConstructor()
|
|
|
|
->getMock();
|
|
|
|
|
|
|
|
$regionObjectStorageMock->expects(self::once())->method('detach')->with(self::equalTo($region));
|
|
|
|
$this->inject($this->subject, 'region', $regionObjectStorageMock);
|
|
|
|
|
|
|
|
$this->subject->removeRegion($region);
|
|
|
|
}
|
|
|
|
}
|