From f4fda417053923d4b4c5a5b1264332939c3a4e4b Mon Sep 17 00:00:00 2001 From: downtownallday Date: Wed, 10 Jun 2020 07:21:47 -0400 Subject: [PATCH] Output formatting changes --- .../system-setup/remote-nextcloud-docker.sh | 12 +++-------- tests/assets/system-setup/setup-funcs.sh | 20 +++++++++++++++---- tests/suites/_mail-functions.sh | 2 +- 3 files changed, 20 insertions(+), 14 deletions(-) diff --git a/tests/assets/system-setup/remote-nextcloud-docker.sh b/tests/assets/system-setup/remote-nextcloud-docker.sh index 07d91c0c..1d8d9401 100755 --- a/tests/assets/system-setup/remote-nextcloud-docker.sh +++ b/tests/assets/system-setup/remote-nextcloud-docker.sh @@ -61,7 +61,7 @@ before_miab_install() { # update package lists before installing anything H2 "apt-get update" - apt-get update || die "apt-get update failed!" + apt-get update -qq || die "apt-get update failed!" # install prerequisites H2 "QA prerequisites" @@ -99,23 +99,17 @@ before_miab_install() { } -debug_output_conf_files() { - dump_log "/etc/mailinabox.conf" - dump_log "/etc/nsd/nsd.conf" - dump_log "/etc/postfix/main.cf" -} - miab_install() { H1 "MIAB-LDAP INSTALL" if ! setup/start.sh; then H1 "OUTPUT OF SELECT FILES" dump_log "/var/log/syslog" 100 - debug_output_conf_files + dump_conf_files H2; H2 "End"; H2 die "setup/start.sh failed!" fi H1 "OUTPUT OF SELECT FILES" - debug_output_conf_files + dump_conf_files H2; H2 "End"; H2 } diff --git a/tests/assets/system-setup/setup-funcs.sh b/tests/assets/system-setup/setup-funcs.sh index 96f2d19d..7eb66b81 100755 --- a/tests/assets/system-setup/setup-funcs.sh +++ b/tests/assets/system-setup/setup-funcs.sh @@ -9,13 +9,19 @@ die() { H1() { local msg="$1" echo "----------------------------------------------" - echo " $msg" - echo "----------------------------------------------" + if [ ! -z "$msg" ]; then + echo " $msg" + echo "----------------------------------------------" + fi } H2() { local msg="$1" - echo "*** $msg ***" + if [ -z "$msg" ]; then + echo "***" + else + echo "*** $msg ***" + fi } dump_log() { @@ -25,7 +31,7 @@ dump_log() { echo "" echo "--------" echo -n "-------- $log_file" - if [ -z "$lines" ]; then + if [ ! -z "$lines" ]; then echo " (last $line lines)" else echo "" @@ -39,6 +45,12 @@ dump_log() { fi } +dump_conf_files() { + dump_log "/etc/mailinabox.conf" + dump_log "/etc/nsd/nsd.conf" + dump_log "/etc/postfix/main.cf" +} + install_qa_prerequisites() { # python3-dnspython: is used by the python scripts in 'tests' and is # not installed by setup diff --git a/tests/suites/_mail-functions.sh b/tests/suites/_mail-functions.sh index 302b240d..a9a64bca 100644 --- a/tests/suites/_mail-functions.sh +++ b/tests/suites/_mail-functions.sh @@ -113,7 +113,7 @@ detect_syslog_error() { let ec+=1 record "$F_DANGER[ERROR] $line$F_RESET" else - record "[ OK] $line" + record "[ OK] $line" fi done [ $ec -gt 0 ] && exit 0