87 lines
3.7 KiB
PHP
87 lines
3.7 KiB
PHP
<?php
|
|
|
|
/**
|
|
* 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; under version 2
|
|
* of the License (non-upgradable).
|
|
*
|
|
* 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.
|
|
*
|
|
* Copyright (c) 2020 (original work) Open Assessment Technologies SA;
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace oat\taoMediaManager\test\unit\model\relation\service;
|
|
|
|
use oat\generis\test\TestCase;
|
|
use oat\tao\model\media\MediaAsset;
|
|
use oat\tao\model\media\TaoMediaResolver;
|
|
use oat\taoMediaManager\model\MediaSource;
|
|
use oat\taoMediaManager\model\relation\service\IdDiscoverService;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
|
|
class IdDiscoverServiceTest extends TestCase
|
|
{
|
|
private const MEDIA_LINK_1 = 'taomedia://mediamanager/https_2_test-tao-deploy_0_docker_0_localhost_1_ontologies_1_tao_0_rdf_3_i5ec293a38ebe623833180e3b0a547a6d4';
|
|
private const MEDIA_LINK_2 = 'taomedia://mediamanager/https_2_test-tao-deploy_0_docker_0_localhost_1_ontologies_1_tao_0_rdf_3_i5ec293a38ebe623833180e3b0a547a6d5';
|
|
private const MEDIA_LINK_3 = 'taomedia://mediamanager/https_2_test-tao-deploy_0_docker_0_localhost_1_ontologies_1_tao_0_rdf_3_i5ec293a38ebe623833180e3b0a547a6d6';
|
|
|
|
private const MEDIA_LINK_1_URI = 'https_2_test-tao-deploy_0_docker_0_localhost_1_ontologies_1_tao_0_rdf_3_i5ec293a38ebe623833180e3b0a547a6d4';
|
|
private const MEDIA_LINK_2_URI = 'https_2_test-tao-deploy_0_docker_0_localhost_1_ontologies_1_tao_0_rdf_3_i5ec293a38ebe623833180e3b0a547a6d5';
|
|
private const MEDIA_LINK_3_URI = 'https_2_test-tao-deploy_0_docker_0_localhost_1_ontologies_1_tao_0_rdf_3_i5ec293a38ebe623833180e3b0a547a6d6';
|
|
|
|
private const MEDIA_LINK_1_PARSED = 'https://test-tao-deploy.docker.localhost/ontologies/tao.rdf#i5ec293a38ebe623833180e3b0a547a6d4';
|
|
private const MEDIA_LINK_2_PARSED = 'https://test-tao-deploy.docker.localhost/ontologies/tao.rdf#i5ec293a38ebe623833180e3b0a547a6d5';
|
|
private const MEDIA_LINK_3_PARSED = 'https://test-tao-deploy.docker.localhost/ontologies/tao.rdf#i5ec293a38ebe623833180e3b0a547a6d6';
|
|
|
|
/** @var IdDiscoverService */
|
|
private $subject;
|
|
|
|
/** @var TaoMediaResolver|MockObject */
|
|
private $mediaResolver;
|
|
|
|
public function setUp(): void
|
|
{
|
|
$this->mediaResolver = $this->createMock(TaoMediaResolver::class);
|
|
$this->subject = new IdDiscoverService();
|
|
$this->subject->withMediaResolver($this->mediaResolver);
|
|
}
|
|
|
|
public function testDiscover(): void
|
|
{
|
|
$this->mediaResolver
|
|
->method('resolve')
|
|
->willReturnOnConsecutiveCalls(
|
|
... [
|
|
new MediaAsset(new MediaSource(), self::MEDIA_LINK_1_URI),
|
|
new MediaAsset(new MediaSource(), self::MEDIA_LINK_2_URI),
|
|
new MediaAsset(new MediaSource(), self::MEDIA_LINK_3_URI),
|
|
]
|
|
);
|
|
|
|
$this->assertSame(
|
|
[
|
|
self::MEDIA_LINK_1_PARSED,
|
|
self::MEDIA_LINK_2_PARSED,
|
|
self::MEDIA_LINK_3_PARSED
|
|
],
|
|
$this->subject->discover(
|
|
[
|
|
self::MEDIA_LINK_1,
|
|
self::MEDIA_LINK_2,
|
|
self::MEDIA_LINK_3
|
|
]
|
|
)
|
|
);
|
|
}
|
|
}
|