/usr/share/pacemaker/tests/shell/evaltest.sh is in pacemaker-dev 1.1.6-2ubuntu3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | #!/bin/sh
# Copyright (C) 2007 Dejan Muhamedagic <dejan@suse.de>
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This software is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
: ${TESTDIR:=testcases}
: ${CRM:=/usr/sbin/crm}
CRM_NO_REG="$CRM"
CRM="$CRM -R"
export PYTHONUNBUFFERED=1
. ./defaults
. ./crm-interface
. ./descriptions
resetvars() {
unset args
unset extcheck
}
#
# special operations squad
#
specopt_setenv() {
eval $rest
}
specopt_ext() {
eval $rest
}
specopt_extcheck() {
extcheck="$rest"
set $extcheck
which "$1" >/dev/null 2>&1 || # a program in the PATH
extcheck="$TESTDIR/$extcheck" # or our script
}
specopt_repeat() {
repeat_limit=$rest
}
specopt() {
cmd=`echo $cmd | sed 's/%//'` # strip leading '%'
echo ".`echo $cmd | tr '[a-z]' '[A-Z]'` $rest" # show what we got
specopt_$cmd # do what they asked for
}
#
# substitute variables in the test line
#
substvars() {
sed "
s/%t/$test_cnt/g
s/%l/$line/g
s/%i/$repeat_cnt/g
"
}
dotest_session() {
echo -n "." >&3
test_cnt=$(($test_cnt+1))
describe_session $* # show what we are about to do
crm_$cmd | # and execute the command
{ [ "$extcheck" ] && $extcheck || cat;}
}
dotest_single() {
echo -n "." >&3
test_cnt=$(($test_cnt+1))
describe_single $* # show what we are about to do
crm_single $* | # and execute the command
{ [ "$extcheck" ] && $extcheck || cat;}
if [ "$showobj" ]; then
crm_showobj $showobj
fi
}
runtest_session() {
while read line; do
if [ "$line" = . ]; then
break
fi
echo "$line"
done | dotest_session $*
}
runtest_single() {
while [ $repeat_cnt -le $repeat_limit ]; do
dotest_single $*
resetvars # unset all variables
repeat_cnt=$(($repeat_cnt+1))
done
repeat_limit=1 repeat_cnt=1
}
#
# run the tests
#
repeat_limit=1 repeat_cnt=1
line=1
test_cnt=1
crm_setup
crm_mksample
while read cmd rest; do
case "$cmd" in
"") : empty ;;
"#"*) : a comment ;;
"%stop") break ;;
"%"*) specopt ;;
show|showxml|session) runtest_session $rest ;;
*) runtest_single $cmd $rest ;;
esac
line=$(($line+1))
done
|