1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-11-03 04:23:42 -05:00
rofi/test/run_dmenu_test.sh

27 lines
501 B
Bash
Raw Normal View History

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