2023-01-05 10:01:13 +01:00
|
|
|
<?php
|
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
2023-11-09 10:27:43 +01:00
|
|
|
namespace WerkraumMedia\Events\Tests\Functional\Import\DestinationDataTest;
|
2023-01-05 10:01:13 +01:00
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
use DateTimeImmutable;
|
|
|
|
use DateTimeZone;
|
2023-01-05 10:01:13 +01:00
|
|
|
use GuzzleHttp\Psr7\Response;
|
2023-11-27 10:04:42 +01:00
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
|
|
use PHPUnit\Framework\Attributes\TestDox;
|
2023-01-05 10:01:13 +01:00
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
#[TestDox('DestinationData import')]
|
|
|
|
class ImportsWithConfiguredRepeatUntilTest extends AbstractTestCase
|
2023-01-05 10:01:13 +01:00
|
|
|
{
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
parent::setUp();
|
|
|
|
|
2023-05-15 11:58:19 +02:00
|
|
|
$this->importPHPDataSet(__DIR__ . '/Fixtures/Database/MinimalImportConfiguration.php');
|
2023-11-27 10:04:42 +01:00
|
|
|
$this->setDateAspect(new DateTimeImmutable('2022-07-13', new DateTimeZone('UTC')));
|
2023-01-05 10:01:13 +01:00
|
|
|
}
|
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
#[Test]
|
2023-01-05 10:01:13 +01:00
|
|
|
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();
|
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
$this->assertPHPDataSet(__DIR__ . '/Assertions/ImportsRecurringDatesWeeklyWithConfiguredRepeatUntil.php');
|
2023-07-04 10:11:26 +02:00
|
|
|
$this->assertEmptyLog();
|
2023-01-05 10:01:13 +01:00
|
|
|
}
|
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
#[Test]
|
2023-01-05 10:01:13 +01:00
|
|
|
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();
|
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
$this->assertPHPDataSet(__DIR__ . '/Assertions/ImportsRecurringDatesDailyWithConfiguredRepeatUntil.php');
|
2023-07-04 10:11:26 +02:00
|
|
|
$this->assertEmptyLog();
|
2023-01-05 10:01:13 +01:00
|
|
|
}
|
|
|
|
}
|