Mercurial > hg > isophonics-drupal-site
diff vendor/psy/psysh/test/ParserTestCase.php @ 13:5fb285c0d0e3
Update Drupal core to 8.4.7 via Composer. Security update; I *think* we've
been lucky to get away with this so far, as we don't support self-registration
which seems to be used by the so-called "drupalgeddon 2" attack that 8.4.5
was vulnerable to.
author | Chris Cannam |
---|---|
date | Mon, 23 Apr 2018 09:33:26 +0100 |
parents | |
children | c2387f117808 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/vendor/psy/psysh/test/ParserTestCase.php Mon Apr 23 09:33:26 2018 +0100 @@ -0,0 +1,89 @@ +<?php + +/* + * This file is part of Psy Shell. + * + * (c) 2012-2018 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 \PHPUnit\Framework\TestCase +{ + protected $traverser; + private $parser; + private $printer; + + 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); + $this->assertSame($to, $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); + } +}