Browse Source

added feature to jc2server

pull/1863/head
Daniel Gibbs 7 years ago
parent
commit
32c5289269
  1. 318
      tests/tests_jc2server.sh

318
tests/tests_jc2server.sh

@ -475,8 +475,15 @@ echo "================================="
echo "Description:" echo "Description:"
echo "Create log dir's" echo "Create log dir's"
echo "" echo ""
(install_logs.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
install_logs.sh
)
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "0.2 - Enable dev-debug" echo "0.2 - Enable dev-debug"
echo "=================================" echo "================================="
@ -487,21 +494,14 @@ echo ""
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5" BASH_XTRACEFD="5"
set -x set -x
command_dev_debug.sh) command_dev_debug.sh
)
fn_test_result_pass fn_test_result_pass
pwd echo "run order"
echo "######travis build path" echo "================="
echo "${TRAVIS_BUILD_DIR}" grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "####### touch & date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug"
touch /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug echo ""
date > /home/travis/build/GameServerManagers/LinuxGSM/tests/.dev-debug
echo "########## ${rootdir}/.dev-debug"
grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log"
echo "################## tree"
tree
echo "################## pwd"
pwd
echo "1.0 - start - no files" echo "1.0 - start - no files"
echo "=================================" echo "================================="
echo "Description:" echo "Description:"
@ -512,9 +512,12 @@ echo ""
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5" BASH_XTRACEFD="5"
set -x set -x
command_start.sh) command_start.sh
)
fn_test_result_fail fn_test_result_fail
grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "1.1 - getopt" echo "1.1 - getopt"
@ -527,10 +530,13 @@ echo ""
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log" exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5" BASH_XTRACEFD="5"
set -x set -x
core_getopt.sh) core_getopt.sh
)
fn_test_result_pass fn_test_result_pass
cat "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "run order"
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "1.2 - getopt with incorrect args" echo "1.2 - getopt with incorrect args"
echo "=================================" echo "================================="
@ -539,9 +545,16 @@ echo "displaying options messages."
echo "Command: ./jc2server abc123" echo "Command: ./jc2server abc123"
echo "" echo ""
getopt="abc123" getopt="abc123"
(core_getopt.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
core_getopt.sh
)
fn_test_result_fail fn_test_result_fail
grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "2.0 - install" echo "2.0 - install"
@ -549,9 +562,16 @@ echo "================================="
echo "Description:" echo "Description:"
echo "install ${gamename} server." echo "install ${gamename} server."
echo "Command: ./jc2server auto-install" echo "Command: ./jc2server auto-install"
(fn_autoinstall) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
fn_autoinstall
)
fn_test_result_pass fn_test_result_pass
grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "3.1 - start" echo "3.1 - start"
@ -561,11 +581,17 @@ echo "start ${gamename} server."
echo "Command: ./jc2server start" echo "Command: ./jc2server start"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(command_start.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_start.sh
)
fn_test_result_pass fn_test_result_pass
grep "functionfile=" "${TRAVIS_BUILD_DIR}/dev-debug.log" echo "run order"
echo "############## tree" echo "================="
tree grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "3.2 - start - online" echo "3.2 - start - online"
echo "=================================" echo "================================="
@ -574,8 +600,16 @@ echo "start ${gamename} server while already running."
echo "Command: ./jc2server start" echo "Command: ./jc2server start"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_start.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_start.sh
)
fn_test_result_fail fn_test_result_fail
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "3.3 - start - updateonstart" echo "3.3 - start - updateonstart"
@ -585,8 +619,16 @@ echo "will update server on start."
echo "Command: ./jc2server start" echo "Command: ./jc2server start"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(updateonstart="on";command_start.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
updateonstart="on";command_start.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "3.4 - stop" echo "3.4 - stop"
@ -596,8 +638,16 @@ echo "stop ${gamename} server."
echo "Command: ./jc2server stop" echo "Command: ./jc2server stop"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_stop.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_stop.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "3.5 - stop - offline" echo "3.5 - stop - offline"
@ -607,8 +657,16 @@ echo "stop ${gamename} server while already stopped."
echo "Command: ./jc2server stop" echo "Command: ./jc2server stop"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(command_stop.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_stop.sh
)
fn_test_result_fail fn_test_result_fail
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "3.6 - restart" echo "3.6 - restart"
@ -618,8 +676,16 @@ echo "restart ${gamename}."
echo "Command: ./jc2server restart" echo "Command: ./jc2server restart"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_restart.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_restart.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "3.7 - restart - offline" echo "3.7 - restart - offline"
@ -629,8 +695,16 @@ echo "restart ${gamename} while already stopped."
echo "Command: ./jc2server restart" echo "Command: ./jc2server restart"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(command_restart.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_restart.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "4.1 - update" echo "4.1 - update"
echo "=================================" echo "================================="
@ -639,8 +713,16 @@ echo "check for updates."
echo "Command: ./jc2server update" echo "Command: ./jc2server update"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(command_update.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_update.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "4.2 - update - change buildid" echo "4.2 - update - change buildid"
@ -652,8 +734,16 @@ requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
fn_print_info_nl "changed buildid to 0." fn_print_info_nl "changed buildid to 0."
sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf"
(command_update.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_update.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "4.3 - update - change buildid - online" echo "4.3 - update - change buildid - online"
@ -665,8 +755,16 @@ requiredstatus="ONLINE"
fn_setstatus fn_setstatus
fn_print_info_nl "changed buildid to 0." fn_print_info_nl "changed buildid to 0."
sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf" sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf"
(command_update.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_update.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "4.4 - update - remove appmanifest file" echo "4.4 - update - remove appmanifest file"
@ -678,8 +776,16 @@ requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
fn_print_info_nl "removed appmanifest_${appid}.acf." fn_print_info_nl "removed appmanifest_${appid}.acf."
rm --verbose "${serverfiles}/steamapps/appmanifest_${appid}.acf" rm --verbose "${serverfiles}/steamapps/appmanifest_${appid}.acf"
(command_update.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_update.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "4.5 - force-update" echo "4.5 - force-update"
@ -689,8 +795,16 @@ echo "force-update bypassing update check."
echo "Command: ./jc2server force-update" echo "Command: ./jc2server force-update"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(forceupdate=1;command_update.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
forceupdate=1;command_update.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "4.6 - force-update - online" echo "4.6 - force-update - online"
@ -700,8 +814,16 @@ echo "force-update bypassing update check server while already running."
echo "Command: ./jc2server force-update" echo "Command: ./jc2server force-update"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(forceupdate=1;command_update.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
forceupdate=1;command_update.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "4.7 - validate" echo "4.7 - validate"
@ -711,8 +833,16 @@ echo "validate server files."
echo "Command: ./jc2server validate" echo "Command: ./jc2server validate"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(command_validate.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_validate.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "4.8 - validate - online" echo "4.8 - validate - online"
@ -723,8 +853,16 @@ echo ""
echo "Command: ./jc2server validate" echo "Command: ./jc2server validate"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_validate.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_validate.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "Inserting IP address" echo "Inserting IP address"
@ -744,8 +882,16 @@ echo "run monitor server while already running."
echo "Command: ./jc2server monitor" echo "Command: ./jc2server monitor"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_monitor.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_monitor.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "5.2 - monitor - offline - with lockfile" echo "5.2 - monitor - offline - with lockfile"
@ -757,8 +903,16 @@ requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
fn_print_info_nl "creating lockfile." fn_print_info_nl "creating lockfile."
date > "${rootdir}/${lockselfname}" date > "${rootdir}/${lockselfname}"
(command_monitor.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_monitor.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "5.3 - monitor - offline - no lockfile" echo "5.3 - monitor - offline - no lockfile"
@ -768,8 +922,16 @@ echo "run monitor while server is offline with no lockfile."
echo "Command: ./jc2server monitor" echo "Command: ./jc2server monitor"
requiredstatus="OFFLINE" requiredstatus="OFFLINE"
fn_setstatus fn_setstatus
(command_monitor.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_monitor.sh
)
fn_test_result_fail fn_test_result_fail
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "5.4 - monitor - gsquery.py failure" echo "5.4 - monitor - gsquery.py failure"
@ -781,8 +943,17 @@ requiredstatus="ONLINE"
fn_setstatus fn_setstatus
cp "${servercfgfullpath}" "config.lua" cp "${servercfgfullpath}" "config.lua"
sed -i 's/[0-9]\+/0/' "${servercfgfullpath}" sed -i 's/[0-9]\+/0/' "${servercfgfullpath}"
(command_monitor.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_monitor.sh
)
fn_test_result_fail fn_test_result_fail
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
fn_print_info_nl "Re-generating ${servercfg}." fn_print_info_nl "Re-generating ${servercfg}."
cp -v "config.lua" "${servercfgfullpath}" cp -v "config.lua" "${servercfgfullpath}"
@ -796,8 +967,16 @@ echo "display details."
echo "Command: ./jc2server details" echo "Command: ./jc2server details"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_details.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_details.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "6.1 - post details" echo "6.1 - post details"
@ -807,8 +986,16 @@ echo "post details."
echo "Command: ./jc2server postdetails" echo "Command: ./jc2server postdetails"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_postdetails.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_postdetails.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "7.0 - backup" echo "7.0 - backup"
@ -821,6 +1008,9 @@ fn_setstatus
echo "test de-activated until issue #1839 fixed" echo "test de-activated until issue #1839 fixed"
#(command_backup.sh) #(command_backup.sh)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "8.0 - dev - detect glibc" echo "8.0 - dev - detect glibc"
@ -830,8 +1020,16 @@ echo "detect glibc."
echo "Command: ./jc2server detect-glibc" echo "Command: ./jc2server detect-glibc"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_dev_detect_glibc.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_dev_detect_glibc.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "8.1 - dev - detect ldd" echo "8.1 - dev - detect ldd"
@ -841,8 +1039,16 @@ echo "detect ldd."
echo "Command: ./jc2server detect-ldd" echo "Command: ./jc2server detect-ldd"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_dev_detect_ldd.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_dev_detect_ldd.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "8.2 - dev - detect deps" echo "8.2 - dev - detect deps"
@ -852,8 +1058,16 @@ echo "detect dependencies."
echo "Command: ./jc2server detect-deps" echo "Command: ./jc2server detect-deps"
requiredstatus="ONLINE" requiredstatus="ONLINE"
fn_setstatus fn_setstatus
(command_dev_detect_deps.sh) (
exec 5>"${TRAVIS_BUILD_DIR}/dev-debug.log"
BASH_XTRACEFD="5"
set -x
command_dev_detect_deps.sh
)
fn_test_result_pass fn_test_result_pass
echo "run order"
echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log"| sed 's/functionfile=//g'
echo "" echo ""
echo "=================================" echo "================================="

Loading…
Cancel
Save