| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- /*
- * This file is part of Psy Shell.
- *
- * (c) 2012-2023 Justin Hileman
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Psy\Test;
- use PhpParser\PrettyPrinter\Standard as Printer;
- use Psy\Exception\ParseErrorException;
- use Psy\ParserFactory;
- class ParserTestCase extends TestCase
- {
- protected $traverser;
- private $parser;
- private $printer;
- /**
- * @after
- */
- public function clearProperties()
- {
- $this->traverser = null;
- $this->parser = null;
- $this->printer = null;
- }
- protected function parse($code, $prefix = '<?php ')
- {
- $code = $prefix.$code;
- try {
- return $this->getParser()->parse($code);
- } catch (\PhpParser\Error $e) {
- if (!$this->parseErrorIsEOF($e)) {
- throw ParseErrorException::fromParseError($e);
- }
- try {
- // Unexpected EOF, try again with an implicit semicolon
- return $this->getParser()->parse($code.';');
- } catch (\PhpParser\Error $e) {
- return false;
- }
- }
- }
- protected function traverse(array $stmts)
- {
- if (!isset($this->traverser)) {
- throw new \RuntimeException('Test cases must provide a traverser');
- }
- return $this->traverser->traverse($stmts);
- }
- protected function prettyPrint(array $stmts)
- {
- return $this->getPrinter()->prettyPrint($stmts);
- }
- protected function assertProcessesAs($from, $to)
- {
- $stmts = $this->parse($from);
- $stmts = $this->traverse($stmts);
- $toStmts = $this->parse($to);
- $this->assertSame($this->prettyPrint($toStmts), $this->prettyPrint($stmts));
- }
- private function getParser()
- {
- if (!isset($this->parser)) {
- $parserFactory = new ParserFactory();
- $this->parser = $parserFactory->createParser();
- }
- return $this->parser;
- }
- private function getPrinter()
- {
- if (!isset($this->printer)) {
- $this->printer = new Printer();
- }
- return $this->printer;
- }
- private function parseErrorIsEOF(\PhpParser\Error $e)
- {
- $msg = $e->getRawMessage();
- return ($msg === 'Unexpected token EOF') || (\strpos($msg, 'Syntax error, unexpected EOF') !== false);
- }
- }
|