summaryrefslogtreecommitdiffstats
path: root/test/run_script_meta_test.sh
blob: cb570daed2be053f9a2de1c25897142e68d0acc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env bash

SP=$(readlink -f "$0")
DIR=$(dirname "$SP")
echo "$DIR/test_script.sh"
# wait till it is up, run rofi with error message
sleep 1;
rofi -modi "custom:$DIR/test_script.sh" -show custom &
RPID=$!

# send enter.
sleep 5;
xdotool key 'z'
sleep 0.4
xdotool key Return

#  Get result, kill xvfb
wait ${RPID}
RETV=$?
OUTPUT=$( tr '\n' ' ' < output.txt )
echo ${OUTPUT}
if [ "${OUTPUT}" != 'mies ' ]
then
    exit 1
fi
exit ${RETV}