diff options
Diffstat (limited to 'tests/exec.t')
-rwxr-xr-x | tests/exec.t | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/exec.t b/tests/exec.t new file mode 100755 index 0000000..5e021cb --- /dev/null +++ b/tests/exec.t @@ -0,0 +1,20 @@ +#!/www/server/bin/php -qC +<?php + +# Tests for getopt in it.class + +require 'searchlib/search_test.class'; + +is(it::exec("echo gna"), "gna\n", "basic exec"); +is(it::exec("echo {arg}", 'arg' => 'gna'), "gna\n", "exec with argument"); + +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}", 'arg' => $arg), $arg . "\n", "exec with argument and umlaut (locale '$locale')"); +} + + |