1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2024-10-20 05:22:08 -04:00
rofi/test/run_dmenu_test.sh
Dave Davenport 7e1ea5290d Update tests
2016-07-19 00:16:49 +02:00

26 lines
501 B
Bash
Executable file

#!/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 &
RPID=$!
# send enter.
sleep 5;
xdotool key 'Down'
sleep 0.4
xdotool key Shift+Return
xdotool key Shift+Return
xdotool key Return
# Get result, kill xvfb
wait ${RPID}
RETV=$?
OUTPUT=$(cat output.txt | tr '\n' ' ')
if [ "${OUTPUT}" != 'noot mies ' ]
then
echo "Got: '${OUTPUT}' expected 'noot mies '"
exit 1
fi
echo ${RETV}
exit ${RETV}