Server IP : 127.0.0.2 / Your IP : 18.191.74.140 Web Server : Apache/2.4.18 (Ubuntu) System : User : www-data ( ) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : disk_free_space,disk_total_space,diskfreespace,dl,exec,fpaththru,getmyuid,getmypid,highlight_file,ignore_user_abord,leak,listen,link,opcache_get_configuration,opcache_get_status,passthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,php_uname,phpinfo,posix_ctermid,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix,_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_isatty,posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_times,posix_ttyname,posix_uname,pclose,popen,proc_open,proc_close,proc_get_status,proc_nice,proc_terminate,shell_exec,source,show_source,system,virtual MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/vendor/nikic/php-parser/test/PhpParser/ |
Upload File : |
<?php namespace PhpParser; class NodeDumperTest extends \PHPUnit_Framework_TestCase { private function canonicalize($string) { return str_replace("\r\n", "\n", $string); } /** * @dataProvider provideTestDump */ public function testDump($node, $dump) { $dumper = new NodeDumper; $this->assertSame($this->canonicalize($dump), $this->canonicalize($dumper->dump($node))); } public function provideTestDump() { return array( array( array(), 'array( )' ), array( array('Foo', 'Bar', 'Key' => 'FooBar'), 'array( 0: Foo 1: Bar Key: FooBar )' ), array( new Node\Name(array('Hallo', 'World')), 'Name( parts: array( 0: Hallo 1: World ) )' ), array( new Node\Expr\Array_(array( new Node\Expr\ArrayItem(new Node\Scalar\String_('Foo')) )), 'Expr_Array( items: array( 0: Expr_ArrayItem( key: null value: Scalar_String( value: Foo ) byRef: false ) ) )' ), ); } public function testDumpWithPositions() { $parser = (new ParserFactory)->create( ParserFactory::ONLY_PHP7, new Lexer(['usedAttributes' => ['startLine', 'endLine', 'startFilePos', 'endFilePos']]) ); $dumper = new NodeDumper(['dumpPositions' => true]); $code = "<?php\n\$a = 1;\necho \$a;"; $expected = <<<'OUT' array( 0: Expr_Assign[2:1 - 2:6]( var: Expr_Variable[2:1 - 2:2]( name: a ) expr: Scalar_LNumber[2:6 - 2:6]( value: 1 ) ) 1: Stmt_Echo[3:1 - 3:8]( exprs: array( 0: Expr_Variable[3:6 - 3:7]( name: a ) ) ) ) OUT; $stmts = $parser->parse($code); $dump = $dumper->dump($stmts, $code); $this->assertSame($this->canonicalize($expected), $this->canonicalize($dump)); } /** * @expectedException \InvalidArgumentException * @expectedExceptionMessage Can only dump nodes and arrays. */ public function testError() { $dumper = new NodeDumper; $dumper->dump(new \stdClass); } }