mirror of
https://github.com/werkraum-media/events.git
synced 2024-11-14 17:56:10 +01:00
65 lines
2.1 KiB
PHP
65 lines
2.1 KiB
PHP
|
<?php
|
||
|
|
||
|
namespace Wrm\Events\Tests\Functional\Import\DestinationDataTest;
|
||
|
|
||
|
use GuzzleHttp\Psr7\Response;
|
||
|
use Wrm\Events\Command\ImportDestinationDataViaConfigruationCommand;
|
||
|
|
||
|
/**
|
||
|
* @testdox DestinationData import
|
||
|
*/
|
||
|
class ImportsWithConfiguredRepeatUntilTest extends AbstractTest
|
||
|
{
|
||
|
public function setUp(): void
|
||
|
{
|
||
|
parent::setUp();
|
||
|
|
||
|
$this->importDataSet('EXT:events/Tests/Functional/Import/DestinationDataTest/Fixtures/MinimalImportConfiguration.xml');
|
||
|
$this->setDateAspect(new \DateTimeImmutable('2022-07-13', new \DateTimeZone('UTC')));
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function recurringWeekly(): void
|
||
|
{
|
||
|
$this->setUpConfiguration([
|
||
|
'restUrl = https://example.com/some-path/',
|
||
|
], [
|
||
|
'repeatUntil = +30 days',
|
||
|
]);
|
||
|
$this->setUpResponses([new Response(200, [], file_get_contents(__DIR__ . '/Fixtures/ResponseWithRecurringWeeklyWithoutRepeatUntil.json') ?: '')]);
|
||
|
|
||
|
$this->executeCommand();
|
||
|
|
||
|
$this->assertCSVDataSet('EXT:events/Tests/Functional/Import/DestinationDataTest/Assertions/ImportsRecurringDatesWeeklyWithConfiguredRepeatUntil.csv');
|
||
|
self::assertFileEquals(
|
||
|
__DIR__ . '/Assertions/EmptyLogFile.txt',
|
||
|
$this->getInstancePath() . '/typo3temp/var/log/typo3_0493d91d8e.log',
|
||
|
'Logfile was not empty.'
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @test
|
||
|
*/
|
||
|
public function recurringDaily(): void
|
||
|
{
|
||
|
$this->setUpConfiguration([
|
||
|
'restUrl = https://example.com/some-path/',
|
||
|
], [
|
||
|
'repeatUntil = +10 days',
|
||
|
]);
|
||
|
$this->setUpResponses([new Response(200, [], file_get_contents(__DIR__ . '/Fixtures/ResponseWithRecurringDailyWithoutRepeatUntil.json') ?: '')]);
|
||
|
|
||
|
$this->executeCommand();
|
||
|
|
||
|
$this->assertCSVDataSet('EXT:events/Tests/Functional/Import/DestinationDataTest/Assertions/ImportsRecurringDatesDailyWithConfiguredRepeatUntil.csv');
|
||
|
self::assertFileEquals(
|
||
|
__DIR__ . '/Assertions/EmptyLogFile.txt',
|
||
|
$this->getInstancePath() . '/typo3temp/var/log/typo3_0493d91d8e.log',
|
||
|
'Logfile was not empty.'
|
||
|
);
|
||
|
}
|
||
|
}
|