Server IP : 127.0.0.2 / Your IP : 3.143.116.179 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 ErrorTest extends \PHPUnit_Framework_TestCase { public function testConstruct() { $attributes = array( 'startLine' => 10, 'endLine' => 11, ); $error = new Error('Some error', $attributes); $this->assertSame('Some error', $error->getRawMessage()); $this->assertSame($attributes, $error->getAttributes()); $this->assertSame(10, $error->getStartLine()); $this->assertSame(11, $error->getEndLine()); $this->assertSame('Some error on line 10', $error->getMessage()); return $error; } /** * @depends testConstruct */ public function testSetMessageAndLine(Error $error) { $error->setRawMessage('Some other error'); $this->assertSame('Some other error', $error->getRawMessage()); $error->setStartLine(15); $this->assertSame(15, $error->getStartLine()); $this->assertSame('Some other error on line 15', $error->getMessage()); } public function testUnknownLine() { $error = new Error('Some error'); $this->assertSame(-1, $error->getStartLine()); $this->assertSame(-1, $error->getEndLine()); $this->assertSame('Some error on unknown line', $error->getMessage()); } /** @dataProvider provideTestColumnInfo */ public function testColumnInfo($code, $startPos, $endPos, $startColumn, $endColumn) { $error = new Error('Some error', array( 'startFilePos' => $startPos, 'endFilePos' => $endPos, )); $this->assertSame(true, $error->hasColumnInfo()); $this->assertSame($startColumn, $error->getStartColumn($code)); $this->assertSame($endColumn, $error->getEndColumn($code)); } public function provideTestColumnInfo() { return array( // Error at "bar" array("<?php foo bar baz", 10, 12, 11, 13), array("<?php\nfoo bar baz", 10, 12, 5, 7), array("<?php foo\nbar baz", 10, 12, 1, 3), array("<?php foo bar\nbaz", 10, 12, 11, 13), array("<?php\r\nfoo bar baz", 11, 13, 5, 7), // Error at "baz" array("<?php foo bar baz", 14, 16, 15, 17), array("<?php foo bar\nbaz", 14, 16, 1, 3), // Error at string literal array("<?php foo 'bar\nbaz' xyz", 10, 18, 11, 4), array("<?php\nfoo 'bar\nbaz' xyz", 10, 18, 5, 4), array("<?php foo\n'\nbarbaz\n'\nxyz", 10, 19, 1, 1), // Error over full string array("<?php", 0, 4, 1, 5), array("<?\nphp", 0, 5, 1, 3), ); } public function testNoColumnInfo() { $error = new Error('Some error', 3); $this->assertSame(false, $error->hasColumnInfo()); try { $error->getStartColumn(''); $this->fail('Expected RuntimeException'); } catch (\RuntimeException $e) { $this->assertSame('Error does not have column information', $e->getMessage()); } try { $error->getEndColumn(''); $this->fail('Expected RuntimeException'); } catch (\RuntimeException $e) { $this->assertSame('Error does not have column information', $e->getMessage()); } } /** * @expectedException \RuntimeException * @expectedExceptionMessage Invalid position information */ public function testInvalidPosInfo() { $error = new Error('Some error', array( 'startFilePos' => 10, 'endFilePos' => 11, )); $error->getStartColumn('code'); } }