rofi/test/run_script_test.sh

27 lines
451 B
Bash
Raw Normal View History

2014-08-31 08:37:12 +00:00
#!/usr/bin/env bash
SP=$(readlink -f "$0")
DIR=$(dirname "$SP")
2015-11-27 12:23:40 +00:00
echo "$DIR/test_script.sh"
2014-08-31 08:37:12 +00:00
# wait till it is up, run rofi with error message
sleep 1;
2015-11-27 12:23:40 +00:00
rofi -modi "custom:$DIR/test_script.sh" -show custom &
2014-08-31 08:37:12 +00: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 11:59:10 +00:00
echo ${OUTPUT}
2014-08-31 08:37:12 +00:00
if [ "${OUTPUT}" != 'noot ' ]
then
exit 1
fi
exit ${RETV}