rofi/test/run_switchdialog_test.sh

29 lines
445 B
Bash
Raw Normal View History

2014-08-29 14:24:39 +00:00
#!/usr/bin/env bash
# Create fake X
2014-08-29 14:39:11 +00:00
Xvfb :201 &
2014-08-29 14:24:39 +00:00
XPID=$!
# wait till it is up, run rofi with error message
2014-08-29 14:39:11 +00:00
sleep 1 && ./rofi -rnow -display :201 &
2014-08-29 14:24:39 +00:00
RPID=$!
# send enter.
sleep 5;
2014-08-29 14:39:11 +00:00
DISPLAY=:201 xdotool key 'shift+slash'
2014-08-29 14:24:39 +00:00
sleep 0.4
2014-08-29 14:39:11 +00:00
DISPLAY=:201 xdotool key 'shift+slash'
2014-08-29 14:24:39 +00:00
sleep 0.4
2014-08-29 14:39:11 +00:00
DISPLAY=:201 xdotool key 'shift+slash'
2014-08-29 14:24:39 +00:00
sleep 0.4
2014-08-29 14:39:11 +00:00
DISPLAY=:201 xdotool key Escape
2014-08-29 14:24:39 +00:00
# Get result, kill xvfb
wait ${RPID}
RETV=$?
kill ${XPID}
2014-08-29 14:39:11 +00:00
sleep 1
2014-08-29 14:24:39 +00:00
exit ${RETV}