From 60d890c9e9ba5d374c238647561ce23fa23bc431 Mon Sep 17 00:00:00 2001 From: Anastasios Grammenos Date: Mon, 5 Apr 2021 15:53:13 +0300 Subject: Add some tests --- test/run.sh | 38 ++++++++++++++++++++++++++++++++++++++ test/test1rc | 19 +++++++++++++++++++ 2 files changed, 57 insertions(+) create mode 100755 test/run.sh create mode 100644 test/test1rc (limited to 'test') diff --git a/test/run.sh b/test/run.sh new file mode 100755 index 0000000..bc60ead --- /dev/null +++ b/test/run.sh @@ -0,0 +1,38 @@ +#!/bin/bash + +XDOTOOL=$(which xdotool) + +if [ $? == 1 ]; then + XDOTOOL=: +fi + +./xlnch </dev/null & + +# comment + +#^ blank line + +# wrong key +aaa:description:command + +# no description +b::command + +# no command +c:no_command: + +# no `:` +this is a wrong config line + +# special characters +Ö × ĥ Ħ ﻰ ﻱ ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 7 8 : ; < = > ? @ B C H IY Z [ \ ] ^ _ ` v w x y z { | } ~ 。 「 」 、 ・ ヲ ァ ィ ゥ ェタ チ ツ + +EOF +PID=$! +sleep .1 +$XDOTOOL key q +wait $PID + +echo $? + + diff --git a/test/test1rc b/test/test1rc new file mode 100644 index 0000000..25889f6 --- /dev/null +++ b/test/test1rc @@ -0,0 +1,19 @@ + +# comment + +#^ blank line + +# wrong key +aaa:description:command + +# no description +b::command + +# no command +c:no_command: + +# no `:` +this is a wrong config line + +# special characters +Ö × ĥ Ħ ﻰ ﻱ ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 7 8 : ; < = > ? @ B C H IY Z [ \ ] ^ _ ` v w x y z { | } ~ 。 「 」 、 ・ ヲ ァ ィ ゥ ェタ チ ツ -- cgit v1.2.3