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.
358 lines
7.5 KiB
358 lines
7.5 KiB
#!/bin/bash
|
|
# TravisCI Tests
|
|
# Server Management Script
|
|
# Author: Daniel Gibbs
|
|
# Website: http://gameservermanagers.com
|
|
version="071115"
|
|
|
|
#### Variables ####
|
|
|
|
# Notification Email
|
|
# (on|off)
|
|
emailnotification="on"
|
|
email="[email protected]"
|
|
|
|
# Start Variables
|
|
updateonstart="off"
|
|
|
|
# Server Details
|
|
gamename="Teamspeak 3"
|
|
servername="Teamspeak 3 Server"
|
|
servicename="ts3-server"
|
|
|
|
# Directories
|
|
rootdir="$(dirname $(readlink -f "${BASH_SOURCE[0]}"))"
|
|
selfname=$(basename $(readlink -f "${BASH_SOURCE[0]}"))
|
|
lockselfname=".${servicename}.lock"
|
|
filesdir="${rootdir}/serverfiles"
|
|
systemdir="${filesdir}"
|
|
executabledir="${filesdir}"
|
|
executable="./ts3server_startscript.sh"
|
|
servercfg="${servicename}.ini"
|
|
servercfgdir="${filesdir}"
|
|
servercfgfullpath="${servercfgdir}/${servercfg}"
|
|
backupdir="${rootdir}/backups"
|
|
|
|
# Logging
|
|
logdays="7"
|
|
gamelogdir="${filesdir}/logs"
|
|
scriptlogdir="${rootdir}/log/script"
|
|
|
|
scriptlog="${scriptlogdir}/${servicename}-script.log"
|
|
emaillog="${scriptlogdir}/${servicename}-email.log"
|
|
|
|
scriptlogdate="${scriptlogdir}/${servicename}-script-$(date '+%d-%m-%Y-%H-%M-%S').log"
|
|
|
|
##### Script #####
|
|
# Do not edit
|
|
|
|
fn_runfunction(){
|
|
# Functions are downloaded and run with this function
|
|
if [ ! -f "${rootdir}/functions/${functionfile}" ]; then
|
|
cd "${rootdir}"
|
|
if [ ! -d "functions" ]; then
|
|
mkdir functions
|
|
fi
|
|
cd functions
|
|
echo -e " loading ${functionfile}...\c"
|
|
wget -N /dev/null https://raw.githubusercontent.com/dgibbs64/linuxgsm/master/functions/${functionfile} 2>&1 | grep -F HTTP | cut -c45-
|
|
chmod +x "${functionfile}"
|
|
cd "${rootdir}"
|
|
fi
|
|
source "${rootdir}/functions/${functionfile}"
|
|
}
|
|
|
|
fn_functions(){
|
|
# Functions are defined in fn_functions.
|
|
functionfile="${FUNCNAME}"
|
|
fn_runfunction
|
|
}
|
|
|
|
fn_functions
|
|
|
|
fn_currentstatus_tmux(){
|
|
pid=$(tmux list-sessions 2>&1 | awk '{print $1}' | grep -Ec "^${servicename}:")
|
|
if [ "${pid}" != "0" ]; then
|
|
currentstatus="ONLINE"
|
|
else
|
|
currentstatus="OFFLINE"
|
|
fi
|
|
}
|
|
|
|
fn_currentstatus_ts3(){
|
|
ts3status=$(${executable} status servercfgfullpathfile=${servercfgfullpath})
|
|
|
|
if [ "${ts3status}" == "Server is running" ]; then
|
|
currentstatus="ONLINE"
|
|
else
|
|
currentstatus="OFFLINE"
|
|
fi
|
|
}
|
|
|
|
fn_setstatus(){
|
|
fn_currentstatus_ts3
|
|
echo""
|
|
echo "Required status: ${requiredstatus}"
|
|
counter=0
|
|
echo "Current status: ${currentstatus}"
|
|
while [ "${requiredstatus}" != "${currentstatus}" ]; do
|
|
counter=$((counter+1))
|
|
fn_currentstatus_ts3
|
|
echo -ne "New status: ${currentstatus}\\r"
|
|
|
|
if [ "${requiredstatus}" == "ONLINE" ]; then
|
|
(command_start.sh)
|
|
else
|
|
(command_stop.sh)
|
|
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
|
|
}
|
|
|
|
echo "================================="
|
|
echo "TravisCI Tests"
|
|
echo "Linux Game Server Manager"
|
|
echo "by Daniel Gibbs"
|
|
echo "http://gameservermanagers.com"
|
|
echo "================================="
|
|
echo ""
|
|
sleep 1
|
|
echo "================================="
|
|
echo "Server Tests"
|
|
echo "Using: ${gamename}"
|
|
echo "================================="
|
|
echo ""
|
|
sleep 1
|
|
|
|
|
|
|
|
echo "1.0 - start - no files"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "test script reaction to missing server files."
|
|
echo ""
|
|
(command_start.sh)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "1.1 - getopt"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "displaying options messages."
|
|
echo ""
|
|
(fn_getopt)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
|
|
|
|
|
|
echo "2.0 - install"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "install ${gamename} server."
|
|
fn_autoinstall
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
|
|
|
|
|
|
echo "3.1 - start"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "start ${gamename} server."
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
command_start.sh
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "3.2 - start - online"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "start ${gamename} server while already running."
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_start.sh)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "3.3 - start - updateonstart"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "will update server on start."
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(
|
|
updateonstart="on"
|
|
command_start.sh
|
|
)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "3.4 - stop"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "stop ${gamename} server."
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
command_stop.sh
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "3.5 - stop - offline"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "stop ${gamename} server while already stopped."
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_stop.sh)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "3.6 - restart"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "restart ${gamename}."
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
fn_restart
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "3.7 - restart - offline"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "restart ${gamename} while already stopped."
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
fn_restart
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
|
|
|
|
|
|
echo "4.1 - update"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "check for updates."
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
update_check.sh
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "4.1 - update - old version"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "change the version number tricking LGSM to update."
|
|
requiredstatus="OFFLINE"
|
|
sed -i 's/[0-9]\+/0/g' ${gamelogdir}/ts3server*_0.log
|
|
fn_setstatus
|
|
update_check.sh
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
|
|
echo "5.1 - monitor - online"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "run monitor server while already running."
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
(command_monitor.sh)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "5.2 - monitor - offline - no lockfile"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "run monitor while server is offline with no lockfile."
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
(command_monitor.sh)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "5.3 - monitor - offline - with lockfile"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "run monitor while server is offline with no lockfile."
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
fn_printinfonl "creating lockfile."
|
|
date > "${rootdir}/${lockselfname}"
|
|
(command_monitor.sh)
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
echo "5.4 - monitor - gsquery.py failure"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "gsquery.py will fail to query port."
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
sed -i 's/[0-9]\+/0/' "${servercfgfullpath}"
|
|
(command_monitor.sh)
|
|
echo ""
|
|
fn_printinfonl "Reseting ${servercfg}."
|
|
install_config.sh
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
|
|
|
|
|
|
echo "6.0 - details"
|
|
echo "================================="
|
|
echo "Description:"
|
|
echo "display details."
|
|
requiredstatus="ONLINE"
|
|
fn_setstatus
|
|
command_details.sh
|
|
echo ""
|
|
echo "Test complete!"
|
|
sleep 1
|
|
echo ""
|
|
|
|
echo "================================="
|
|
echo "Server Tests - Complete!"
|
|
echo "Using: ${gamename}"
|
|
echo "================================="
|
|
echo ""
|
|
requiredstatus="OFFLINE"
|
|
fn_setstatus
|
|
sleep 1
|
|
fn_printinfo "Tidying up directories."
|
|
sleep 1
|
|
rm -rfv ${serverfiles}
|
|
echo "END"
|