Add VT100/color attributes tests.

This commit is contained in:
John Hood
2015-10-15 23:40:55 -04:00
parent e13011f318
commit 8681199957
6 changed files with 129 additions and 1 deletions
+7 -1
View File
@@ -1,7 +1,8 @@
EXTRA_DIST = \
hold-stdin print-exitstatus \
e2e-test e2e-test-server \
$(displaytests)
$(displaytests) \
emulation-attributes.test
AM_CXXFLAGS = $(WARNING_CXXFLAGS) $(PICKY_CXXFLAGS) $(HARDEN_CFLAGS) $(MISC_CXXFLAGS)
AM_LDFLAGS = $(HARDEN_LDFLAGS)
@@ -10,6 +11,10 @@ displaytests = \
e2e-success.test \
e2e-failure.test \
emulation-80th-column.test \
emulation-attributes-vt100.test \
emulation-attributes-16color.test \
emulation-attributes-256color8.test \
emulation-attributes-256color248.test \
emulation-back-tab.test \
emulation-cursor-motion.test \
emulation-multiline-scroll.test \
@@ -23,6 +28,7 @@ check_PROGRAMS = ocb-aes encrypt-decrypt base64
TESTS = ocb-aes encrypt-decrypt base64 $(displaytests)
XFAIL_TESTS = \
e2e-failure.test \
emulation-attributes-256color8.test \
emulation-back-tab.test
base64_vector.cc: $(srcdir)/genbase64.pl
+1
View File
@@ -0,0 +1 @@
emulation-attributes.test
+1
View File
@@ -0,0 +1 @@
emulation-attributes.test
+1
View File
@@ -0,0 +1 @@
emulation-attributes.test
+1
View File
@@ -0,0 +1 @@
emulation-attributes.test
+118
View File
@@ -0,0 +1,118 @@
#!/bin/sh
#
# This validates VT100, 16-color, and 256-color attributes against
# tmux. It is not run directly, but as subtests based on the
# executable's name for vt100, 16color, 256color8, and 256color248.
# This is because Mosh internally represents the first 8 values of the
# 256color space as though they were the 16-color values they are
# equivalent to. tmux does not filter this out on its redisplay, so
# compares on these values fail though they are visually identical.
#
fail()
{
printf "$@" 2>&1
exit 99
}
PATH=$PATH:.:$srcdir
# Top-level wrapper.
if [ $# -eq 0 ]; then
e2e-test $0 baseline direct verify
exit
fi
# OK, we have arguments, we're one of the test hooks.
if [ $# -ne 1 ]; then
fail "bad arguments %s\n" "$@"
fi
sleepf()
{
(sleep .1 || sleep 1) > /dev/null 2>&1
}
seq()
{
if [ $# -lt 1 -o $# -gt 3 ]; then
echo "bad args" >&2
fi
first=$1
incr=1
last=0
case $# in
3)
incr=$2
last=$3
;;
2)
last=$2
;;
1)
;;
esac
while :; do
printf '%d\n' $first
first=$(expr $first + $incr)
if [ $first -gt $last ]; then
break
fi
done
}
baseline()
{
# Strip our name to the last dash-separated word before the .test suffix.
testname=$(basename $1)
testname=${testname%%.test}
testname=${testname##*-}
printf '\033[H\033[J'
case $testname in
# Traditional ancient VT100 attributes.
vt100)
for attr in 0 1 4 5 7; do
printf '\033[%dmE\033[m ' $attr
done
printf '\n'
;;
# 16-color attributes.
16color)
for attr in $(seq 30 37) $(seq 39 47) 49; do
printf '\033[%dmE\033[m ' $attr
done
printf '\n'
;;
# First 8 256-color attributes. Comparing mosh and tmux fails.
256color8)
for attr in $(seq 0 7); do
printf '\033[38;5;%dmE\033[m ' $attr
printf '\033[48;5;%dmM\033[m ' $attr
done
printf '\n'
;;
# Last 248 256-color attributes.
256color248)
for attr in $(seq 8 255); do
printf '\033[38;5;%dmE\033[m ' $attr
printf '\033[48;5;%dmM\033[m ' $attr
done
printf '\n'
;;
*)
fail "unknown test name %s\n" $1
;;
esac
}
case $1 in
baseline|direct)
baseline $0;;
*)
fail "unknown test argument %s\n" $1;;
esac