2021-12-15 12:28:06 +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;
|
2021-12-15 12:28:06 +01:00
|
|
|
|
|
|
|
use GuzzleHttp\Psr7\Response;
|
2023-11-27 10:04:42 +01:00
|
|
|
use PHPUnit\Framework\Attributes\Test;
|
|
|
|
use PHPUnit\Framework\Attributes\TestDox;
|
2021-12-15 12:28:06 +01:00
|
|
|
use TYPO3\CMS\Core\Utility\GeneralUtility;
|
|
|
|
|
2023-11-27 10:04:42 +01:00
|
|
|
#[TestDox('DestinationData import')]
|
|
|
|
class ImportsWithoutRegionIfNotProvidedTest extends AbstractTestCase
|
2021-12-15 12:28:06 +01:00
|
|
|
{
|
2023-11-27 10:04:42 +01:00
|
|
|
#[Test]
|
2021-12-15 12:28:06 +01:00
|
|
|
public function importsWithoutRegionIfNotProvided(): void
|
|
|
|
{
|
2023-05-15 11:58:19 +02:00
|
|
|
$this->importPHPDataSet(__DIR__ . '/Fixtures/Database/SingleImportConfigurationWithoutRegion.php');
|
|
|
|
$this->importPHPDataSet(__DIR__ . '/Fixtures/Database/SingleCategory.php');
|
2021-12-15 12:28:06 +01:00
|
|
|
|
2021-12-16 10:12:26 +01:00
|
|
|
$requests = &$this->setUpResponses([
|
2022-01-26 14:16:12 +01:00
|
|
|
new Response(200, [], file_get_contents(__DIR__ . '/Fixtures/Response.json') ?: ''),
|
2021-12-15 12:28:06 +01:00
|
|
|
new Response(200, [], file_get_contents(__DIR__ . '/Fixtures/ExampleImage.jpg') ?: ''),
|
|
|
|
new Response(200, [], file_get_contents(__DIR__ . '/Fixtures/ExampleImage.jpg') ?: ''),
|
|
|
|
new Response(200, [], file_get_contents(__DIR__ . '/Fixtures/ExampleImage.jpg') ?: ''),
|
2021-12-16 10:12:26 +01:00
|
|
|
]);
|
2022-11-22 13:49:57 +01:00
|
|
|
$tester = $this->executeCommand();
|
2021-12-15 12:28:06 +01:00
|
|
|
|
|
|
|
self::assertSame(0, $tester->getStatusCode());
|
|
|
|
|
|
|
|
self::assertCount(
|
|
|
|
0,
|
|
|
|
$this->getAllRecords('tx_events_domain_model_partner'),
|
|
|
|
'Added unexpected partners.'
|
|
|
|
);
|
|
|
|
self::assertCount(
|
|
|
|
0,
|
|
|
|
$this->getAllRecords('tx_events_domain_model_region'),
|
|
|
|
'Added unexpected region.'
|
|
|
|
);
|
2023-11-27 10:04:42 +01:00
|
|
|
$this->assertPHPDataSet(__DIR__ . '/Assertions/ImportsWithoutRegionIfNotProvided.php');
|
2021-12-15 12:28:06 +01:00
|
|
|
|
2023-07-04 10:11:26 +02:00
|
|
|
$importedFiles = GeneralUtility::getFilesInDir($this->fileImportPath);
|
2021-12-15 12:28:06 +01:00
|
|
|
self::assertIsArray($importedFiles, 'Failed to retrieve imported files from filesystem.');
|
|
|
|
self::assertSame(
|
|
|
|
[
|
|
|
|
'lutherkirche-jpg.jpg',
|
|
|
|
'theater-rudolstadt_johannes-gei-er_photo-by-lisa-stern_web_-jpg.jpg',
|
|
|
|
'tueftlerzeit-sfz-rudolstadt-jpg.jpg',
|
|
|
|
],
|
|
|
|
array_values($importedFiles),
|
|
|
|
'Got unexpected number of files'
|
|
|
|
);
|
2021-12-20 10:15:26 +01:00
|
|
|
|
2023-07-04 10:11:26 +02:00
|
|
|
$this->assertEmptyLog();
|
2021-12-15 12:28:06 +01:00
|
|
|
}
|
|
|
|
}
|