From b557c4df6e51cf0dafa922b386470f2b3bb82c31 Mon Sep 17 00:00:00 2001 From: Dave Davenport Date: Wed, 3 Feb 2016 09:01:13 +0100 Subject: Issue: #333, Check if row is selected, don't assume selected_line is valid. --- test/run_issue333_test.sh | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 test/run_issue333_test.sh (limited to 'test') diff --git a/test/run_issue333_test.sh b/test/run_issue333_test.sh new file mode 100755 index 00000000..1fb98548 --- /dev/null +++ b/test/run_issue333_test.sh @@ -0,0 +1,33 @@ +#!/usr/bin/env bash + +# wait till it is up, run rofi with error message +rm -f output.txt +sleep 1; +echo -e -n "aap\nnoot\nmies" | rofi -dmenu -no-custom -kb-custom-1 F5 -kb-custom-2 "Control+a" > output.txt & +RPID=$! + +# send enter. +sleep 5; +xdotool key 'q' +sleep 0.4 +xdotool key Return +sleep 0.4 +xdotool key F5 +sleep 0.4 +xdotool key "Control+a" +sleep 0.4 +xdotool key Escape + +# Get result, kill xvfb +wait ${RPID} +RETV=$? +OUTPUT=$(cat output.txt | tr '\n' ' ') +if [ "${OUTPUT}" != '' ] +then + echo "Got: '${OUTPUT}' expected nothing" + exit 1 +fi +if [ ${RETV} != 1 ] +then + exit 1 +fi -- cgit v1.2.3