#########################################################################
#
# Setup test Subroutines
#
#########################################################################

# test setup
#
testSETUP1() {
    test -d "$basedir" || printFATAL "Basedir $basedir does not exist"
    test -d "$basedir/tmp" || printFATAL "Tmpdir $basedir/tmp does not exist"
    tmpdir="$basedir/tmp"; export tmpdir
    return 0
}

# test setup
#
testSETUP2() {
    test -z "$action" && 
	{ 
	  promptMENU "Which action do you want to perform" "install" "build" "download" "checksrc" "clean" "info" "uninstall"; 
	  action="$MENU"; export action; 
        }
    if (test x"$action" = xbuild || test x"$action" = xinstall || test x"$action" = xuninstall)
    then
	test -z "$host"   && 
	    { 
		promptINPUT "On which host do you want to $action"; 
		host="$INPUT"; export host; 
	    }
    fi
    return 0
}

setupFORMAT() {

    tmp_format=`echo "${1}" | sed '/^\(.*\)\.\([0-9a-zA-Z]*\)$/{ s//\2/; q; }'`
    echo "${tmp_format}"
}

setupVERSION() {
    tmp_version=`echo ${DB_version} | sed s%\.run%% | sed s%\.rpm%% | sed s%\.deb%% | sed s%\.tbz2%% | sed s%\.pkg%%`
    echo "${tmp_version}"

}
