mirror of
https://github.com/werkraum-media/thuecat.git
synced 2024-11-14 01:06:12 +01:00
112 lines
3.7 KiB
PHP
112 lines
3.7 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/*
|
|
* Copyright (C) 2023 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\Functional;
|
|
|
|
use Codappix\Typo3PhpDatasets\TestingFramework;
|
|
use TYPO3\CMS\Core\Localization\LanguageServiceFactory;
|
|
|
|
abstract class AbstractImportTestCase extends \TYPO3\TestingFramework\Core\Functional\FunctionalTestCase
|
|
{
|
|
use TestingFramework;
|
|
|
|
/**
|
|
* Whether to expect errors to be logged.
|
|
* Will check for no errors if set to false.
|
|
*
|
|
* @var bool
|
|
*/
|
|
protected $expectErrors = false;
|
|
|
|
protected function setUp(): void
|
|
{
|
|
$this->coreExtensionsToLoad = array_merge($this->coreExtensionsToLoad, [
|
|
'core',
|
|
'backend',
|
|
'extbase',
|
|
'frontend',
|
|
]);
|
|
$this->testExtensionsToLoad = array_merge($this->testExtensionsToLoad, [
|
|
'werkraummedia/thuecat/',
|
|
]);
|
|
$this->pathsToLinkInTestInstance = array_merge($this->pathsToLinkInTestInstance, [
|
|
'typo3conf/ext/thuecat/Tests/Functional/Fixtures/Import/Sites/' => 'typo3conf/sites',
|
|
]);
|
|
$this->configurationToUseInTestInstance = array_merge($this->configurationToUseInTestInstance, [
|
|
'LOG' => [
|
|
'WerkraumMedia' => [
|
|
'writerConfiguration' => [
|
|
\TYPO3\CMS\Core\Log\LogLevel::ERROR => [
|
|
\TYPO3\CMS\Core\Log\Writer\FileWriter::class => [
|
|
'logFileInfix' => 'error',
|
|
],
|
|
],
|
|
],
|
|
],
|
|
],
|
|
'EXTENSIONS' => [
|
|
'thuecat' => [
|
|
'apiKey' => null,
|
|
],
|
|
],
|
|
]);
|
|
|
|
parent::setUp();
|
|
|
|
GuzzleClientFaker::registerClient();
|
|
$this->importPHPDataSet(__DIR__ . '/Fixtures/Import/BackendUser.php');
|
|
$this->setUpBackendUser(1);
|
|
$GLOBALS['LANG'] = $this->getContainer()->get(LanguageServiceFactory::class)->create('en_US');
|
|
foreach ($this->getLogFiles() as $logFile) {
|
|
file_put_contents($logFile, '');
|
|
}
|
|
}
|
|
|
|
protected function assertPostConditions(): void
|
|
{
|
|
if ($this->expectErrors === true) {
|
|
return;
|
|
}
|
|
foreach ($this->getLogFiles() as $file) {
|
|
self::assertSame('', file_get_contents($file), 'The TYPO3 log file "' . $file . '" contained content while expecting to be empty.');
|
|
}
|
|
}
|
|
|
|
protected function tearDown(): void
|
|
{
|
|
$this->expectErrors = false;
|
|
unset($GLOBALS['LANG']);
|
|
GuzzleClientFaker::tearDown();
|
|
parent::tearDown();
|
|
}
|
|
/**
|
|
* @return string[]
|
|
*/
|
|
private function getLogFiles(): array
|
|
{
|
|
return [
|
|
self::getInstancePath() . '/typo3temp/var/log/typo3_0493d91d8e.log',
|
|
self::getInstancePath() . '/typo3temp/var/log/typo3_error_0493d91d8e.log',
|
|
];
|
|
}
|
|
}
|