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