Файл: symfony-2.7/src/Symfony/Bridge/Twig/Tests/Command/LintCommandTest.php
Строк: 143
<?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 SymfonyBridgeTwigTestsCommand;
use SymfonyBridgeTwigCommandLintCommand;
use SymfonyComponentConsoleApplication;
use SymfonyComponentConsoleOutputOutputInterface;
use SymfonyComponentConsoleTesterCommandTester;
/**
* @covers SymfonyBridgeTwigCommandLintCommand
*/
class LintCommandTest extends PHPUnit_Framework_TestCase
{
private $files;
public function testLintCorrectFile()
{
$tester = $this->createCommandTester();
$filename = $this->createFile('{{ foo }}');
$ret = $tester->execute(array('filename' => $filename), array('verbosity' => OutputInterface::VERBOSITY_VERBOSE));
$this->assertEquals(0, $ret, 'Returns 0 in case of success');
$this->assertRegExp('/^OK in /', $tester->getDisplay());
}
public function testLintIncorrectFile()
{
$tester = $this->createCommandTester();
$filename = $this->createFile('{{ foo');
$ret = $tester->execute(array('filename' => $filename));
$this->assertEquals(1, $ret, 'Returns 1 in case of error');
$this->assertRegExp('/^KO in /', $tester->getDisplay());
}
/**
* @expectedException RuntimeException
*/
public function testLintFileNotReadable()
{
$tester = $this->createCommandTester();
$filename = $this->createFile('');
unlink($filename);
$ret = $tester->execute(array('filename' => $filename));
}
public function testLintFileCompileTimeException()
{
$tester = $this->createCommandTester();
$filename = $this->createFile("{{ 2|number_format(2, decimal_point='.', ',') }}");
$ret = $tester->execute(array('filename' => $filename));
$this->assertEquals(1, $ret, 'Returns 1 in case of error');
$this->assertRegExp('/^KO in /', $tester->getDisplay());
}
/**
* @return CommandTester
*/
private function createCommandTester()
{
$twig = new Twig_Environment(new Twig_Loader_Filesystem());
$command = new LintCommand();
$command->setTwigEnvironment($twig);
$application = new Application();
$application->add($command);
$command = $application->find('twig:lint');
return new CommandTester($command);
}
/**
* @return string Path to the new file
*/
private function createFile($content)
{
$filename = tempnam(sys_get_temp_dir(), 'sf-');
file_put_contents($filename, $content);
$this->files[] = $filename;
return $filename;
}
public function setUp()
{
$this->files = array();
}
public function tearDown()
{
foreach ($this->files as $file) {
if (file_exists($file)) {
unlink($file);
}
}
}
}