rofi/test/run_script_test.sh

27 lines
450 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
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'
2014-08-31 08:37:12 +00:00
sleep 0.4
xdotool key Return
# Get result, kill xvfb
wait "${RPID}"
2014-08-31 08:37:12 +00:00
RETV=$?
2019-02-02 11:35:37 +00:00
OUTPUT=$( tr '\n' ' ' < output.txt )
echo "${OUTPUT}"
2014-08-31 08:37:12 +00:00
if [ "${OUTPUT}" != 'noot ' ]
then
exit 1
fi
exit "${RETV}"