rofi/test/run_dmenu_test.sh

24 lines
399 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 > 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
xdotool key Return
2014-08-29 14:57:36 +00:00
# Get result, kill xvfb
wait ${RPID}
RETV=$?
OUTPUT=$(cat output.txt | tr '\n' ' ')
if [ "${OUTPUT}" != 'noot mies ' ]
2014-08-29 14:57:36 +00:00
then
exit 1
fi
exit ${RETV}