From 338cda9000356404cf2865d61787607acf67fe98 Mon Sep 17 00:00:00 2001 From: Nathan Gass Date: Thu, 22 Mar 2012 18:23:53 +0000 Subject: last remains of wrong branch itools/live/devel-utf8 removed --- devel-utf8/tests/exec.t | 23 ----------------------- 1 file changed, 23 deletions(-) delete mode 100755 devel-utf8/tests/exec.t (limited to 'devel-utf8/tests/exec.t') diff --git a/devel-utf8/tests/exec.t b/devel-utf8/tests/exec.t deleted file mode 100755 index 689bd26..0000000 --- a/devel-utf8/tests/exec.t +++ /dev/null @@ -1,23 +0,0 @@ -#!/www/server/bin/php -qC - 'gna')), "gna\n", "exec with argument"); -is(it::shell_command("echo {arg}", array('arg' => 'gna07,-:blah')), "echo gna07,-:blah", "don't quote arguments with only whitelistes characters"); -is(it::shell_command("echo {arg}", array('arg' => '2>&1')), "echo '2>&1'", "quote arguments with dangerous characters"); -is(it::shell_command("echo {arg}", array('arg' => '')), "echo ''", "quote empty arguments"); - -foreach (array("", "C", "de_CH", "de_CH.utf8") as $locale) { - setlocale(LC_ALL, $locale); - $arg = "preüpost"; - if (it::match('utf8', $locale)) - $arg = utf8_encode($arg); - is(it::exec("echo " . $arg), $arg . "\n", "exec with umlaut (locale '$locale')"); - is(it::exec("echo {arg}", array('arg' => $arg)), $arg . "\n", "exec with argument and umlaut (locale '$locale')"); -} - -is(it::_exec_quotevalue(""), "''", "empty arg needs quotes"); -is(it::_exec_quotevalue("*"), "'*'", "special chars need quotes"); -is(it::_exec_quotevalue("Aabcdef0123456789"), "Aabcdef0123456789", "simple case. tel:debug_getdata needs unquoted vals"); -- cgit v1.2.3