wallabag/tests/Import/ImportCompilerPassTest.php

50 lines
1.3 KiB
PHP
Raw Normal View History

<?php
2023-12-31 17:21:09 +00:00
namespace Tests\Wallabag\CoreBundle\Import;
2017-12-16 21:17:42 +00:00
use PHPUnit\Framework\TestCase;
use Symfony\Component\DependencyInjection\ContainerBuilder;
2023-12-31 17:21:09 +00:00
use Wallabag\CoreBundle\Import\ImportChain;
use Wallabag\CoreBundle\Import\ImportCompilerPass;
2017-12-16 21:17:42 +00:00
class ImportCompilerPassTest extends TestCase
{
public function testProcessNoDefinition()
{
$container = new ContainerBuilder();
$res = $this->process($container);
$this->assertNull($res);
}
public function testProcess()
{
$container = new ContainerBuilder();
$container
->register(ImportChain::class)
->setPublic(false)
;
$container
->register('foo')
->addTag('wallabag_core.import', ['alias' => 'pocket'])
;
$this->process($container);
$this->assertTrue($container->hasDefinition(ImportChain::class));
$definition = $container->getDefinition(ImportChain::class);
$this->assertTrue($definition->hasMethodCall('addImport'));
$calls = $definition->getMethodCalls();
2017-07-01 07:52:38 +00:00
$this->assertSame('pocket', $calls[0][1][1]);
}
protected function process(ContainerBuilder $container)
{
$repeatedPass = new ImportCompilerPass();
$repeatedPass->process($container);
}
}