Browse Source

feat(travis-ci): Add support for Minecraft test to travis-ci (#2287)

* feat(travis-ci): add minecraft test

* update MIT Licence date

* feat(travis): depricate travis-ci shellcheck

* removed bash from travis as reverting to trusty

* fix(mcserver): eula now correctly alteres to true

* fix(update): correct mcserver timed loop

* travis-ci now uses ens interface instead of eth

* added internet IP next to query raw
pull/2293/head
Daniel Gibbs 6 years ago
committed by GitHub
parent
commit
11547a3c82
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 8
      .travis.yml
  2. 5
      lgsm/functions/update_minecraft.sh
  3. 2
      linuxgsm.sh
  4. 12
      tests/tests_fctrserver.sh
  5. 10
      tests/tests_jc2server.sh
  6. 1043
      tests/tests_mcserver.sh
  7. 2
      tests/tests_shellcheck.sh
  8. 12
      tests/tests_ts3server.sh

8
.travis.yml

@ -1,4 +1,4 @@
language: bash node_js
language: node_js
dist: xenial
node_js:
- 10
@ -40,6 +40,8 @@ jobs:
- # stage name not required
script: bash tests/tests_fctrserver.sh
- # stage name not required
script: bash tests/tests_ts3server.sh
script: bash tests/tests_mcserver.sh
- # stage name not required
script: bash tests/tests_shellcheck.sh
script: bash tests/tests_ts3server.sh
- # retired as codacy does this check.
# script: bash tests/tests_shellcheck.sh

5
lgsm/functions/update_minecraft.sh

@ -74,16 +74,15 @@ fn_update_minecraft_localbuild(){
if [ -z "${localbuild}" ]; then
# Gives time for var to generate.
end="$(SECONDS+120)"
totalseconds=0
while [ "${SECONDS}" -lt "${end}" ]; do
for seconds in {1..120}; do
fn_print_info "Checking for update: ${remotelocation}: checking local build: waiting for local build: ${totalseconds}"
if [ -z "${loopignore}" ]; then
loopignore=1
fn_script_log_info "Waiting for local build to generate"
fi
localbuild=$(cat "${serverfiles}/logs/latest.log" 2> /dev/null | grep version | grep -Eo '((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}' | grep -Eo "TeamSpeak 3 Server ((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}" | grep -Eo "((\.)?[0-9]{1,3}){1,3}\.[0-9]{1,3}")
if [ "${localbuild}" ]; then
if [ "${localbuild}" ]||[ "${seconds}" == "120" ]; then
break
fi
sleep 1

2
linuxgsm.sh

@ -1,7 +1,7 @@
#!/bin/bash
# Project: Game Server Managers - LinuxGSM
# Author: Daniel Gibbs
# License: MIT License, Copyright (c) 2017 Daniel Gibbs
# License: MIT License, Copyright (c) 2019 Daniel Gibbs
# Purpose: Linux Game Server Management Script
# Contributors: https://linuxgsm.com/contrib
# Documentation: https://docs.linuxgsm.com

12
tests/tests_fctrserver.sh

@ -1,7 +1,7 @@
#!/bin/bash
# Project: Game Server Managers - LinuxGSM
# Author: Daniel Gibbs
# License: MIT License, Copyright (c) 2017 Daniel Gibbs
# License: MIT License, Copyright (c) 2019 Daniel Gibbs
# Purpose: Travis CI Tests: Factorio | Linux Game Server Management Script
# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors
# Documentation: https://docs.linuxgsm.com/
@ -452,6 +452,14 @@ fn_test_result_fail(){
fi
}
# test result n/a
fn_test_result_na(){
echo "================================="
echo "Expected result: N/A"
echo "Actual result: N/A"
fn_print_fail_nl "TEST N/A"
}
echo "================================="
echo "Travis CI Tests"
echo "Linux Game Server Manager"
@ -570,7 +578,7 @@ echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log" | sed 's/functionfile=//g'
echo ""
echo "2.0 - Instalation"
echo "2.0 - Installation"
echo "=================================================================="
echo ""

10
tests/tests_jc2server.sh

@ -1,7 +1,7 @@
#!/bin/bash
# Project: Game Server Managers - LinuxGSM
# Author: Daniel Gibbs
# License: MIT License, Copyright (c) 2017 Daniel Gibbs
# License: MIT License, Copyright (c) 2019 Daniel Gibbs
# Purpose: Travis CI Tests: Just Cause 2 | Linux Game Server Management Script
# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors
# Documentation: https://docs.linuxgsm.com/
@ -578,7 +578,7 @@ echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log" | sed 's/functionfile=//g'
echo ""
echo "2.0 - Instalation"
echo "2.0 - Installation"
echo "=================================================================="
echo ""
@ -904,14 +904,18 @@ echo "================================="
echo "Description:"
echo "Inserting Travis IP in to config."
echo "Allows monitor to work"
if [ "$(ip -o -4 addr|grep eth0)" ]; then
travisip=$(ip -o -4 addr | grep eth0 | awk '{print $4}' | grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}' | grep -v 127.0.0)
else
travisip=$(ip -o -4 addr | grep ens | awk '{print $4}' | grep -oe '\([0-9]\{1,3\}\.\?\)\{4\}' | sort -u | grep -v 127.0.0)
fi
sed -i "/BindIP/c\BindIP = \"${travisip}\"," "${serverfiles}/config.lua"
echo "IP: ${travisip}"
echo ""
echo "5.0 - Monitor Tests"
echo "=================================================================="
info_config.sh
echo ""
echo "Server IP - Port: ${ip}:${port}"
echo "Server IP - Query Port: ${ip}:${queryport}"

1043
tests/tests_mcserver.sh

File diff suppressed because it is too large

2
tests/tests_shellcheck.sh

@ -1,7 +1,7 @@
#!/bin/bash
# Project: Game Server Managers - LinuxGSM
# Author: Daniel Gibbs
# License: MIT License, Copyright (c) 2017 Daniel Gibbs
# License: MIT License, Copyright (c) 2019 Daniel Gibbs
# Purpose: Travis CI Tests: Shellcheck | Linux Game Server Management Script
# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors
# Documentation: https://docs.linuxgsm.com/

12
tests/tests_ts3server.sh

@ -1,7 +1,7 @@
#!/bin/bash
# Project: Game Server Managers - LinuxGSM
# Author: Daniel Gibbs
# License: MIT License, Copyright (c) 2017 Daniel Gibbs
# License: MIT License, Copyright (c) 2019 Daniel Gibbs
# Purpose: Travis CI Tests: Teamspeak 3 | Linux Game Server Management Script
# Contributors: https://github.com/GameServerManagers/LinuxGSM/graphs/contributors
# Documentation: https://docs.linuxgsm.com/
@ -452,6 +452,14 @@ fn_test_result_fail(){
fi
}
# test result n/a
fn_test_result_na(){
echo "================================="
echo "Expected result: N/A"
echo "Actual result: N/A"
fn_print_fail_nl "TEST N/A"
}
echo "================================="
echo "Travis CI Tests"
echo "Linux Game Server Manager"
@ -570,7 +578,7 @@ echo "================="
grep functionfile= "${TRAVIS_BUILD_DIR}/dev-debug.log" | sed 's/functionfile=//g'
echo ""
echo "2.0 - Instalation"
echo "2.0 - Installation"
echo "=================================================================="
echo ""

Loading…
Cancel
Save