rofi/test/run_script_test.sh

26 lines
424 B
Bash
Executable File

#!/usr/bin/env bash
SP=$(readlink -f "$0")
DIR=$(dirname "$SP")
echo $DIR
# wait till it is up, run rofi with error message
sleep 1;
rofi -switchers "custom:$DIR/test_script.sh" -show custom &
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' ' ')
if [ "${OUTPUT}" != 'noot ' ]
then
exit 1
fi
exit ${RETV}