2021-02-01 14:14:05 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace WerkraumMedia\ThueCat\Tests\Unit\Domain\Import\UrlProvider;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (C) 2021 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\UrlProvider\Registry;
|
2022-09-13 09:05:47 +02:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Import\UrlProvider\StaticUrlProvider;
|
2021-02-01 14:14:05 +01:00
|
|
|
use WerkraumMedia\ThueCat\Domain\Model\Backend\ImportConfiguration;
|
|
|
|
|
|
|
|
/**
|
2021-06-01 11:11:50 +02:00
|
|
|
* @covers \WerkraumMedia\ThueCat\Domain\Import\UrlProvider\Registry
|
2021-02-01 14:14:05 +01:00
|
|
|
*/
|
|
|
|
class RegistryTest extends TestCase
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function canBeCreated(): void
|
|
|
|
{
|
|
|
|
$subject = new Registry();
|
|
|
|
|
|
|
|
self::assertInstanceOf(Registry::class, $subject);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function allowsRegistrationOfUrlProvider(): void
|
|
|
|
{
|
|
|
|
$subject = new Registry();
|
2022-09-13 09:05:47 +02:00
|
|
|
$provider = new StaticUrlProvider();
|
2021-02-01 14:14:05 +01:00
|
|
|
|
2022-09-13 09:05:47 +02:00
|
|
|
$subject->registerProvider($provider);
|
2021-02-01 14:14:05 +01:00
|
|
|
self::assertTrue(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsNullIfNoProviderExistsForConfiguration(): void
|
|
|
|
{
|
2022-09-13 09:05:47 +02:00
|
|
|
$configuration = new ImportConfiguration();
|
2021-02-01 14:14:05 +01:00
|
|
|
|
|
|
|
$subject = new Registry();
|
|
|
|
|
2022-09-13 09:05:47 +02:00
|
|
|
$result = $subject->getProviderForConfiguration($configuration);
|
2021-04-13 15:24:33 +02:00
|
|
|
self::assertNull($result);
|
2021-02-01 14:14:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @test
|
|
|
|
*/
|
|
|
|
public function returnsProviderForConfiguration(): void
|
|
|
|
{
|
2022-09-13 09:05:47 +02:00
|
|
|
$configuration = new ImportConfiguration();
|
|
|
|
$configuration->_setProperty('type', 'static');
|
|
|
|
$configuration->_setProperty('urls', ['https://example.com/path/example.json']);
|
2021-02-01 14:14:05 +01:00
|
|
|
|
|
|
|
$subject = new Registry();
|
|
|
|
|
2022-09-13 09:05:47 +02:00
|
|
|
$provider = new StaticUrlProvider();
|
|
|
|
$subject->registerProvider($provider);
|
2021-02-01 14:14:05 +01:00
|
|
|
|
2022-09-13 09:05:47 +02:00
|
|
|
$result = $subject->getProviderForConfiguration($configuration);
|
|
|
|
self::assertInstanceOf(StaticUrlProvider::class, $result);
|
|
|
|
self::assertSame(['https://example.com/path/example.json'], $result->getUrls());
|
2021-02-01 14:14:05 +01:00
|
|
|
}
|
|
|
|
}
|