1
0
Fork 0
mirror of https://github.com/davatorium/rofi.git synced 2025-01-27 15:25:24 -05:00
rofi/test/run_script_test.sh

27 lines
451 B
Bash
Raw Normal View History

2014-08-31 10:37:12 +02:00
#!/usr/bin/env bash
SP=$(readlink -f "$0")
DIR=$(dirname "$SP")
2015-11-27 13:23:40 +01:00
echo "$DIR/test_script.sh"
2014-08-31 10:37:12 +02:00
# wait till it is up, run rofi with error message
sleep 1;
2015-11-27 13:23:40 +01:00
rofi -modi "custom:$DIR/test_script.sh" -show custom &
2014-08-31 10:37:12 +02:00
RPID=$!
# send enter.
sleep 5;
xdotool key 'Down'
sleep 0.4
xdotool key Return
# Get result, kill xvfb
wait ${RPID}
RETV=$?
OUTPUT=$(cat output.txt | tr '\n' ' ')
2015-11-28 12:59:10 +01:00
echo ${OUTPUT}
2014-08-31 10:37:12 +02:00
if [ "${OUTPUT}" != 'noot ' ]
then
exit 1
fi
exit ${RETV}