summaryrefslogtreecommitdiff
path: root/sapi/cli/tests
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-11-24 13:33:38 +0000
committerAntony Dovgal <tony2001@php.net>2006-11-24 13:33:38 +0000
commit158ad3ee2ff66292e2a9fd9dab587e1c1a3e761f (patch)
tree6756a371379b9b5402e7af685b3eabd15ed2e2fc /sapi/cli/tests
parent7f235792b30e2e3d73b0e751d2049c6b64b78d49 (diff)
downloadphp-git-158ad3ee2ff66292e2a9fd9dab587e1c1a3e761f.tar.gz
add tests for CLI
Diffstat (limited to 'sapi/cli/tests')
-rw-r--r--sapi/cli/tests/001.phpt19
-rw-r--r--sapi/cli/tests/002-win32.phpt22
-rw-r--r--sapi/cli/tests/002.phpt22
-rw-r--r--sapi/cli/tests/003.phpt32
-rw-r--r--sapi/cli/tests/004.phpt29
-rw-r--r--sapi/cli/tests/005.phpt94
-rw-r--r--sapi/cli/tests/006.phpt323
-rw-r--r--sapi/cli/tests/007.phpt52
-rw-r--r--sapi/cli/tests/008.phpt43
-rw-r--r--sapi/cli/tests/009.phpt23
-rw-r--r--sapi/cli/tests/010-2.phpt35
-rw-r--r--sapi/cli/tests/010.phpt47
-rw-r--r--sapi/cli/tests/011.phpt58
-rw-r--r--sapi/cli/tests/012.phpt38
-rw-r--r--sapi/cli/tests/013.phpt34
-rw-r--r--sapi/cli/tests/014.phpt44
-rw-r--r--sapi/cli/tests/skipif.inc7
17 files changed, 922 insertions, 0 deletions
diff --git a/sapi/cli/tests/001.phpt b/sapi/cli/tests/001.phpt
new file mode 100644
index 0000000000..0adb5c6788
--- /dev/null
+++ b/sapi/cli/tests/001.phpt
@@ -0,0 +1,19 @@
+--TEST--
+version string
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php -n -v`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(%d) "PHP %s (cli) (built: %s)%s
+Copyright (c) 1997-20%d The PHP Group
+Zend Engine v%s, Copyright (c) 1998-20%d Zend Technologies
+"
+Done
diff --git a/sapi/cli/tests/002-win32.phpt b/sapi/cli/tests/002-win32.phpt
new file mode 100644
index 0000000000..36d60adbf2
--- /dev/null
+++ b/sapi/cli/tests/002-win32.phpt
@@ -0,0 +1,22 @@
+--TEST--
+running code with -r
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) != 'WIN') {
+ die ("skip only for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php -r "var_dump('hello');"`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(18) "string(5) "hello"
+"
+Done
diff --git a/sapi/cli/tests/002.phpt b/sapi/cli/tests/002.phpt
new file mode 100644
index 0000000000..04c81d2fb7
--- /dev/null
+++ b/sapi/cli/tests/002.phpt
@@ -0,0 +1,22 @@
+--TEST--
+running code with -r
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php -r 'var_dump("hello");'`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(18) "string(5) "hello"
+"
+Done
diff --git a/sapi/cli/tests/003.phpt b/sapi/cli/tests/003.phpt
new file mode 100644
index 0000000000..c11bc1d221
--- /dev/null
+++ b/sapi/cli/tests/003.phpt
@@ -0,0 +1,32 @@
+--TEST--
+defining INI options with -d
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php -n -d max_execution_time=111 -r 'var_dump(ini_get("max_execution_time"));'`);
+var_dump(`$php -n -d max_execution_time=500 -r 'var_dump(ini_get("max_execution_time"));'`);
+var_dump(`$php -n -d max_execution_time=500 -d max_execution_time=555 -r 'var_dump(ini_get("max_execution_time"));'`);
+var_dump(`$php -n -d upload_tmp_dir=/test/path -d max_execution_time=555 -r 'var_dump(ini_get("max_execution_time")); var_dump(ini_get("upload_tmp_dir"));'`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(16) "string(3) "111"
+"
+string(16) "string(3) "500"
+"
+string(16) "string(3) "555"
+"
+string(40) "string(3) "555"
+string(10) "/test/path"
+"
+Done
diff --git a/sapi/cli/tests/004.phpt b/sapi/cli/tests/004.phpt
new file mode 100644
index 0000000000..1a40e2cb1c
--- /dev/null
+++ b/sapi/cli/tests/004.phpt
@@ -0,0 +1,29 @@
+--TEST--
+show information about function
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php --rf unknown`);
+var_dump(`$php --rf echo`);
+var_dump(`$php --rf phpinfo`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(45) "Exception: Function unknown() does not exist
+"
+string(42) "Exception: Function echo() does not exist
+"
+string(117) "Function [ <internal> public function phpinfo ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> $what ]
+ }
+}
+
+"
+Done
diff --git a/sapi/cli/tests/005.phpt b/sapi/cli/tests/005.phpt
new file mode 100644
index 0000000000..bfc29516f7
--- /dev/null
+++ b/sapi/cli/tests/005.phpt
@@ -0,0 +1,94 @@
+--TEST--
+show information about class
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php --rc unknown`);
+var_dump(`$php --rc stdclass`);
+var_dump(`$php --rc exception`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(40) "Exception: Class unknown does not exist
+"
+string(178) "Class [ <internal> class stdClass ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [0] {
+ }
+
+ - Methods [0] {
+ }
+}
+
+"
+string(1141) "Class [ <internal> class Exception ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [6] {
+ Property [ <default> protected $message ]
+ Property [ <default> private $string ]
+ Property [ <default> protected $code ]
+ Property [ <default> protected $file ]
+ Property [ <default> protected $line ]
+ Property [ <default> private $trace ]
+ }
+
+ - Methods [9] {
+ Method [ <internal> final private method __clone ] {
+ }
+
+ Method [ <internal, ctor> public method __construct ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <optional> $message ]
+ Parameter #1 [ <optional> $code ]
+ }
+ }
+
+ Method [ <internal> final public method getMessage ] {
+ }
+
+ Method [ <internal> final public method getCode ] {
+ }
+
+ Method [ <internal> final public method getFile ] {
+ }
+
+ Method [ <internal> final public method getLine ] {
+ }
+
+ Method [ <internal> final public method getTrace ] {
+ }
+
+ Method [ <internal> final public method getTraceAsString ] {
+ }
+
+ Method [ <internal> public method __toString ] {
+ }
+ }
+}
+
+"
+Done
diff --git a/sapi/cli/tests/006.phpt b/sapi/cli/tests/006.phpt
new file mode 100644
index 0000000000..6e830183c6
--- /dev/null
+++ b/sapi/cli/tests/006.phpt
@@ -0,0 +1,323 @@
+--TEST--
+show information about extension
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php --re unknown`);
+var_dump(`$php --re ""`);
+var_dump(`$php -n --re date`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(44) "Exception: Extension unknown does not exist
+"
+string(37) "Exception: Extension does not exist
+"
+string(%d) "Extension [ <persistent> extension #%d date version %s ] {
+
+ - Dependencies {
+ Dependency [ session (Optional) ]
+ }
+
+ - INI {
+ Entry [ date.timezone <ALL> ]
+ Current = ''
+ }
+ Entry [ date.default_latitude <ALL> ]
+ Current = '%s'
+ }
+ Entry [ date.default_longitude <ALL> ]
+ Current = '%s'
+ }
+ Entry [ date.sunset_zenith <ALL> ]
+ Current = '%s'
+ }
+ Entry [ date.sunrise_zenith <ALL> ]
+ Current = '%s'
+ }
+ }
+
+ - Constants [14] {
+ Constant [ string DATE_ATOM ] { Y-m-d\TH:i:sP }
+ Constant [ string DATE_COOKIE ] { l, d-M-y H:i:s T }
+ Constant [ string DATE_ISO8601 ] { Y-m-d\TH:i:sO }
+ Constant [ string DATE_RFC822 ] { D, d M y H:i:s O }
+ Constant [ string DATE_RFC850 ] { l, d-M-y H:i:s T }
+ Constant [ string DATE_RFC1036 ] { D, d M y H:i:s O }
+ Constant [ string DATE_RFC1123 ] { D, d M Y H:i:s O }
+ Constant [ string DATE_RFC2822 ] { D, d M Y H:i:s O }
+ Constant [ string DATE_RFC3339 ] { Y-m-d\TH:i:sP }
+ Constant [ string DATE_RSS ] { D, d M Y H:i:s O }
+ Constant [ string DATE_W3C ] { Y-m-d\TH:i:sP }
+ Constant [ integer SUNFUNCS_RET_TIMESTAMP ] { 0 }
+ Constant [ integer SUNFUNCS_RET_STRING ] { 1 }
+ Constant [ integer SUNFUNCS_RET_DOUBLE ] { 2 }
+ }
+
+ - Functions {
+ Function [ <internal> public function strtotime ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $time ]
+ Parameter #1 [ <optional> $now ]
+ }
+ }
+ Function [ <internal> public function date ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $format ]
+ Parameter #1 [ <optional> $timestamp ]
+ }
+ }
+ Function [ <internal> public function idate ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $format ]
+ Parameter #1 [ <optional> $timestamp ]
+ }
+ }
+ Function [ <internal> public function gmdate ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $format ]
+ Parameter #1 [ <optional> $timestamp ]
+ }
+ }
+ Function [ <internal> public function mktime ] {
+
+ - Parameters [6] {
+ Parameter #0 [ <optional> $hour ]
+ Parameter #1 [ <optional> $min ]
+ Parameter #2 [ <optional> $sec ]
+ Parameter #3 [ <optional> $mon ]
+ Parameter #4 [ <optional> $day ]
+ Parameter #5 [ <optional> $year ]
+ }
+ }
+ Function [ <internal> public function gmmktime ] {
+
+ - Parameters [6] {
+ Parameter #0 [ <optional> $hour ]
+ Parameter #1 [ <optional> $min ]
+ Parameter #2 [ <optional> $sec ]
+ Parameter #3 [ <optional> $mon ]
+ Parameter #4 [ <optional> $day ]
+ Parameter #5 [ <optional> $year ]
+ }
+ }
+ Function [ <internal> public function checkdate ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $month ]
+ Parameter #1 [ <required> $day ]
+ Parameter #2 [ <required> $year ]
+ }
+ }
+ Function [ <internal> public function strftime ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $format ]
+ Parameter #1 [ <optional> $timestamp ]
+ }
+ }
+ Function [ <internal> public function gmstrftime ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <required> $format ]
+ Parameter #1 [ <optional> $timestamp ]
+ }
+ }
+ Function [ <internal> public function time ] {
+
+ - Parameters [0] {
+ }
+ }
+ Function [ <internal> public function localtime ] {
+
+ - Parameters [2] {
+ Parameter #0 [ <optional> $timestamp ]
+ Parameter #1 [ <optional> $associative_array ]
+ }
+ }
+ Function [ <internal> public function getdate ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <optional> $timestamp ]
+ }
+ }
+ Function [ <internal> public function date_create ] {
+ }
+ Function [ <internal> public function date_parse ] {
+ }
+ Function [ <internal> public function date_format ] {
+ }
+ Function [ <internal> public function date_modify ] {
+ }
+ Function [ <internal> public function date_timezone_get ] {
+ }
+ Function [ <internal> public function date_timezone_set ] {
+ }
+ Function [ <internal> public function date_offset_get ] {
+ }
+ Function [ <internal> public function date_time_set ] {
+ }
+ Function [ <internal> public function date_date_set ] {
+ }
+ Function [ <internal> public function date_isodate_set ] {
+ }
+ Function [ <internal> public function timezone_open ] {
+ }
+ Function [ <internal> public function timezone_name_get ] {
+ }
+ Function [ <internal> public function timezone_name_from_abbr ] {
+ }
+ Function [ <internal> public function timezone_offset_get ] {
+ }
+ Function [ <internal> public function timezone_transitions_get ] {
+ }
+ Function [ <internal> public function timezone_identifiers_list ] {
+ }
+ Function [ <internal> public function timezone_abbreviations_list ] {
+ }
+ Function [ <internal> public function date_default_timezone_set ] {
+
+ - Parameters [1] {
+ Parameter #0 [ <required> $timezone_identifier ]
+ }
+ }
+ Function [ <internal> public function date_default_timezone_get ] {
+
+ - Parameters [0] {
+ }
+ }
+ Function [ <internal> public function date_sunrise ] {
+
+ - Parameters [6] {
+ Parameter #0 [ <required> $time ]
+ Parameter #1 [ <optional> $format ]
+ Parameter #2 [ <optional> $latitude ]
+ Parameter #3 [ <optional> $longitude ]
+ Parameter #4 [ <optional> $zenith ]
+ Parameter #5 [ <optional> $gmt_offset ]
+ }
+ }
+ Function [ <internal> public function date_sunset ] {
+
+ - Parameters [6] {
+ Parameter #0 [ <required> $time ]
+ Parameter #1 [ <optional> $format ]
+ Parameter #2 [ <optional> $latitude ]
+ Parameter #3 [ <optional> $longitude ]
+ Parameter #4 [ <optional> $zenith ]
+ Parameter #5 [ <optional> $gmt_offset ]
+ }
+ }
+ Function [ <internal> public function date_sun_info ] {
+
+ - Parameters [3] {
+ Parameter #0 [ <required> $time ]
+ Parameter #1 [ <required> $latitude ]
+ Parameter #2 [ <required> $longitude ]
+ }
+ }
+ }
+
+ - Classes [2] {
+ Class [ <internal:date> class DateTime ] {
+
+ - Constants [11] {
+ Constant [ string ATOM ] { Y-m-d\TH:i:sP }
+ Constant [ string COOKIE ] { l, d-M-y H:i:s T }
+ Constant [ string ISO8601 ] { Y-m-d\TH:i:sO }
+ Constant [ string RFC822 ] { D, d M y H:i:s O }
+ Constant [ string RFC850 ] { l, d-M-y H:i:s T }
+ Constant [ string RFC1036 ] { D, d M y H:i:s O }
+ Constant [ string RFC1123 ] { D, d M Y H:i:s O }
+ Constant [ string RFC2822 ] { D, d M Y H:i:s O }
+ Constant [ string RFC3339 ] { Y-m-d\TH:i:sP }
+ Constant [ string RSS ] { D, d M Y H:i:s O }
+ Constant [ string W3C ] { Y-m-d\TH:i:sP }
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [0] {
+ }
+
+ - Properties [0] {
+ }
+
+ - Methods [9] {
+ Method [ <internal, ctor> public method __construct ] {
+ }
+
+ Method [ <internal> public method format ] {
+ }
+
+ Method [ <internal> public method modify ] {
+ }
+
+ Method [ <internal> public method getTimezone ] {
+ }
+
+ Method [ <internal> public method setTimezone ] {
+ }
+
+ Method [ <internal> public method getOffset ] {
+ }
+
+ Method [ <internal> public method setTime ] {
+ }
+
+ Method [ <internal> public method setDate ] {
+ }
+
+ Method [ <internal> public method setISODate ] {
+ }
+ }
+ }
+
+ Class [ <internal:date> class DateTimeZone ] {
+
+ - Constants [0] {
+ }
+
+ - Static properties [0] {
+ }
+
+ - Static methods [2] {
+ Method [ <internal> static public method listAbbreviations ] {
+ }
+
+ Method [ <internal> static public method listIdentifiers ] {
+ }
+ }
+
+ - Properties [0] {
+ }
+
+ - Methods [4] {
+ Method [ <internal, ctor> public method __construct ] {
+ }
+
+ Method [ <internal> public method getName ] {
+ }
+
+ Method [ <internal> public method getOffset ] {
+ }
+
+ Method [ <internal> public method getTransitions ] {
+ }
+ }
+ }
+ }
+}
+
+"
+Done
diff --git a/sapi/cli/tests/007.phpt b/sapi/cli/tests/007.phpt
new file mode 100644
index 0000000000..2725907825
--- /dev/null
+++ b/sapi/cli/tests/007.phpt
@@ -0,0 +1,52 @@
+--TEST--
+strip comments and whitespace with -w
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+$filename = dirname(__FILE__).'/007.test.php';
+$code ='
+<?php
+/* some test script */
+
+class test { /* {{{ */
+ public $var = "test"; //test var
+#perl style comment
+ private $pri; /* private attr */
+
+ function foo(/* void */) {
+ }
+}
+/* }}} */
+
+?>
+';
+
+file_put_contents($filename, $code);
+
+var_dump(`$php -w "$filename"`);
+var_dump(`$php -w "wrong"`);
+var_dump(`echo "<?php /* comment */ class test {\n // comment \n function foo() {} } ?>" | $php -w`);
+
+@unlink($filename);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(81) "
+<?php
+ class test { public $var = "test"; private $pri; function foo() { } } ?>
+"
+Could not open input file: wrong
+NULL
+string(43) "<?php class test { function foo() {} } ?>
+"
+Done
diff --git a/sapi/cli/tests/008.phpt b/sapi/cli/tests/008.phpt
new file mode 100644
index 0000000000..5bbc26acc2
--- /dev/null
+++ b/sapi/cli/tests/008.phpt
@@ -0,0 +1,43 @@
+--TEST--
+execute a file with -f
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+$filename = dirname(__FILE__).'/008.test.php';
+$code ='
+<?php
+
+class test {
+ private $pri;
+}
+
+var_dump(test::$pri);
+?>
+';
+
+file_put_contents($filename, $code);
+
+var_dump(`$php -f "$filename"`);
+var_dump(`$php -f "wrong"`);
+
+@unlink($filename);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(%d) "
+
+Fatal error: Cannot access private property test::$pri in %s on line %d
+"
+Could not open input file: wrong
+NULL
+Done
diff --git a/sapi/cli/tests/009.phpt b/sapi/cli/tests/009.phpt
new file mode 100644
index 0000000000..cc910fe1e3
--- /dev/null
+++ b/sapi/cli/tests/009.phpt
@@ -0,0 +1,23 @@
+--TEST--
+using invalid combinations of cmdline options
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`$php -n -c -r 'echo hello;'`);
+var_dump(`$php -a -r 'echo hello;'`);
+var_dump(`$php -r 'echo hello;' -a`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+You cannot use both -n and -c switch. Use -h for help.
+NULL
+Either execute direct code, process stdin or use a file.
+NULL
+Either execute direct code, process stdin or use a file.
+NULL
+Done
diff --git a/sapi/cli/tests/010-2.phpt b/sapi/cli/tests/010-2.phpt
new file mode 100644
index 0000000000..60865df712
--- /dev/null
+++ b/sapi/cli/tests/010-2.phpt
@@ -0,0 +1,35 @@
+--TEST--
+executing a code with -R
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+$filename_txt = dirname(__FILE__)."/010.test.txt";
+
+$txt = '
+test
+hello
+';
+
+file_put_contents($filename_txt, $txt);
+
+var_dump(`cat "$filename_txt" | "$php" -R "var_dump(1);"`);
+
+@unlink($filename_txt);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(21) "int(1)
+int(1)
+int(1)
+"
+Done
diff --git a/sapi/cli/tests/010.phpt b/sapi/cli/tests/010.phpt
new file mode 100644
index 0000000000..5bbcb6ba54
--- /dev/null
+++ b/sapi/cli/tests/010.phpt
@@ -0,0 +1,47 @@
+--TEST--
+executing a file with -F
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+$filename = dirname(__FILE__)."/010.test.php";
+$filename_txt = dirname(__FILE__)."/010.test.txt";
+
+$code = '
+<?php
+var_dump(fread(STDIN, 10));
+?>
+';
+
+file_put_contents($filename, $code);
+
+$txt = '
+test
+hello
+';
+
+file_put_contents($filename_txt, $txt);
+
+var_dump(`cat "$filename_txt" | "$php" -F "$filename"`);
+
+@unlink($filename);
+@unlink($filename_txt);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(39) "
+string(10) "test
+hello"
+
+string(0) ""
+"
+Done
diff --git a/sapi/cli/tests/011.phpt b/sapi/cli/tests/011.phpt
new file mode 100644
index 0000000000..ff6595740a
--- /dev/null
+++ b/sapi/cli/tests/011.phpt
@@ -0,0 +1,58 @@
+--TEST--
+syntax check
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+$filename = dirname(__FILE__)."/011.test.php";
+
+$code = '
+<?php
+
+$test = "var";
+
+class test {
+ private $var;
+}
+
+echo test::$var;
+
+?>
+';
+
+file_put_contents($filename, $code);
+
+var_dump(`"$php" -l "$filename"`);
+var_dump(`"$php" -l some.unknown`);
+
+$code = '
+<?php
+
+class test
+ private $var;
+}
+
+?>
+';
+
+file_put_contents($filename, $code);
+
+var_dump(`"$php" -l "$filename"`);
+
+@unlink($filename);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(%d) "No syntax errors detected in %s011.test.php
+"
+Could not open input file: some.unknown
+NULL
+string(%d) "
+Parse error: syntax error, unexpected T_PRIVATE, expecting '{' in %s on line %d
+Errors parsing %s011.test.php
+"
+Done
diff --git a/sapi/cli/tests/012.phpt b/sapi/cli/tests/012.phpt
new file mode 100644
index 0000000000..ad66fde634
--- /dev/null
+++ b/sapi/cli/tests/012.phpt
@@ -0,0 +1,38 @@
+--TEST--
+invalid arguments and error messages
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+var_dump(`"$php" -F some.php -F some.php`);
+var_dump(`"$php" -F some.php -R some.php`);
+var_dump(`"$php" -R some.php -F some.php`);
+var_dump(`"$php" -R some.php -R some.php`);
+var_dump(`"$php" -f some.php -f some.php`);
+var_dump(`"$php" -B '' -B ''`);
+var_dump(`"$php" -E '' -E ''`);
+var_dump(`"$php" -r "" -r ""`);
+
+echo "Done\n";
+?>
+--EXPECTF--
+You can use -R or -F only once.
+NULL
+You can use -R or -F only once.
+NULL
+You can use -R or -F only once.
+NULL
+You can use -R or -F only once.
+NULL
+You can use -f only once.
+NULL
+You can use -B only once.
+NULL
+You can use -E only once.
+NULL
+You can use -r only once.
+NULL
+Done
diff --git a/sapi/cli/tests/013.phpt b/sapi/cli/tests/013.phpt
new file mode 100644
index 0000000000..6b2b39056d
--- /dev/null
+++ b/sapi/cli/tests/013.phpt
@@ -0,0 +1,34 @@
+--TEST--
+running PHP code before and after processing input lines with -B and -E
+--SKIPIF--
+<?php
+include "skipif.inc";
+if (substr(PHP_OS, 0, 3) == 'WIN') {
+ die ("skip not for Windows");
+}
+?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+$filename_txt = dirname(__FILE__)."/013.test.txt";
+file_put_contents($filename_txt, "test\nfile\ncontents\n");
+
+var_dump(`cat "$filename_txt" | "$php" -B 'var_dump("start");'`);
+var_dump(`cat "$filename_txt" | "$php" -E 'var_dump("end");'`);
+var_dump(`cat "$filename_txt" | "$php" -B 'var_dump("start");' -E 'var_dump("end");'`);
+
+@unlink($filename_txt);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(18) "string(5) "start"
+"
+string(16) "string(3) "end"
+"
+string(34) "string(5) "start"
+string(3) "end"
+"
+Done
diff --git a/sapi/cli/tests/014.phpt b/sapi/cli/tests/014.phpt
new file mode 100644
index 0000000000..5c4d75a1d6
--- /dev/null
+++ b/sapi/cli/tests/014.phpt
@@ -0,0 +1,44 @@
+--TEST--
+syntax highlighting
+--SKIPIF--
+<?php include "skipif.inc"; ?>
+--FILE--
+<?php
+
+$php = $_ENV['TEST_PHP_EXECUTABLE'];
+
+$filename = dirname(__FILE__)."/014.test.php";
+$code = '
+<?php
+$test = "var"; //var
+/* test class */
+class test {
+ private $var = array();
+
+ public static function foo(Test $arg) {
+ echo "hello";
+ var_dump($this);
+ }
+}
+
+$o = new test;
+?>
+';
+
+file_put_contents($filename, $code);
+
+var_dump(`"$php" -n -s "$filename"`);
+var_dump(`"$php" -n -s "unknown"`);
+
+@unlink($filename);
+
+echo "Done\n";
+?>
+--EXPECTF--
+string(1478) "<code><span style="color: #000000">
+<br /><span style="color: #0000BB">&lt;?php<br />$test&nbsp;</span><span style="color: #007700">=&nbsp;</span><span style="color: #DD0000">"var"</span><span style="color: #007700">;&nbsp;</span><span style="color: #FF8000">//var<br />/*&nbsp;test&nbsp;class&nbsp;*/<br /></span><span style="color: #007700">class&nbsp;</span><span style="color: #0000BB">test&nbsp;</span><span style="color: #007700">{<br />&nbsp;&nbsp;&nbsp;&nbsp;private&nbsp;</span><span style="color: #0000BB">$var&nbsp;</span><span style="color: #007700">=&nbsp;array();<br /><br />&nbsp;&nbsp;&nbsp;&nbsp;public&nbsp;static&nbsp;function&nbsp;</span><span style="color: #0000BB">foo</span><span style="color: #007700">(</span><span style="color: #0000BB">Test&nbsp;$arg</span><span style="color: #007700">)&nbsp;{<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;echo&nbsp;</span><span style="color: #DD0000">"hello"</span><span style="color: #007700">;<br />&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$this</span><span style="color: #007700">);<br />&nbsp;&nbsp;&nbsp;&nbsp;}<br />}<br /><br /></span><span style="color: #0000BB">$o&nbsp;</span><span style="color: #007700">=&nbsp;new&nbsp;</span><span style="color: #0000BB">test</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">?&gt;<br /></span>
+</span>
+</code>"
+Could not open input file: unknown
+NULL
+Done
diff --git a/sapi/cli/tests/skipif.inc b/sapi/cli/tests/skipif.inc
new file mode 100644
index 0000000000..79e6c91004
--- /dev/null
+++ b/sapi/cli/tests/skipif.inc
@@ -0,0 +1,7 @@
+<?php
+
+if (php_sapi_name() != "cli") {
+ die("skip CLI only");
+}
+
+?>