From b1aea22fd23f95fa80840565917fdb5a1a622a25 Mon Sep 17 00:00:00 2001 From: Robert Sesek <rsesek@bluestatic.org> Date: Sat, 14 Sep 2019 20:30:34 -0400 Subject: [PATCH] Add some test files. --- dev/tests/Cyrillic-array-key.php | 11 +++++++++++ dev/tests/bug-207.php | 20 ++++++++++++++++++++ dev/tests/exception.php | 15 +++++++++++++++ dev/tests/long_array.php | 10 ++++++++++ dev/tests/space name.php | 10 ++++++++++ dev/tests/static.php | 18 ++++++++++++++++++ 6 files changed, 84 insertions(+) create mode 100644 dev/tests/Cyrillic-array-key.php create mode 100644 dev/tests/bug-207.php create mode 100644 dev/tests/exception.php create mode 100644 dev/tests/long_array.php create mode 100644 dev/tests/space name.php create mode 100644 dev/tests/static.php diff --git a/dev/tests/Cyrillic-array-key.php b/dev/tests/Cyrillic-array-key.php new file mode 100644 index 0000000..4cae5c2 --- /dev/null +++ b/dev/tests/Cyrillic-array-key.php @@ -0,0 +1,11 @@ +<?php + +$a = []; + +$a['LФЯÐÔ PÐPSÐÔ DФLФЯ SÐÒ¬ ÐÔ ÐÔÒ'] = 'LФЯÐÔ PÐPSÐÔ DФLФЯ SÐÒ¬ ÐÔ ÐÔÒ'; + +foreach ($a as $k => $v) { + print_r($k); + print_r($v); +} + diff --git a/dev/tests/bug-207.php b/dev/tests/bug-207.php new file mode 100644 index 0000000..fb2e3aa --- /dev/null +++ b/dev/tests/bug-207.php @@ -0,0 +1,20 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" +"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html> +<head> +<meta http-equiv="Content-type" content="text/html; charset=utf-8"/> +<title>Title</title> + +</head> +<body id="body"> +<form action="#" method="post" accept-charset="utf-8" id="myform"> +<?php for ($i=0;$i<100;$i++): ?> +<label for="form-data-<?php echo $i ?>"><?php echo "Data $i" ?></label> +<input type="text" name="form[data::<?php echo $i ?>]" value="<?php echo $_POST['form']["data::$i"] ?>x<?= $i ?>" id="form-data-<?php echo $i ?>"/> +<?php endfor?> + +<p><input type="submit" value="Submit â"/></p> +</form> +<?php var_dump($_POST) ?> +</body> +</html> diff --git a/dev/tests/exception.php b/dev/tests/exception.php new file mode 100644 index 0000000..c2ade86 --- /dev/null +++ b/dev/tests/exception.php @@ -0,0 +1,15 @@ +<?php + +class CustomException extends Exception {} + +function DoSomething() { + throw new CustomException('Hi There'); +} + +function Something() { + $c = 42; + $d = 12; + throw new Exception('Boo'); +} + +Something(); diff --git a/dev/tests/long_array.php b/dev/tests/long_array.php new file mode 100644 index 0000000..a7ef7df --- /dev/null +++ b/dev/tests/long_array.php @@ -0,0 +1,10 @@ +<?php + +$a = []; + +for ($i = 0; $i < 2048; ++$i) { + $a[$i] = $i; +} + +print_r($a); + diff --git a/dev/tests/space name.php b/dev/tests/space name.php new file mode 100644 index 0000000..34acd25 --- /dev/null +++ b/dev/tests/space name.php @@ -0,0 +1,10 @@ +<?php + +function OK() { + print 'This is OK'; + foreach ($_SERVER AS $k => $v) { + print "$k ==> $v"; + } +} + +OK(); diff --git a/dev/tests/static.php b/dev/tests/static.php new file mode 100644 index 0000000..688e554 --- /dev/null +++ b/dev/tests/static.php @@ -0,0 +1,18 @@ +<?php + +class C { + private static $bar; + + public static function test() { + self::$bar = 'moo'; + } + + public static function moo() { + return self::$bar; + } +} + +C::test(); + +C::moo(); + -- 2.43.5