mirror of
https://github.com/Combodo/iTop.git
synced 2026-02-26 21:54:13 +01:00
Package operations: 2 installs, 23 updates, 0 removals - Updating psr/log (1.1.0 => 1.1.2) - Updating symfony/debug (v3.4.30 => v3.4.35) - Updating symfony/console (v3.4.30 => v3.4.35) - Updating symfony/dotenv (v3.4.30 => v3.4.35) - Updating symfony/routing (v3.4.30 => v3.4.35) - Updating symfony/finder (v3.4.30 => v3.4.35) - Updating symfony/filesystem (v3.4.30 => v3.4.35) - Installing symfony/polyfill-util (v1.12.0) - Installing symfony/polyfill-php56 (v1.12.0) - Updating symfony/http-foundation (v3.4.30 => v3.4.35) - Updating symfony/event-dispatcher (v3.4.30 => v3.4.35) - Updating symfony/http-kernel (v3.4.30 => v3.4.35) - Updating symfony/config (v3.4.30 => v3.4.35) - Updating symfony/dependency-injection (v3.4.30 => v3.4.35) - Updating symfony/class-loader (v3.4.30 => v3.4.35) - Updating symfony/cache (v3.4.30 => v3.4.35) - Updating symfony/framework-bundle (v3.4.30 => v3.4.35) - Updating twig/twig (v1.42.2 => v1.42.4) - Updating symfony/twig-bridge (v3.4.30 => v3.4.35) - Updating symfony/twig-bundle (v3.4.30 => v3.4.35) - Updating symfony/yaml (v3.4.30 => v3.4.35) - Updating symfony/stopwatch (v3.4.30 => v3.4.35) - Updating symfony/var-dumper (v3.4.30 => v3.4.35) - Updating symfony/web-profiler-bundle (v3.4.30 => v3.4.35) - Updating symfony/css-selector (v3.4.30 => v3.4.35)
183 lines
5.1 KiB
PHP
183 lines
5.1 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the Symfony package.
|
|
*
|
|
* (c) Fabien Potencier <fabien@symfony.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Symfony\Bundle\FrameworkBundle\Tests\Command;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
use Symfony\Bundle\FrameworkBundle\Command\YamlLintCommand;
|
|
use Symfony\Bundle\FrameworkBundle\Console\Application;
|
|
use Symfony\Component\Console\Application as BaseApplication;
|
|
use Symfony\Component\Console\Helper\HelperSet;
|
|
use Symfony\Component\Console\Input\InputDefinition;
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
use Symfony\Component\Console\Tester\CommandTester;
|
|
use Symfony\Component\HttpKernel\KernelInterface;
|
|
|
|
/**
|
|
* Tests the YamlLintCommand.
|
|
*
|
|
* @author Robin Chalas <robin.chalas@gmail.com>
|
|
*/
|
|
class YamlLintCommandTest extends TestCase
|
|
{
|
|
private $files;
|
|
|
|
public function testLintCorrectFile()
|
|
{
|
|
$tester = $this->createCommandTester();
|
|
$filename = $this->createFile('foo: bar');
|
|
|
|
$tester->execute(
|
|
['filename' => $filename],
|
|
['verbosity' => OutputInterface::VERBOSITY_VERBOSE, 'decorated' => false]
|
|
);
|
|
|
|
$this->assertEquals(0, $tester->getStatusCode(), 'Returns 0 in case of success');
|
|
$this->assertStringContainsString('OK', trim($tester->getDisplay()));
|
|
}
|
|
|
|
public function testLintIncorrectFile()
|
|
{
|
|
$incorrectContent = '
|
|
foo:
|
|
bar';
|
|
$tester = $this->createCommandTester();
|
|
$filename = $this->createFile($incorrectContent);
|
|
|
|
$tester->execute(['filename' => $filename], ['decorated' => false]);
|
|
|
|
$this->assertEquals(1, $tester->getStatusCode(), 'Returns 1 in case of error');
|
|
$this->assertStringContainsString('Unable to parse at line 3 (near "bar").', trim($tester->getDisplay()));
|
|
}
|
|
|
|
public function testLintFileNotReadable()
|
|
{
|
|
$this->expectException('RuntimeException');
|
|
$tester = $this->createCommandTester();
|
|
$filename = $this->createFile('');
|
|
unlink($filename);
|
|
|
|
$tester->execute(['filename' => $filename], ['decorated' => false]);
|
|
}
|
|
|
|
public function testGetHelp()
|
|
{
|
|
$command = new YamlLintCommand();
|
|
$expected = <<<EOF
|
|
Or find all files in a bundle:
|
|
|
|
<info>php %command.full_name% @AcmeDemoBundle</info>
|
|
EOF;
|
|
|
|
$this->assertStringContainsString($expected, $command->getHelp());
|
|
}
|
|
|
|
public function testLintFilesFromBundleDirectory()
|
|
{
|
|
$tester = $this->createCommandTester($this->getKernelAwareApplicationMock());
|
|
$tester->execute(
|
|
['filename' => '@AppBundle/Resources'],
|
|
['verbosity' => OutputInterface::VERBOSITY_VERBOSE, 'decorated' => false]
|
|
);
|
|
|
|
$this->assertEquals(0, $tester->getStatusCode(), 'Returns 0 in case of success');
|
|
$this->assertStringContainsString('[OK] All 0 YAML files contain valid syntax', trim($tester->getDisplay()));
|
|
}
|
|
|
|
/**
|
|
* @return string Path to the new file
|
|
*/
|
|
private function createFile($content)
|
|
{
|
|
$filename = tempnam(sys_get_temp_dir().'/yml-lint-test', 'sf-');
|
|
file_put_contents($filename, $content);
|
|
|
|
$this->files[] = $filename;
|
|
|
|
return $filename;
|
|
}
|
|
|
|
/**
|
|
* @return CommandTester
|
|
*/
|
|
private function createCommandTester($application = null)
|
|
{
|
|
if (!$application) {
|
|
$application = new BaseApplication();
|
|
$application->add(new YamlLintCommand());
|
|
}
|
|
|
|
$command = $application->find('lint:yaml');
|
|
|
|
if ($application) {
|
|
$command->setApplication($application);
|
|
}
|
|
|
|
return new CommandTester($command);
|
|
}
|
|
|
|
private function getKernelAwareApplicationMock()
|
|
{
|
|
$kernel = $this->getMockBuilder(KernelInterface::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$kernel
|
|
->expects($this->once())
|
|
->method('locateResource')
|
|
->with('@AppBundle/Resources')
|
|
->willReturn(sys_get_temp_dir().'/yml-lint-test');
|
|
|
|
$application = $this->getMockBuilder(Application::class)
|
|
->disableOriginalConstructor()
|
|
->getMock();
|
|
|
|
$application
|
|
->expects($this->once())
|
|
->method('getKernel')
|
|
->willReturn($kernel);
|
|
|
|
$application
|
|
->expects($this->once())
|
|
->method('getHelperSet')
|
|
->willReturn(new HelperSet());
|
|
|
|
$application
|
|
->expects($this->any())
|
|
->method('getDefinition')
|
|
->willReturn(new InputDefinition());
|
|
|
|
$application
|
|
->expects($this->once())
|
|
->method('find')
|
|
->with('lint:yaml')
|
|
->willReturn(new YamlLintCommand());
|
|
|
|
return $application;
|
|
}
|
|
|
|
protected function setUp()
|
|
{
|
|
@mkdir(sys_get_temp_dir().'/yml-lint-test');
|
|
$this->files = [];
|
|
}
|
|
|
|
protected function tearDown()
|
|
{
|
|
foreach ($this->files as $file) {
|
|
if (file_exists($file)) {
|
|
unlink($file);
|
|
}
|
|
}
|
|
rmdir(sys_get_temp_dir().'/yml-lint-test');
|
|
}
|
|
}
|