pcp/tests/Sanity/pcp-services/runtest.sh
Jan Kurik 7df44b0c3b Cleanup of gating tests
Removed all the obsolete Makefile's
rlFileSubmit commands now run only on RHEL
Cleanup of fixed paths in tests
   replaced with paths relative to pcp.env setting
Removed usage of deprecated egrep/fgrep
2022-12-15 15:42:06 +01:00

98 lines
3.2 KiB
Bash
Executable File

#!/bin/bash
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# runtest.sh of /tools/pcp/Sanity/pcp-services
# Description: Test of pcp services
# Author: Jan Kuřík <jkurik@redhat.com>
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
#
# Copyright (c) 2021 Red Hat, Inc.
#
# This program is free software: you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation, either version 2 of
# the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be
# useful, but WITHOUT ANY WARRANTY; without even the implied
# warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
# PURPOSE. See the GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see http://www.gnu.org/licenses/.
#
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
# Include Beaker environment
. /usr/share/beakerlib/beakerlib.sh || exit 1
PACKAGE="pcp"
PCPSERVICES="pmcd pmlogger pmproxy pmie"
TOUT="90" # Timeout to wait for a service to start / stop
function service_action() {
local service=$1
local status=$2
local ss=
local t=${TOUT}
rlRun -s "systemctl show -p ActiveState --no-pager ${service}" 0 \
"Check if ${service} service is in expected state"
# Wait for the service to get into a proper state
while [[ "${ss}" != "${status}" ]]; do
[[ $(( t-- )) -le 0 ]] && break
sleep 1
ss=$(sed -n 's/^ActiveState=//g p' < ${rlRun_LOG})
done
if [[ "${ss}" != "${status}" ]]; then
rlFail "The ${service} service is in unexpected state '${ss}'"
return 1
else
rlPass "${service} state is OK '${ss}'"
return 0
fi
}
rlJournalStart
rlPhaseStartSetup
rlAssertRpm $PACKAGE
rlServiceStart redis
rlRun "systemctl --no-pager stop ${PCPSERVICES}" 0-255
# First stop all the services in reverse order
for s in $(echo ${PCPSERVICES} | tr ' ' '\n' | tac | tr '\n' ' '); do
# All services should be stopped
service_action ${s} inactive
rlRun "killall --signal SIGTERM ${s}" 0-255
done
for s in $(echo ${PCPSERVICES} | tr ' ' '\n' | tac | tr '\n' ' '); do
rlRun "killall --signal SIGKILL ${s}" 0-255
done
rlPhaseEnd
rlPhaseStartTest
# Start all the services
for s in ${PCPSERVICES}; do
# Start a service and check it runs
rlRun "systemctl start --no-pager ${s}"
service_action ${s} active
done
# Stop all the services in reverse order
for s in $(echo ${PCPSERVICES} | tr ' ' '\n' | tac | tr '\n' ' '); do
# Stop a service and check it is stopped
rlRun "systemctl stop --no-pager ${s}"
service_action ${s} inactive
done
rlPhaseEnd
rlPhaseStartCleanup
rlServiceRestore
rlPhaseEnd
rlJournalPrintText
rlJournalEnd