mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-19 14:57:42 +00:00
81 lines
1.8 KiB
Bash
Executable file
81 lines
1.8 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
tests=(
|
|
'000 - null keyboard'
|
|
'001 - basic input UnicodeI'
|
|
'002 - basic input Unicode'
|
|
'003 - nul'
|
|
'004 - basic input (shift 2)'
|
|
'005 - nul with initial context'
|
|
'006 - vkey input (shift ctrl)'
|
|
'007 - vkey input (ctrl alt)'
|
|
'008 - vkey input (ctrl alt 2)'
|
|
'012 - ralt'
|
|
'013 - deadkeys'
|
|
'014 - groups and virtual keys'
|
|
'015 - ralt 2'
|
|
'017 - space mnemonic kbd'
|
|
'018 - nul testing'
|
|
'019 - multiple deadkeys'
|
|
'020 - deadkeys and backspace'
|
|
'028 - smp'
|
|
'029 - beep'
|
|
'030 - multiple groups'
|
|
'038 - punctkeys'
|
|
'039 - generic ctrlalt'
|
|
)
|
|
|
|
|
|
#echo ${tests[*]}
|
|
#echo $tests[*]
|
|
|
|
#for test in ${tests}; do echo "$test"; done
|
|
|
|
model=`setxkbmap -query|grep model|cut -d ':' -f 2|tr -d ' '`
|
|
layout=`setxkbmap -query|grep layout|cut -d ':' -f 2|tr -d ' '`
|
|
rules=`setxkbmap -query|grep rules|cut -d ':' -f 2|tr -d ' '`
|
|
variant=`setxkbmap -query|grep variant|cut -d ':' -f 2|tr -d ' '`
|
|
|
|
echo "System xkb keyboard"
|
|
echo "model:$model"
|
|
echo "layout:$layout"
|
|
echo "rules:$rules"
|
|
echo "variant:$variant"
|
|
|
|
echo "Setting keyboard to us"
|
|
setxkbmap us
|
|
setxkbmap -query
|
|
|
|
count=0
|
|
passed=0
|
|
failed=0
|
|
while [ "x${tests[count]}" != "x" ]
|
|
do
|
|
echo ${tests[count]}
|
|
setxkbmap us
|
|
python3 test_ibus_keyman.py "${tests[count]}"
|
|
diffret=`diff -uws "${tests[count]}.in" "${tests[count]}.out"`
|
|
# echo $?
|
|
if [ "x$?" == "x0" ]; then
|
|
echo "passed"
|
|
passed=$(( $passed + 1 ))
|
|
else
|
|
echo "failed"
|
|
failed=$(( $failed + 1 ))
|
|
fi
|
|
count=$(( $count + 1 ))
|
|
done
|
|
|
|
echo "Setting xkb keyboard back to system one"
|
|
if [ "x$variant" == "x" ]; then
|
|
setxkbmap -model $model -layout $layout -rules $rules
|
|
else
|
|
setxkbmap -model $model -layout $layout -rules $rules -variant $variant
|
|
fi
|
|
setxkbmap -query
|
|
|
|
echo "-----------------------------------------------------"
|
|
echo "Tests run : ${count}"
|
|
echo "Passed : ${passed}"
|
|
echo "Failed : ${failed}"
|
|
|