aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/repo-install-test/run-inside-docker.sh
diff options
context:
space:
mode:
authorOliver Smith <osmith@sysmocom.de>2020-05-26 14:53:31 +0200
committerOliver Smith <osmith@sysmocom.de>2020-05-26 15:02:47 +0200
commit2601ffcc00ba1458c07991f9187bfef265af2e63 (patch)
treefa0c833a18aed6a8b633d1f1d131f41ff08c3ac4 /scripts/repo-install-test/run-inside-docker.sh
parent7cb8e2d05cbcac4f414bc920a153d3545133be81 (diff)
repo-install-test: move from docker-playground
Prepare the repo-install-test to be extended to cover centos8 as well. Move the scripts to osmo-ci.git first, so we can mount them as shared files into the docker containers from here. Move files without any changes. Integration will be done in a follow-up commit, so we have a clean git log. debian-repo-install-test/jenkins.sh => scripts/repo-install-test.sh debian-repo-install-test/testdata/blacklist.txt => scripts/repo-install-test/blacklist.txt debian-repo-install-test/testdata/repo-install-test.sh => scripts/repo-install-test/run-inside-docker.sh Related: OS#4563 Related: If93f37e8d46597a9abc67a4529be9addd65780f5 (docker-playground) Change-Id: Ia678cc15e66630bd6b75b6c89bc75c1e27afd66c
Diffstat (limited to 'scripts/repo-install-test/run-inside-docker.sh')
-rwxr-xr-xscripts/repo-install-test/run-inside-docker.sh146
1 files changed, 146 insertions, 0 deletions
diff --git a/scripts/repo-install-test/run-inside-docker.sh b/scripts/repo-install-test/run-inside-docker.sh
new file mode 100755
index 0000000..63e1819
--- /dev/null
+++ b/scripts/repo-install-test/run-inside-docker.sh
@@ -0,0 +1,146 @@
+#!/bin/sh -ex
+
+# Systemd services that must start up successfully after installing all packages (OS#3369)
+# Disabled services:
+# * osmo-ctrl2cgi (missing config: /etc/osmocom/ctrl2cgi.ini, OS#4108)
+# * osmo-trap2cgi (missing config: /etc/osmocom/%N.ini, OS#4108)
+# * osmo-ggsn (no tun device in docker)
+SERVICES="
+ osmo-bsc
+ osmo-gbproxy
+ osmo-gtphub
+ osmo-hlr
+ osmo-mgw
+ osmo-msc
+ osmo-pcap-client
+ osmo-sip-connector
+ osmo-stp
+"
+# Services working in nightly, but not yet in latest
+# * osmo-pcap-server: service not included in osmo-pcap 0.0.11
+# * osmo-sgsn: conflicts with osmo-gtphub config in osmo-sgsn 1.4.0
+# * osmo-pcu: needs osmo-bts-virtual to start up properly
+# * osmo-hnbgw: tries to listen on 10.23.24.1 in osmo-iuh 0.4.0
+# * osmo-bts-virtual: unit id not matching osmo-bsc's config in osmo-bsc 1.4.0
+SERVICES_NIGHTLY="
+ osmo-pcap-server
+ osmo-sgsn
+ osmo-pcu
+ osmo-hnbgw
+ osmo-bts-virtual
+"
+
+HTTP="http://download.opensuse.org/repositories/network:/osmocom:/$FEED/Debian_9.0/"
+OBS="obs://build.opensuse.org/network:osmocom:$FEED/Debian_9.0"
+
+check_env() {
+ if [ -n "$FEED" ]; then
+ echo "Checking feed: $FEED"
+ else
+ echo "ERROR: missing environment variable \$FEED!"
+ exit 1
+ fi
+}
+
+configure_osmocom_repo() {
+ echo "Configuring Osmocom repository"
+ echo "deb $HTTP ./" \
+ > /etc/apt/sources.list.d/osmocom-latest.list
+ apt-get update
+}
+
+install_repo_packages() {
+ echo "Installing all repository packages"
+
+ # Get a list of all packages from the repository. Reference:
+ # https://www.debian.org/doc/manuals/aptitude/ch02s04s05.en.html
+ aptitude search -F%p \
+ "?origin($OBS) ?architecture(native)" | sort \
+ > /data/osmocom_packages_all.txt
+
+ # Remove comments from blacklist.txt (and sort it)
+ grep -v "^#" /testdata/blacklist.txt | sort -u > /data/blacklist.txt
+
+ # Install all repo packages which are not on the blacklist
+ comm -23 /data/osmocom_packages_all.txt \
+ /data/blacklist.txt > /data/osmocom_packages.txt
+ apt install -y $(cat /data/osmocom_packages.txt)
+}
+
+test_binaries_version() {
+ # Make sure --version runs and does not output UNKNOWN
+ failed=""
+ for program in $@; do
+ # Make sure it runs at all
+ $program --version
+
+ # Check for UNKNOWN
+ if $program --version | grep -q UNKNOWN; then
+ failed="$failed $program"
+ echo "ERROR: this program prints UNKNOWN in --version!"
+ fi
+ done
+
+ if [ -n "$failed" ]; then
+ echo "ERROR: the following program(s) print UNKNOWN in --version:"
+ echo "$failed"
+ return 1
+ fi
+}
+
+test_binaries() {
+ # Make sure that binares run at all and output a proper version
+ test_binaries_version \
+ osmo-bsc \
+ osmo-bts-trx \
+ osmo-bts-virtual \
+ osmo-gbproxy \
+ osmo-gtphub \
+ osmo-ggsn \
+ osmo-hlr \
+ osmo-hlr-db-tool \
+ osmo-hnbgw \
+ osmo-mgw \
+ osmo-msc \
+ osmo-pcu \
+ osmo-sgsn \
+ osmo-sip-connector \
+ osmo-stp \
+ osmo-trx-uhd \
+ osmo-trx-usrp1
+}
+
+services_check() {
+ local service
+ local services_feed="$SERVICES"
+ local failed=""
+
+ if [ "$FEED" = "nightly" ]; then
+ services_feed="$services_feed $SERVICES_NIGHTLY"
+ fi
+
+ systemctl start $services_feed
+ sleep 2
+
+ for service in $services_feed; do
+ if ! systemctl --no-pager -l -n 200 status $service; then
+ failed="$failed $service"
+ fi
+ done
+
+ systemctl stop $services_feed
+
+ if [ -n "$failed" ]; then
+ set +x
+ echo
+ echo "ERROR: services failed to start: $failed"
+ echo
+ exit 1
+ fi
+}
+
+check_env
+configure_osmocom_repo
+install_repo_packages
+test_binaries
+services_check