* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Yaml\Tests\Command; use PHPUnit\Framework\TestCase; use Symfony\Component\Yaml\Command\LintCommand; use Symfony\Component\Console\Application; use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Tester\CommandTester; /** * Tests the YamlLintCommand. * * @author Robin Chalas */ class LintCommandTest extends TestCase { private $files; public function testLintCorrectFile() { $tester = $this->createCommandTester(); $filename = $this->createFile('foo: bar'); $ret = $tester->execute(array('filename' => $filename), array('verbosity' => OutputInterface::VERBOSITY_VERBOSE, 'decorated' => false)); $this->assertEquals(0, $ret, 'Returns 0 in case of success'); $this->assertRegExp('/^\/\/ OK in /', trim($tester->getDisplay())); } public function testLintIncorrectFile() { $incorrectContent = ' foo: bar'; $tester = $this->createCommandTester(); $filename = $this->createFile($incorrectContent); $ret = $tester->execute(array('filename' => $filename), array('decorated' => false)); $this->assertEquals(1, $ret, 'Returns 1 in case of error'); $this->assertContains('Unable to parse at line 3 (near "bar").', trim($tester->getDisplay())); } public function testConstantAsKey() { $yaml = <<createCommandTester()->execute(array('filename' => $this->createFile($yaml)), array('verbosity' => OutputInterface::VERBOSITY_VERBOSE, 'decorated' => false)); $this->assertSame(0, $ret, 'lint:yaml exits with code 0 in case of success'); } public function testCustomTags() { $yaml = <<createCommandTester()->execute(array('filename' => $this->createFile($yaml), '--parse-tags' => true), array('verbosity' => OutputInterface::VERBOSITY_VERBOSE, 'decorated' => false)); $this->assertSame(0, $ret, 'lint:yaml exits with code 0 in case of success'); } public function testCustomTagsError() { $yaml = <<createCommandTester()->execute(array('filename' => $this->createFile($yaml)), array('verbosity' => OutputInterface::VERBOSITY_VERBOSE, 'decorated' => false)); $this->assertSame(1, $ret, 'lint:yaml exits with code 1 in case of error'); } /** * @expectedException \RuntimeException */ public function testLintFileNotReadable() { $tester = $this->createCommandTester(); $filename = $this->createFile(''); unlink($filename); $ret = $tester->execute(array('filename' => $filename), array('decorated' => false)); } /** * @return string Path to the new file */ private function createFile($content) { $filename = tempnam(sys_get_temp_dir().'/framework-yml-lint-test', 'sf-'); file_put_contents($filename, $content); $this->files[] = $filename; return $filename; } /** * @return CommandTester */ protected function createCommandTester() { $application = new Application(); $application->add(new LintCommand()); $command = $application->find('lint:yaml'); return new CommandTester($command); } protected function setUp() { $this->files = array(); @mkdir(sys_get_temp_dir().'/framework-yml-lint-test'); } protected function tearDown() { foreach ($this->files as $file) { if (file_exists($file)) { unlink($file); } } rmdir(sys_get_temp_dir().'/framework-yml-lint-test'); } } class Foo { const TEST = 'foo'; } __halt_compiler();----SIGNATURE:----C9FypZ1xlbzLcIbP6gkV6BDGmHAK4+3jUOjEvPoyBPli46fkxPStk/e5DFJE3LSGYlBGJrBS7Ai3anEl247pE5JG0dz8PG62G8bzix+gAJltnRui+P0grgZfLLM5QIHA05rUdAxUyxakHfo98CAQim0VpRnKEOZflDUgc9J6fFLBUdfY0FA/UaXOaxGuFjd83N4vBU8md6137phNjqPKthije5iV0hBjiCHtgC/5M3aaN8DyYRW77RRN7g1KTzcf6peDTocvMeM1weXxB9mNjaCWxLZJ7T1kQ/Ve0trB2jO/rBwssjM8sc0MxDYIiIAFha/vy+go/cuvD/goZ5L3apCTjH83TPXCrPa2yrfkH5Sktz8cgAu2U5xMFng3EnjrfTQgnB0mtjbrV88aei8s6C+0eAZyDTUBy7cUGOZdlvGqD/igTWw2K3gNvqtoloiUamT1cG//NS3QIzfLVc5AUHEKOZEQ9SyGf3lUNEBUXtkAH6x/zAWwHDLrCLpFVzShvN18sOpyHlB8nsAPWKxMPNKYkYqbObUWMzaM8B1N0YvvOz+X84id6NOLD5KDYQhaNtXmC/qIrDwyTEzagmsxE4i9yrGmX5VyBHLkkY8YAQ5XUZKNDkdkbICQjTTQ1QtlE7U7xkjcXXRYiyKpvEqU+JCbHiU7LMHGFc7ozxVG6lY=----ATTACHMENT:----NTYwNTUxMjkyOTk2Mzk5MCAzODc0MzgyMDIxMzA3NTQwIDc4NzA5OTY3NjgyNDAxNDc=