2010-03-09 18:39:24 +05:30
|
|
|
#!/bin/sh
|
|
|
|
#
|
|
|
|
# These are not ash tests, we use ash as a way to test lineedit!
|
|
|
|
#
|
|
|
|
# Copyright 2010 by Denys Vlasenko
|
2010-08-16 23:44:46 +05:30
|
|
|
# Licensed under GPLv2, see file LICENSE in this source tree.
|
2010-03-09 18:39:24 +05:30
|
|
|
|
|
|
|
. ./testing.sh
|
2010-04-29 17:13:39 +05:30
|
|
|
test -f "$bindir/.config" && . "$bindir/.config"
|
|
|
|
|
2010-05-10 07:46:43 +05:30
|
|
|
test x"CONFIG_SCRIPT" = x"y" || exit 0
|
|
|
|
test x"CONFIG_HEXDUMP" = x"y" || exit 0
|
|
|
|
test x"CONFIG_FEATURE_DEVPTS" = x"y" || exit 0
|
|
|
|
|
2010-03-09 18:39:24 +05:30
|
|
|
# testing "test name" "options" "expected result" "file input" "stdin"
|
|
|
|
|
2010-04-29 17:13:39 +05:30
|
|
|
if test x"$CONFIG_UNICODE_PRESERVE_BROKEN" = x"y"; then
|
|
|
|
testing "One byte which is not valid unicode char followed by valid input" \
|
|
|
|
"script -q -c 'ash' /dev/null >/dev/null; cat ash.output" \
|
|
|
|
"\
|
|
|
|
00000000 ff 2d 0a |.-.|
|
|
|
|
00000003
|
|
|
|
" \
|
|
|
|
"" \
|
|
|
|
"echo \xff- | hexdump -C >ash.output; exit; exit; exit; exit\n"
|
|
|
|
|
|
|
|
testing "30 bytes which are not valid unicode chars followed by valid input" \
|
|
|
|
"script -q -c 'ash' /dev/null >/dev/null; cat ash.output" \
|
|
|
|
"\
|
|
|
|
00000000 ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff ff |................|
|
|
|
|
00000010 ff ff ff ff ff ff ff ff ff ff ff ff ff ff 2d 0a |..............-.|
|
|
|
|
00000020
|
|
|
|
" \
|
|
|
|
"" \
|
|
|
|
"echo \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff- | hexdump -C >ash.output; exit; exit; exit; exit\n"
|
|
|
|
else
|
2010-03-09 18:39:24 +05:30
|
|
|
testing "One byte which is not valid unicode char followed by valid input" \
|
2010-03-12 01:47:55 +05:30
|
|
|
"script -q -c 'ash' /dev/null >/dev/null; cat ash.output" \
|
2010-03-09 18:39:24 +05:30
|
|
|
"\
|
|
|
|
00000000 3f 2d 0a |?-.|
|
|
|
|
00000003
|
|
|
|
" \
|
|
|
|
"" \
|
2010-03-12 01:47:55 +05:30
|
|
|
"echo \xff- | hexdump -C >ash.output; exit; exit; exit; exit\n"
|
2010-03-09 18:39:24 +05:30
|
|
|
|
|
|
|
testing "30 bytes which are not valid unicode chars followed by valid input" \
|
2010-03-12 01:47:55 +05:30
|
|
|
"script -q -c 'ash' /dev/null >/dev/null; cat ash.output" \
|
2010-03-09 18:39:24 +05:30
|
|
|
"\
|
|
|
|
00000000 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f |????????????????|
|
|
|
|
00000010 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 3f 2d 0a |??????????????-.|
|
|
|
|
00000020
|
|
|
|
" \
|
|
|
|
"" \
|
2010-03-12 01:47:55 +05:30
|
|
|
"echo \xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff- | hexdump -C >ash.output; exit; exit; exit; exit\n"
|
2010-04-29 17:13:39 +05:30
|
|
|
fi
|
|
|
|
|
2010-03-09 18:39:24 +05:30
|
|
|
|
|
|
|
# Not sure this behavior is perfect: we lose all invalid input which precedes
|
|
|
|
# arrow keys and such. In this example, \xff\xff are lost
|
|
|
|
testing "2 bytes which are not valid unicode chars followed by left arrow key" \
|
2010-03-12 01:47:55 +05:30
|
|
|
"script -q -c 'ash' /dev/null >/dev/null; cat ash.output" \
|
2010-03-09 18:39:24 +05:30
|
|
|
"\
|
|
|
|
00000000 3d 2d 0a |=-.|
|
|
|
|
00000003
|
|
|
|
" \
|
|
|
|
"" \
|
2010-03-12 01:47:55 +05:30
|
|
|
"echo =+\xff\xff\x1b\x5b\x44- | hexdump -C >ash.output; exit; exit; exit; exit\n"
|
|
|
|
|
|
|
|
# ash should see "echo \xff\n",pause -> execute it as "echo ?" (which is
|
|
|
|
# not checked by the test), then read and execute the rest: "echo A | ..."
|
|
|
|
# The bug was that ash was eating the beginning of "echo A" despite the pause.
|
|
|
|
testing "Invalid unicode chars followed by a pause do not eat next chars" \
|
2010-05-12 19:29:32 +05:30
|
|
|
"{ $ECHO -ne 'echo \xff\n'; sleep 1; $ECHO -ne 'echo A | hexdump -C >ash.output; exit; exit; exit; exit\n'; } \
|
2010-03-12 01:47:55 +05:30
|
|
|
| script -q -c 'ash' /dev/null >/dev/null; cat ash.output" \
|
|
|
|
"\
|
|
|
|
00000000 41 0a |A.|
|
|
|
|
00000002
|
|
|
|
" \
|
|
|
|
"" ""
|
|
|
|
|
|
|
|
rm ash.output
|
2010-03-09 18:39:24 +05:30
|
|
|
|
|
|
|
exit $FAILCOUNT
|