rofi/test/run_dmenu_test.sh

27 lines
499 B
Bash
Raw Normal View History

2014-08-29 14:57:36 +00:00
#!/usr/bin/env bash
# wait till it is up, run rofi with error message
sleep 1
echo -e -n "aap\nnoot\nmies" | rofi -dmenu -multi-select > output.txt &
2014-08-29 14:57:36 +00:00
RPID=$!
# send enter.
sleep 5
xdotool key 'Down'
2014-08-29 14:57:36 +00:00
sleep 0.4
xdotool key Shift+Return
2016-06-26 09:00:23 +00:00
xdotool key Shift+Return
xdotool key Return
2014-08-29 14:57:36 +00:00
# Get result, kill xvfb
wait "${RPID}"
2014-08-29 14:57:36 +00:00
RETV=$?
2019-02-02 11:39:41 +00:00
OUTPUT=$( tr '\n' ' ' < output.txt )
if [ "${OUTPUT}" != 'noot mies ' ]
2014-08-29 14:57:36 +00:00
then
2015-10-11 11:51:08 +00:00
echo "Got: '${OUTPUT}' expected 'noot mies '"
2014-08-29 14:57:36 +00:00
exit 1
fi
echo "${RETV}"
exit "${RETV}"