rofi/test/run_glob_test.sh

27 lines
416 B
Bash
Raw Normal View History

2016-01-01 10:31:29 +00:00
#!/usr/bin/env bash
echo -en "nooty\naap\nnoot\nmies" | rofi -matching glob -dmenu > output.txt &
2016-01-01 10:31:29 +00:00
RPID=$!
# send enter.
sleep 5
2016-01-01 10:31:29 +00:00
xdotool key 'n'
sleep 0.4
xdotool key Shift+'8'
sleep 0.4
xdotool key 't'
sleep 0.4
xdotool key Return
# Get result, kill xvfb
wait "${RPID}"
2016-01-01 10:31:29 +00:00
RETV=$?
OUTPUT=$(cat output.txt)
if [ "${OUTPUT}" != 'nooty' ]
then
echo "Got: '${OUTPUT}' expected 'nooty'"
exit 1
fi
exit "${RETV}"