gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
599 lines
14 KiB
599 lines
14 KiB
#!/bin/bash
|
|
# Just Cause 2
|
|
# Project: Game Server Managers - LinuxGSM
|
|
# Author: Daniel Gibbs
|
|
# License: MIT License, Copyright (c) 2017 Daniel Gibbs
|
|
# Purpose: TravisCI Test: Just Cause 2 | Server Management Script
|
|
# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors
|
|
# Documentation: https://github.com/GameServerManagers/LinuxGSM/wiki
|
|
# Website: https://gameservermanagers.com
|
|
|
|
travistest=1
|
|
|
|
# Debugging
|
|
if [ -f ".dev-debug" ]; then
|
|
exec 5>dev-debug.log
|
|
BASH_XTRACEFD="5"
|
|
set -x
|
|
fi
|
|
|
|
version="170501"
|
|
|
|
##########################
|
|
######## Settings ########
|
|
##########################
|
|
|
|
## Server Start Command | https://github.com/GameServerManagers/LinuxGSM/wiki/Start-Parameters#additional-parameters
|
|
fn_parms(){
|
|
parms=""
|
|
}
|
|
|
|
#### LinuxGSM Settings ####
|
|
|
|
## Notification Alerts
|
|
# (on|off)
|
|
# Email Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Email
|
|
emailalert="off"
|
|
email="[email protected]"
|
|
emailfrom=""
|
|
|
|
# Pushbullet Alerts | https://github.com/GameServerManagers/LinuxGSM/wiki/Pushbullet
|
|
pushbulletalert="off"
|
|
pushbullettoken="accesstoken"
|
|
channeltag=""
|
|
|
|
## Updating | https://github.com/GameServerManagers/LinuxGSM/wiki/Update
|
|
updateonstart="off"
|
|
|
|
## Backup | https://github.com/GameServerManagers/LinuxGSM/wiki/Backup
|
|
maxbackups="4"
|
|
maxbackupdays="30"
|
|
stoponbackup="on"
|
|
|
|
## Logging | https://github.com/GameServerManagers/LinuxGSM/wiki/Logging
|
|
consolelogging="on"
|
|
logdays="7"
|
|
|
|
#### LinuxGSM Advanced Settings ####
|
|
|
|
## SteamCMD Settings
|
|
# Server appid
|
|
appid="261140"
|
|
# Steam App Branch Select
|
|
# Allows to opt into the various Steam app branches. Default branch is "".
|
|
# Example: "-beta latest_experimental"
|
|
branch=""
|
|
|
|
## Github Branch Select
|
|
# Allows for the use of different function files
|
|
# from a different repo and/or branch.
|
|
githubuser="GameServerManagers"
|
|
githubrepo="LinuxGSM"
|
|
githubbranch="$TRAVIS_BRANCH"
|
|
|
|
## LinuxGSM Server Details
|
|
# Do not edit
|
|
gamename="Just Cause 2"
|
|
engine="avalanche"
|
|
|
|
## Service Name | https://github.com/GameServerManagers/LinuxGSM/wiki/Multiple-Servers
|
|
servicename="jc2-server"
|
|
|
|
#### Directories ####
|
|
# Edit with care
|
|
|
|
## Server Specific Directories
|
|
systemdir="${serverfiles}"
|
|
executabledir="${serverfiles}"
|
|
executable="./Jcmp-Server"
|
|
servercfg="config.lua"
|
|
servercfgdefault="config.lua"
|
|
servercfgdir="${serverfiles}"
|
|
servercfgfullpath="${servercfgdir}/${servercfg}"
|
|
|
|
## Backup Directory
|
|
backupdir="${rootdir}/backups"
|
|
|
|
## Logging Directories
|
|
#gamelogdir="" # No server logs available
|
|
lgsmlogdir="${rootdir}/log/script"
|
|
consolelogdir="${rootdir}/log/console"
|
|
lgsmlog="${lgsmlogdir}/${servicename}-script.log"
|
|
consolelog="${consolelogdir}/${servicename}-console.log"
|
|
emaillog="${lgsmlogdir}/${servicename}-email.log"
|
|
|
|
## Logs Naming
|
|
lgsmlogdate="${lgsmlogdir}/${servicename}-script-$(date '+%Y-%m-%d-%H:%M:%S').log"
|
|
consolelogdate="${consolelogdir}/${servicename}-console-$(date '+%Y-%m-%d-%H:%M:%S').log"
|
|
|
|
########################
|
|
######## Script ########
|
|
###### Do not edit #####
|
|
########################
|
|
|
|
# Fetches core_dl for file downloads
|
|
fn_fetch_core_dl(){
|
|
github_file_url_dir="lgsm/functions"
|
|
github_file_url_name="${functionfile}"
|
|
filedir="${functionsdir}"
|
|
filename="${github_file_url_name}"
|
|
githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${github_file_url_dir}/${github_file_url_name}"
|
|
# If the file is missing, then download
|
|
if [ ! -f "${filedir}/${filename}" ]; then
|
|
if [ ! -d "${filedir}" ]; then
|
|
mkdir -p "${filedir}"
|
|
fi
|
|
echo -e " fetching ${filename}...\c"
|
|
# Check curl exists and use available path
|
|
curlpaths="$(command -v curl 2>/dev/null) $(which curl >/dev/null 2>&1) /usr/bin/curl /bin/curl /usr/sbin/curl /sbin/curl)"
|
|
for curlcmd in ${curlpaths}
|
|
do
|
|
if [ -x "${curlcmd}" ]; then
|
|
break
|
|
fi
|
|
done
|
|
# If curl exists download file
|
|
if [ "$(basename ${curlcmd})" == "curl" ]; then
|
|
curlfetch=$(${curlcmd} -s --fail -o "${filedir}/${filename}" "${githuburl}" 2>&1)
|
|
if [ $? -ne 0 ]; then
|
|
echo -e "\e[0;31mFAIL\e[0m\n"
|
|
echo "${curlfetch}"
|
|
echo -e "${githuburl}\n"
|
|
exit 1
|
|
else
|
|
echo -e "\e[0;32mOK\e[0m"
|
|
fi
|
|
else
|
|
echo -e "\e[0;31mFAIL\e[0m\n"
|
|
echo "Curl is not installed!"
|
|
echo -e ""
|
|
exit 1
|
|
fi
|
|
chmod +x "${filedir}/${filename}"
|
|
fi
|
|
source "${filedir}/${filename}"
|
|
}
|
|
|
|
core_dl.sh(){
|
|
# Functions are defined in core_functions.sh.
|
|
functionfile="${FUNCNAME}"
|
|
fn_fetch_core_dl
|
|
}
|
|
|
|
core_functions.sh(){
|
|
# Functions are defined in core_functions.sh.
|
|
functionfile="${FUNCNAME}"
|
|
fn_fetch_core_dl
|
|
}
|
|
|
|
# Prevent from running this script as root.
|
|
if [ "$(whoami)" = "root" ]; then
|
|
if [ ! -f "${functionsdir}/core_functions.sh" ]||[ ! -f "${functionsdir}/check_root.sh" ]||[ ! -f "${functionsdir}/core_messages.sh" ]||[ ! -f "${functionsdir}/core_exit.sh" ]; then
|
|
echo "[ FAIL ] Do NOT run this script as root!"
|
|
exit 1
|
|
else
|
|
core_functions.sh
|
|
check_root.sh
|
|
fi
|
|
fi
|
|
|
|
core_dl.sh
|
|
core_functions.sh
|
|
|
|
fn_currentstatus_tmux(){
|
|
check_status.sh
|
|
if [ "${status}" != "0" ]; then
|
|
currentstatus="ONLINE"
|
|
else
|
|
currentstatus="OFFLINE"
|
|
fi
|
|
}
|
|
|
|
fn_currentstatus_ts3(){
|
|
check_status.sh
|
|
if [ "${status}" != "0" ]; then
|
|
currentstatus="ONLINE"
|
|
else
|
|
currentstatus="OFFLINE"
|
|
fi
|
|
}
|
|
|
|
fn_setstatus(){
|
|
fn_currentstatus_tmux
|
|
echo""
|
|
echo "Required status: ${requiredstatus}"
|
|
counter=0
|
|
echo "Current status: ${currentstatus}"
|
|
while [ "${requiredstatus}" != "${currentstatus}" ]; do
|
|
counter=$((counter+1))
|
|
fn_currentstatus_tmux
|
|
echo -ne "New status: ${currentstatus}\\r"
|
|
|
|
if [ "${requiredstatus}" == "ONLINE" ]; then
|
|
(command_start.sh > /dev/null 2>&1)
|
|
else
|
|
(command_stop.sh > /dev/null 2>&1)
|
|
fi
|
|
if [ "${counter}" -gt "5" ]; then
|
|
currentstatus="FAIL"
|
|
echo "Current status: ${currentstatus}"
|
|
echo ""
|
|
echo "Unable to start or stop server."
|
|
exit 1
|
|
fi
|
|
done
|
|
echo -ne "New status: ${currentstatus}\\r"
|
|
echo -e "\n"
|
|
echo "Test starting:"
|
|
echo ""
|
|
sleep 0.5
|
|
}
|
|
|
|
# End of every test will expect the result to either pass or fail
|
|
# If the script does not do as intended the whole test will fail
|
|
# if excpecting a pass
|
|
fn_test_result_pass(){
|
|
if [ $? != 0 ]; then
|
|
echo "================================="
|
|
echo "Expected result: PASS"
|
|
echo "Actual result: FAIL"
|
|
fn_print_fail_nl "TEST FAILED"
|
|
exitcode=1
|
|
core_exit.sh
|
|
else
|
|
echo "================================="
|
|
echo "Expected result: PASS"
|
|
echo "Actual result: PASS"
|
|
fn_print_ok_nl "TEST PASSED"
|
|
echo ""
|
|
fi
|
|
}
|
|
|
|
# if excpecting a fail
|
|
fn_test_result_fail(){
|
|
if [ $? == 0 ]; then
|
|
echo "================================="
|
|
echo "Expected result: FAIL"
|
|
echo "Actual result: PASS"
|
|
fn_print_fail_nl "TEST FAILED"
|
|
exitcode=1
|
|
core_exit.sh
|
|
else
|
|
echo "================================="
|
|
echo "Expected result: FAIL"
|
|
echo "Actual result: FAIL"
|
|
fn_print_ok_nl "TEST PASSED"
|
|
echo ""
|
|
fi
|
|
}
|
|
|
|
echo "================================="
|
|
echo "TravisCI Tests"
|
|
echo "Linux Game Server Manager"
|
|
echo "by Daniel Gibbs"
|
|
echo "https://gameservermanagers.com"
|
|
echo "================================="
|
|
echo ""
|
|
echo "================================="
|
|
echo "Server Tests"
|
|
echo "Using: ${gamename}"
|
|
echo "Testing Branch: $TRAVIS_BRANCH"
|
|
echo "================================="
|
|
echo ""
|
|
|
|
echo "0.1 - Create log dir's"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "Create log dir's"
|
|
echo ""
|
|
(install_logs.sh)
|
|
|
|
|
|
echo "0.2 - Enable dev-debug"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "Enable dev-debug"
|
|
echo ""
|
|
(command_dev_debug.sh)
|
|
fn_test_result_pass
|
|
|
|
echo "1.0 - start - no files"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "test script reaction to missing server files."
|
|
echo "Command: ./jc2server start"
|
|
echo ""
|
|
(command_start.sh)
|
|
fn_test_result_fail
|
|
|
|
echo ""
|
|
echo "1.1 - getopt"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "displaying options messages."
|
|
echo "Command: ./jc2server"
|
|
echo ""
|
|
(core_getopt.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "1.2 - getopt with incorrect args"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "displaying options messages."
|
|
echo "Command: ./jc2server abc123"
|
|
echo ""
|
|
getopt="abc123"
|
|
(core_getopt.sh)
|
|
fn_test_result_fail
|
|
|
|
echo ""
|
|
echo "2.0 - install"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "install ${gamename} server."
|
|
echo "Command: ./jc2server auto-install"
|
|
(fn_autoinstall)
|
|
fn_test_result_pass
|
|
|
|
|
|
echo ""
|
|
echo "3.1 - start"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "start ${gamename} server."
|
|
echo "Command: ./jc2server start"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_start.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "3.2 - start - online"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "start ${gamename} server while already running."
|
|
echo "Command: ./jc2server start"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_start.sh)
|
|
fn_test_result_fail
|
|
|
|
echo ""
|
|
echo "3.3 - start - updateonstart"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "will update server on start."
|
|
echo "Command: ./jc2server start"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(updateonstart="on";command_start.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "3.4 - stop"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "stop ${gamename} server."
|
|
echo "Command: ./jc2server stop"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_stop.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "3.5 - stop - offline"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "stop ${gamename} server while already stopped."
|
|
echo "Command: ./jc2server stop"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_stop.sh)
|
|
fn_test_result_fail
|
|
|
|
echo ""
|
|
echo "3.6 - restart"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "restart ${gamename}."
|
|
echo "Command: ./jc2server restart"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_restart.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "3.7 - restart - offline"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "restart ${gamename} while already stopped."
|
|
echo "Command: ./jc2server restart"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_restart.sh)
|
|
fn_test_result_pass
|
|
|
|
echo "4.1 - update"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "check for updates."
|
|
echo "Command: ./jc2server update"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_update.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.2 - update - change buildid"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "change the buildid tricking SteamCMD to update."
|
|
echo "Command: ./jc2server update"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
fn_print_info_nl "changed buildid to 0."
|
|
sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf"
|
|
(command_update.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.3 - update - change buildid - online"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "change the buildid tricking SteamCMD to update server while already running."
|
|
echo "Command: ./jc2server update"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
fn_print_info_nl "changed buildid to 0."
|
|
sed -i 's/[0-9]\+/0/' "${serverfiles}/steamapps/appmanifest_${appid}.acf"
|
|
(command_update.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.4 - update - remove appmanifest file"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "removing appmanifest file will cause script to repair."
|
|
echo "Command: ./jc2server update"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
fn_print_info_nl "removed appmanifest_${appid}.acf."
|
|
rm --verbose "${serverfiles}/steamapps/appmanifest_${appid}.acf"
|
|
(command_update.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.5 - force-update"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "force-update bypassing update check."
|
|
echo "Command: ./jc2server force-update"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(forceupdate=1;command_update.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.6 - force-update - online"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "force-update bypassing update check server while already running."
|
|
echo "Command: ./jc2server force-update"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(forceupdate=1;command_update.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.7 - validate"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "validate server files."
|
|
echo "Command: ./jc2server validate"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_validate.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.8 - validate - online"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "validate server files while server already running."
|
|
echo ""
|
|
echo "Command: ./jc2server validate"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_validate.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "4.9 - update-functions"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "runs update-functions."
|
|
echo ""
|
|
echo "Command: ./jc2server update-functions"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_update_functions.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "5.1 - monitor - online"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "run monitor server while already running."
|
|
echo "Command: ./jc2server monitor"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_monitor.sh)
|
|
fn_test_result_pass
|
|
|
|
|
|
echo ""
|
|
echo "5.2 - monitor - offline - with lockfile"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "run monitor while server is offline with lockfile."
|
|
echo "Command: ./jc2server monitor"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
fn_print_info_nl "creating lockfile."
|
|
date > "${rootdir}/${lockselfname}"
|
|
(command_monitor.sh)
|
|
fn_test_result_pass
|
|
|
|
|
|
echo ""
|
|
echo "5.3 - monitor - offline - no lockfile"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "run monitor while server is offline with no lockfile."
|
|
echo "Command: ./jc2server monitor"
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_monitor.sh)
|
|
fn_test_result_fail
|
|
|
|
echo ""
|
|
echo "5.4 - monitor - gsquery.py failure"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "gsquery.py will fail to query port."
|
|
echo "Command: ./jc2server monitor"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
cp "${servercfgfullpath}" "config.lua"
|
|
sed -i 's/[0-9]\+/0/' "${servercfgfullpath}"
|
|
(command_monitor.sh)
|
|
fn_test_result_fail
|
|
echo ""
|
|
fn_print_info_nl "Re-generating ${servercfg}."
|
|
cp -v "config.lua" "${servercfgfullpath}"
|
|
echo "================================="
|
|
|
|
echo ""
|
|
echo "6.0 - details"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "display details."
|
|
echo "Command: ./jc2server details"
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_details.sh)
|
|
fn_test_result_pass
|
|
|
|
echo ""
|
|
echo "================================="
|
|
echo "Server Tests - Complete!"
|
|
echo "Using: ${gamename}"
|
|
echo "================================="
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
sleep 1
|
|
fn_print_info "Tidying up directories."
|
|
sleep 1
|
|
rm -rfv "${serverfiles}"
|
|
core_exit.sh
|
|
|