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
This commit is contained in:
parent
3ac37a39fd
commit
7df44b0c3b
@ -1,65 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /CoreOS/pcp/Library/pcpcommon
|
|
||||||
# Description: Common functions for PCP tests
|
|
||||||
# Author: Milos Prchlik <mprchlik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2013 Red Hat, Inc. All rights reserved.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# 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, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/CoreOS/pcp/Library/pcpcommon
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) lib.sh Makefile runtest.sh
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Common functions for PCP tests" >> $(METADATA)
|
|
||||||
@echo "Provides: library(pcp/pcpcommon)" >> $(METADATA)
|
|
||||||
@echo "Type: Library" >> $(METADATA)
|
|
||||||
@echo "TestTime: 15m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: pcp pcp-testsuite" >> $(METADATA)
|
|
||||||
@echo "Releases: -RedHatEnterpriseLinux3 -RedHatEnterpriseLinux4 -RedHatEnterpriseLinuxClient5 -RedHatEnterpriseLinuxServer5" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -1,12 +1,11 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
#
|
#
|
||||||
# lib.sh of /CoreOS/pcp/Library/pcpcommon
|
|
||||||
# Description: Common functions for PCP tests
|
# Description: Common functions for PCP tests
|
||||||
# Author: Milos Prchlik <mprchlik@redhat.com>
|
# Author: Jan Kuřík <jkurik@redhat.com>
|
||||||
#
|
#
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
#
|
#
|
||||||
# Copyright (c) 2013 Red Hat, Inc. All rights reserved.
|
# Copyright (c) 2013-2022 Red Hat, Inc. All rights reserved.
|
||||||
#
|
#
|
||||||
# This copyrighted material is made available to anyone wishing
|
# This copyrighted material is made available to anyone wishing
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
# to use, modify, copy, or redistribute it subject to the terms
|
||||||
@ -28,7 +27,7 @@
|
|||||||
|
|
||||||
. /usr/share/beakerlib/beakerlib.sh
|
. /usr/share/beakerlib/beakerlib.sh
|
||||||
|
|
||||||
PACKAGES="pcp"
|
PACKAGE="pcp"
|
||||||
|
|
||||||
pcpcommon_TESTDIR="$(pwd)"
|
pcpcommon_TESTDIR="$(pwd)"
|
||||||
|
|
||||||
@ -40,12 +39,13 @@ done
|
|||||||
|
|
||||||
pcpcommon_PCP_VAR_DIR=${pcpcommon_PCP_VAR_DIR:-/var/lib/pcp}
|
pcpcommon_PCP_VAR_DIR=${pcpcommon_PCP_VAR_DIR:-/var/lib/pcp}
|
||||||
pcpcommon_PCP_PMDAS_DIR=${pcpcommon_PCP_PMDAS_DIR:-${pcpcommon_PCP_VAR_DIR}/pmdas}
|
pcpcommon_PCP_PMDAS_DIR=${pcpcommon_PCP_PMDAS_DIR:-${pcpcommon_PCP_VAR_DIR}/pmdas}
|
||||||
pcpcommon_PCP_PMCDCONF_PATH=${pcpcommon_PCP_PMCDCONF_PATH:-/etc/pcp/pmcd/pmcd.conf}
|
pcpcommon_PCP_ETC_DIR=${pcpcommon_PCP_ETC_DIR:-/etc}
|
||||||
|
pcpcommon_PCP_PMCDCONF_PATH=${pcpcommon_PCP_PMCDCONF_PATH:-/${pcpcommon_PCP_ETC_DIR}/pcp/pmcd/pmcd.conf}
|
||||||
pcpcommon_PCP_LOG_DIR=${pcpcommon_PCP_LOG_DIR:-/var/log/pcp}
|
pcpcommon_PCP_LOG_DIR=${pcpcommon_PCP_LOG_DIR:-/var/log/pcp}
|
||||||
pcpcommon_TESTSUITE_DIR=${pcpcommon_TESTSUITE_DIR:-${pcpcommon_PCP_VAR_DIR}/testsuite}
|
pcpcommon_TESTSUITE_DIR=${pcpcommon_TESTSUITE_DIR:-${pcpcommon_PCP_VAR_DIR}/testsuite}
|
||||||
pcpcommon_TESTSUITE_USER="${pcpcommon_TESTSUITE_USER:-pcpqa}"
|
pcpcommon_TESTSUITE_USER="${pcpcommon_TESTSUITE_USER:-pcpqa}"
|
||||||
pcpcommon_TESTSUITE_USER_HOME=$(getent passwd ${pcpcommon_TESTSUITE_USER} \
|
IFS=: read __x __x __x __x __x pcpcommon_TESTSUITE_USER_HOME __x \
|
||||||
| awk -F : '{print $6}')
|
< <(getent passwd ${pcpcommon_TESTSUITE_USER})
|
||||||
pcpcommon_TESTSUITE_USER_HOME="${pcpcommon_TESTSUITE_USER_HOME:-/home/${pcpcommon_TESTSUITE_USER}}"
|
pcpcommon_TESTSUITE_USER_HOME="${pcpcommon_TESTSUITE_USER_HOME:-/home/${pcpcommon_TESTSUITE_USER}}"
|
||||||
pcpcommon_REAL_TESTSUITE_USER="${pcpcommon_TESTSUITE_USER}"
|
pcpcommon_REAL_TESTSUITE_USER="${pcpcommon_TESTSUITE_USER}"
|
||||||
|
|
||||||
@ -63,8 +63,9 @@ function map_metric() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function _pcpcommon_pmda_bpftrace_setup() {
|
function _pcpcommon_pmda_bpftrace_setup() {
|
||||||
rlFileBackup --namespace pcpcommon_pcpqa "${pcpcommon_PCP_PMDAS_DIR}/bpftrace"
|
rlFileBackup --clean --missing-ok --namespace pcpcommon_pcpqa \
|
||||||
if rlIsRHEL '>8.2'; then
|
"${pcpcommon_PCP_PMDAS_DIR}/bpftrace"
|
||||||
|
if rlIsRHEL '>8.2' || rlIsFedora || rlIsCentOS; then
|
||||||
rlRun "sed -i \
|
rlRun "sed -i \
|
||||||
-e 's/^enabled =.*\$/enabled = true/g' \
|
-e 's/^enabled =.*\$/enabled = true/g' \
|
||||||
-e 's/^auth_enabled =.*\$/auth_enabled = false/g' \
|
-e 's/^auth_enabled =.*\$/auth_enabled = false/g' \
|
||||||
@ -76,6 +77,98 @@ function _pcpcommon_pmda_bpftrace_setup() {
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function _pcpcommon_apply_bl() {
|
||||||
|
local bl="${1}"
|
||||||
|
local tc
|
||||||
|
|
||||||
|
if [[ ! -r "${bl}" ]] ; then
|
||||||
|
rlLogDebug "No BL ${bl} found"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
rlLog "Applying BL $(basename ${bl})"
|
||||||
|
while read tc; do
|
||||||
|
rlRun "sed -i '/^${tc} /d' ${pcpcommon_TESTSUITE_DIR}/group"
|
||||||
|
done < "${bl}"
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
_pcpcommon_bl_applied=
|
||||||
|
function pcpcommon_testsuite_bl() {
|
||||||
|
local blfile="${1}"
|
||||||
|
local arch="$(arch)"
|
||||||
|
local id
|
||||||
|
local version_id
|
||||||
|
local major
|
||||||
|
local minor
|
||||||
|
local micro
|
||||||
|
local bl
|
||||||
|
local _blseq
|
||||||
|
local blseq
|
||||||
|
local libdir
|
||||||
|
|
||||||
|
if [[ -n "${blfile}" ]]; then
|
||||||
|
if [[ -d "${blfile}" ]]; then
|
||||||
|
# The BL is a directory with BL files
|
||||||
|
libdir="${blfile}"
|
||||||
|
elif [[ -r "${blfile}" ]]; then
|
||||||
|
# The BL is a file with already listed TC numbers to be removed
|
||||||
|
libdir=
|
||||||
|
else
|
||||||
|
# Unknown BL
|
||||||
|
rlLogWarn "Unknown ${blfile} when applying BL"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
libdir="$(readlink -f $(dirname ${BASH_SOURCE}))"
|
||||||
|
fi
|
||||||
|
|
||||||
|
rlRun "rlFileBackup --namespace bl '${pcpcommon_TESTSUITE_DIR}/group'"
|
||||||
|
_pcpcommon_bl_applied="Yes"
|
||||||
|
|
||||||
|
if [[ -n "${libdir}" ]]; then
|
||||||
|
# Get all the variables we need
|
||||||
|
read id version_id < <( \
|
||||||
|
. /etc/os-release && \
|
||||||
|
echo ${ID} ${VERSION_ID} || \
|
||||||
|
echo rhel 6.10 \
|
||||||
|
)
|
||||||
|
IFS='.,-_ ' read major minor micro <<< "${version_id}"
|
||||||
|
|
||||||
|
_blseq="${id} ${id}-${major}"
|
||||||
|
[[ -n "${minor}" ]] && _blseq="${_blseq} ${id}-${major}.${minor}"
|
||||||
|
[[ -n "${micro}" ]] && _blseq="${_blseq} ${id}-${major}.${minor}.${micro}"
|
||||||
|
|
||||||
|
IFS='.,-_ ' read major minor micro < <(rpm -q --qf '%{version}' ${PACKAGE})
|
||||||
|
_blseq="${_blseq} ${PACKAGE}"
|
||||||
|
[[ -n "${major}" ]] && _blseq="${_blseq} ${PACKAGE}-${major}"
|
||||||
|
[[ -n "${minor}" ]] && _blseq="${_blseq} ${PACKAGE}-${major}.${minor}"
|
||||||
|
[[ -n "${micro}" ]] && _blseq="${_blseq} ${PACKAGE}-${major}.${minor}.${micro}"
|
||||||
|
|
||||||
|
for bl in ${_blseq}; do
|
||||||
|
blseq="${blseq} ${bl} ${bl}.${arch}"
|
||||||
|
done
|
||||||
|
|
||||||
|
for bl in ${arch} ${blseq}; do
|
||||||
|
rlLogInfo "Looking for BL list ${bl}"
|
||||||
|
rlLogInfo " ... ${libdir}/bl/${bl}"
|
||||||
|
if [[ -r "${libdir}/bl/${bl}" ]]; then
|
||||||
|
apply_bl "${libdir}/bl/${bl}"
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
else
|
||||||
|
rlLogInfo "Applying BL list ${blfile}"
|
||||||
|
apply_bl "${blfile}" || return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
pcpcommon_testsuite_bl_restore() {
|
||||||
|
[[ -n "${_pcpcommon_bl_applied}" ]] && rlFileRestore --namespace bl
|
||||||
|
_pcpcommon_bl_applied=
|
||||||
|
}
|
||||||
|
|
||||||
pcpcommon_PCPQA_CREATED=
|
pcpcommon_PCPQA_CREATED=
|
||||||
pcpcommon_PCPQA_SETUP=
|
pcpcommon_PCPQA_SETUP=
|
||||||
function pcpcommon_testsuite_user() {
|
function pcpcommon_testsuite_user() {
|
||||||
@ -83,8 +176,8 @@ function pcpcommon_testsuite_user() {
|
|||||||
[[ -n "${pcpcommon_PCPQA_SETUP}" ]] && return 0
|
[[ -n "${pcpcommon_PCPQA_SETUP}" ]] && return 0
|
||||||
pcpcommon_PCPQA_SETUP="done"
|
pcpcommon_PCPQA_SETUP="done"
|
||||||
|
|
||||||
rlFileBackup --clean --namespace pcpcommon_pcpqa --missing-ok \
|
#rlFileBackup --clean --namespace pcpcommon_pcpqa --missing-ok \
|
||||||
"${pcpcommon_TESTSUITE_USER_HOME}"
|
# "${pcpcommon_TESTSUITE_USER_HOME}"
|
||||||
if ! rlRun "id ${pcpcommon_TESTSUITE_USER}" 0,1; then
|
if ! rlRun "id ${pcpcommon_TESTSUITE_USER}" 0,1; then
|
||||||
rlRun "useradd -d ${pcpcommon_TESTSUITE_USER_HOME} -m \
|
rlRun "useradd -d ${pcpcommon_TESTSUITE_USER_HOME} -m \
|
||||||
-s /bin/bash -U ${pcpcommon_TESTSUITE_USER}"
|
-s /bin/bash -U ${pcpcommon_TESTSUITE_USER}"
|
||||||
@ -200,9 +293,10 @@ function pcpcommon_log_system_info() {
|
|||||||
which nft &> /dev/null && \
|
which nft &> /dev/null && \
|
||||||
nft list ruleset &> ${pcpcommon_TMP}/nftables
|
nft list ruleset &> ${pcpcommon_TMP}/nftables
|
||||||
|
|
||||||
# Upload everything
|
if rlIsRHEL; then # Upload everything
|
||||||
tar czf ${pcpcommon_TAR} -C ${pcpcommon_TMP} $(cd ${pcpcommon_TMP} && ls -1)
|
tar czf ${pcpcommon_TAR} -C ${pcpcommon_TMP} $(cd ${pcpcommon_TMP} && ls -1)
|
||||||
rlFileSubmit "${pcpcommon_TAR}" "system.info.tar.gz"
|
rlFileSubmit "${pcpcommon_TAR}" "system.info.tar.gz"
|
||||||
|
fi
|
||||||
|
|
||||||
# Cleanup
|
# Cleanup
|
||||||
rm -rf ${pcpcommon_TMP} ${pcpcommon_TAR}
|
rm -rf ${pcpcommon_TMP} ${pcpcommon_TAR}
|
||||||
@ -219,30 +313,36 @@ function pcpcommon_test () {
|
|||||||
if rlRun "pushd ${pcpcommon_TESTSUITE_DIR}"; then
|
if rlRun "pushd ${pcpcommon_TESTSUITE_DIR}"; then
|
||||||
rlRun -s "su -l -s /bin/bash -c 'cd ${pcpcommon_TESTSUITE_DIR} && \
|
rlRun -s "su -l -s /bin/bash -c 'cd ${pcpcommon_TESTSUITE_DIR} && \
|
||||||
./check ${params}' ${pcpcommon_REAL_TESTSUITE_USER}"
|
./check ${params}' ${pcpcommon_REAL_TESTSUITE_USER}"
|
||||||
rlFileSubmit "${rlRun_LOG}" "check.log"
|
rlIsRHEL && rlFileSubmit "${rlRun_LOG}" "check.log"
|
||||||
local _test_results="${rlRun_LOG}"
|
local _test_results="${rlRun_LOG}"
|
||||||
|
|
||||||
if ! rlRun "egrep 'Passed all [[:digit:]]+ tests' ${_test_results}" 0 \
|
if ! rlRun "grep -E 'Passed (all)* *[[:digit:]]+ tests' ${_test_results}" 0 \
|
||||||
"Assert all testcases passed"; then
|
"Assert all testcases passed"; then
|
||||||
local _tmp_dir=$(mktemp -d)
|
local _tmp_dir=$(mktemp -d)
|
||||||
local _tmp_tar=$(mktemp /tmp/XXXXXXXX.tar.gz)
|
local _tmp_tar=$(mktemp /tmp/XXXXXXXX.tar.gz)
|
||||||
local failid
|
local failid
|
||||||
local failids="$(egrep 'Failures: ' ${_test_results} | cut -d' ' -f2-)"
|
local failids="$(grep -E 'Failures: ' ${_test_results} | cut -d' ' -f2-)"
|
||||||
|
|
||||||
if [[ -n "${failids}" ]]; then
|
if [[ -n "${failids}" ]]; then
|
||||||
for failid in ${failids}; do
|
if rlIsRHEL; then
|
||||||
rlFail "TC $failid failed"
|
for failid in ${failids}; do
|
||||||
rlRun "cp ${failid}.out ${_tmp_dir}/"
|
rlFail "TC $failid failed"
|
||||||
rlRun "cp ${failid}.out.bad ${_tmp_dir}/"
|
rlRun "cp ${failid}.out ${_tmp_dir}/"
|
||||||
done
|
rlRun "cp ${failid}.out.bad ${_tmp_dir}/"
|
||||||
tar czf ${_tmp_tar} -C ${_tmp_dir} $(cd ${_tmp_dir} && ls -1)
|
done
|
||||||
rlFileSubmit "${_tmp_tar}" "failed.tests.tar.gz"
|
tar czf ${_tmp_tar} -C ${_tmp_dir} $(cd ${_tmp_dir} && ls -1)
|
||||||
|
rlFileSubmit "${_tmp_tar}" "failed.tests.tar.gz"
|
||||||
|
else
|
||||||
|
for failid in ${failids}; do
|
||||||
|
rlFail "TC $failid failed"
|
||||||
|
done
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
rm -rf ${_tmp_tar} ${_tmp_dir}
|
rm -rf ${_tmp_tar} ${_tmp_dir}
|
||||||
ret=1
|
ret=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if rlRun -s "egrep 'Not run: [[:digit:]]+' ${_test_results}" 0,1; then
|
if rlRun -s "grep -E 'Not run: [[:digit:]]+' ${_test_results}" 0,1; then
|
||||||
rlLogWarning "$(cat ${rlRun_LOG})"
|
rlLogWarning "$(cat ${rlRun_LOG})"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
@ -255,6 +355,7 @@ function pcpcommon_test () {
|
|||||||
function pcpcommon_cleanup () {
|
function pcpcommon_cleanup () {
|
||||||
# Cleanup everything related to pcpqa
|
# Cleanup everything related to pcpqa
|
||||||
pcpcommon_testsuite_user_cleanup
|
pcpcommon_testsuite_user_cleanup
|
||||||
|
pcpcommon_testsuite_bl_restore
|
||||||
rlFileRestore --namespace pcpcommon_init
|
rlFileRestore --namespace pcpcommon_init
|
||||||
|
|
||||||
return $?
|
return $?
|
||||||
@ -301,7 +402,7 @@ function pcpcommon_pmda_install () {
|
|||||||
"${metrics}" || ret=1
|
"${metrics}" || ret=1
|
||||||
rlAssertNotGrep "Try again. Information not currently available" \
|
rlAssertNotGrep "Try again. Information not currently available" \
|
||||||
"${metrics}" || ret=1
|
"${metrics}" || ret=1
|
||||||
rlFileSubmit "${metrics}" "pmda.${pmda}.metrics.log"
|
rlIsRHEL && rlFileSubmit "${metrics}" "pmda.${pmda}.metrics.log"
|
||||||
fi
|
fi
|
||||||
rlRun "popd"
|
rlRun "popd"
|
||||||
else
|
else
|
||||||
@ -346,7 +447,7 @@ function pcpcommon_pmda_check_log () {
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
rlAssertNotGrep "${errstr}" ${logf} -Ei || result=1
|
rlAssertNotGrep "${errstr}" ${logf} -Ei || result=1
|
||||||
rlFileSubmit "${logf}"
|
rlIsRHEL && rlFileSubmit "${logf}"
|
||||||
|
|
||||||
return ${result}
|
return ${result}
|
||||||
}
|
}
|
||||||
@ -356,7 +457,7 @@ function pcpcommon_pmda_tests () {
|
|||||||
local addparam="$2"
|
local addparam="$2"
|
||||||
local testgroup="pmda.${pmda}"
|
local testgroup="pmda.${pmda}"
|
||||||
|
|
||||||
if rlRun "grep -q ${testgroup} ${pcpcommon_PCP_VAR_DIR}/testsuite/group" 0,1; then
|
if rlRun "grep -q ${testgroup} ${pcpcommon_TESTSUITE_DIR}/group" 0,1; then
|
||||||
pcpcommon_test "000 -g ${testgroup} ${addparam}"
|
pcpcommon_test "000 -g ${testgroup} ${addparam}"
|
||||||
pcpcommon_pmda_check_log ${pmda}
|
pcpcommon_pmda_check_log ${pmda}
|
||||||
else
|
else
|
||||||
|
@ -1,16 +0,0 @@
|
|||||||
summary: Common functions for PCP tests
|
|
||||||
contact:
|
|
||||||
- Jan Kuřík <jkurik@redhat.com>
|
|
||||||
component:
|
|
||||||
- pcp
|
|
||||||
test: ./runtest.sh
|
|
||||||
framework: beakerlib
|
|
||||||
recommend:
|
|
||||||
- pcp
|
|
||||||
- pcp-testsuite
|
|
||||||
duration: 15m
|
|
||||||
adjust:
|
|
||||||
- enabled: false
|
|
||||||
continue: false
|
|
||||||
extra-summary: /CoreOS/pcp/Library/pcpcommon
|
|
||||||
extra-task: /CoreOS/pcp/Library/pcpcommon
|
|
@ -1,55 +0,0 @@
|
|||||||
#!/bin/bash
|
|
||||||
# vim: dict+=/usr/share/beakerlib/dictionary.vim cpt=.,w,b,u,t,i,k
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# runtest.sh of /CoreOS/pcp/Library/pcpcommon
|
|
||||||
# Description: Common functions for PCP tests
|
|
||||||
# Author: Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2020 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
|
|
||||||
. ../../Library/pcpcommon/lib.sh || exit 1
|
|
||||||
|
|
||||||
PACKAGE="pcp"
|
|
||||||
|
|
||||||
rlJournalStart
|
|
||||||
rlPhaseStartTest
|
|
||||||
rlRun "pcpcommonLibraryLoaded"
|
|
||||||
|
|
||||||
rlServiceStart pmcd
|
|
||||||
rlServiceStart pmlogger
|
|
||||||
rlServiceStart pmproxy
|
|
||||||
rlServiceStart pmie
|
|
||||||
|
|
||||||
err=0
|
|
||||||
pmda=bash
|
|
||||||
rlRun "pcpcommon_test -g sanity" || err=1
|
|
||||||
rlRun "pcpcommon_pmda_install ${pmda}" || err=1
|
|
||||||
rlRun "pcpcommon_pmda_tests ${pmda}" || err=1
|
|
||||||
rlRun "pcpcommon_pmda_remove ${pmda}" || err=1
|
|
||||||
rlRun "pcpcommon_cleanup"
|
|
||||||
|
|
||||||
[[ ${err} -ne 0 ]] && \
|
|
||||||
rlRun "pcpcommon_log_system_info"
|
|
||||||
rlPhaseEnd
|
|
||||||
rlJournalPrintText
|
|
||||||
rlJournalEnd
|
|
@ -1,64 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /tools/pcp/Sanity/SASL-authentication-check
|
|
||||||
# Description: A basic test of SASL authentication
|
|
||||||
# Author: Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2020 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/.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/SASL-authentication-check
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: A basic test of SASL authentication" >> $(METADATA)
|
|
||||||
@echo "Type: Sanity" >> $(METADATA)
|
|
||||||
@echo "TestTime: 15m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: pcp cyrus-sasl-md5 cyrus-sasl-scram" >> $(METADATA)
|
|
||||||
@echo "Requires: cyrus-sasl-lib" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2+" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHEL6 -RHELClient5 -RHELServer5 -RHEL7" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -62,11 +62,13 @@ for HASH in ${HASHES}; do
|
|||||||
rlServiceStart "pmcd"
|
rlServiceStart "pmcd"
|
||||||
rlRun "sleep 3" 0 "Give pmcd some time to start"
|
rlRun "sleep 3" 0 "Give pmcd some time to start"
|
||||||
|
|
||||||
rlRun -s "pminfo -f -h 'pcp://127.0.0.1?username=${METRICUSER}&password=${METRICUSERPW}' disk.dev.read"
|
rlRun -s "pminfo -f -h \
|
||||||
rlFileSubmit "${rlRun_LOG}" "pminfo.output"
|
'pcp://127.0.0.1?username=${METRICUSER}&password=${METRICUSERPW}' \
|
||||||
|
disk.dev.read"
|
||||||
|
rlIsRHEL && rlFileSubmit "${rlRun_LOG}" "pminfo.output"
|
||||||
rlAssertNotGrep "user not found" "${rlRun_LOG}"
|
rlAssertNotGrep "user not found" "${rlRun_LOG}"
|
||||||
rlAssertGrep ".*inst .*value .*" "${rlRun_LOG}" -E
|
rlAssertGrep ".*inst .*value .*" "${rlRun_LOG}" -E
|
||||||
rlFileSubmit "/var/log/pcp/pmcd/pmcd.log"
|
rlIsRHEL && rlFileSubmit "/var/log/pcp/pmcd/pmcd.log"
|
||||||
rlPhaseEnd
|
rlPhaseEnd
|
||||||
|
|
||||||
done
|
done
|
||||||
|
@ -1,63 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /tools/pcp/Sanity/pcp-python-compliance
|
|
||||||
# Description: Check for a compliance with Fedora Packaging Guidelines
|
|
||||||
# Author: Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2020 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/.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/pcp-python-compliance
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Check for a compliance with Fedora Packaging Guidelines" >> $(METADATA)
|
|
||||||
@echo "Type: Sanity" >> $(METADATA)
|
|
||||||
@echo "TestTime: 15m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: python3-pcp python-pcp" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2+" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHELClient5 -RHELServer5" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -1,64 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile 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/.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/pcp-services
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Test for BZ#1944150 (Job for pmlogger.service failed because the)" >> $(METADATA)
|
|
||||||
@echo "Type: Regression" >> $(METADATA)
|
|
||||||
@echo "TestTime: 15m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: pcp pcp-zeroconf" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2+" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Bug: 1998491 1929556 1944150" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHEL6 -RHELClient5 -RHELServer5" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -1,4 +1,4 @@
|
|||||||
summary: Test for BZ#1944150 (Job for pmlogger.service failed because the)
|
summary: Test if PCP services are starting/stopping gracefully
|
||||||
description: |
|
description: |
|
||||||
Bug summary: Job for pmlogger.service failed because the service did not take the steps required by its unit configuration.
|
Bug summary: Job for pmlogger.service failed because the service did not take the steps required by its unit configuration.
|
||||||
Bugzilla link: https://bugzilla.redhat.com/show_bug.cgi?id=1944150
|
Bugzilla link: https://bugzilla.redhat.com/show_bug.cgi?id=1944150
|
||||||
@ -10,6 +10,7 @@ framework: beakerlib
|
|||||||
recommend:
|
recommend:
|
||||||
- pcp
|
- pcp
|
||||||
- pcp-zeroconf
|
- pcp-zeroconf
|
||||||
|
- redis
|
||||||
duration: 15m
|
duration: 15m
|
||||||
extra-summary: /tools/pcp/Sanity/pcp-services
|
extra-summary: /tools/pcp/Sanity/pcp-services
|
||||||
extra-task: /tools/pcp/Sanity/pcp-services
|
extra-task: /tools/pcp/Sanity/pcp-services
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||||
|
|
||||||
PACKAGE="pcp"
|
PACKAGE="pcp"
|
||||||
PCPSERVICES="pmlogger pmie pmproxy pmcd"
|
PCPSERVICES="pmcd pmlogger pmproxy pmie"
|
||||||
TOUT="90" # Timeout to wait for a service to start / stop
|
TOUT="90" # Timeout to wait for a service to start / stop
|
||||||
|
|
||||||
function service_action() {
|
function service_action() {
|
||||||
@ -59,20 +59,31 @@ function service_action() {
|
|||||||
rlJournalStart
|
rlJournalStart
|
||||||
rlPhaseStartSetup
|
rlPhaseStartSetup
|
||||||
rlAssertRpm $PACKAGE
|
rlAssertRpm $PACKAGE
|
||||||
|
rlServiceStart redis
|
||||||
rlRun "systemctl --no-pager stop ${PCPSERVICES}" 0-255
|
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
|
rlPhaseEnd
|
||||||
|
|
||||||
rlPhaseStartTest
|
rlPhaseStartTest
|
||||||
for s in ${PCPSERVICES}; do
|
# Start all the services
|
||||||
# All services should be stopped
|
|
||||||
service_action ${s} inactive
|
|
||||||
done
|
|
||||||
|
|
||||||
for s in ${PCPSERVICES}; do
|
for s in ${PCPSERVICES}; do
|
||||||
# Start a service and check it runs
|
# Start a service and check it runs
|
||||||
rlRun "systemctl start --no-pager ${s}"
|
rlRun "systemctl start --no-pager ${s}"
|
||||||
service_action ${s} active
|
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
|
# Stop a service and check it is stopped
|
||||||
rlRun "systemctl stop --no-pager ${s}"
|
rlRun "systemctl stop --no-pager ${s}"
|
||||||
service_action ${s} inactive
|
service_action ${s} inactive
|
||||||
@ -80,6 +91,7 @@ rlJournalStart
|
|||||||
rlPhaseEnd
|
rlPhaseEnd
|
||||||
|
|
||||||
rlPhaseStartCleanup
|
rlPhaseStartCleanup
|
||||||
|
rlServiceRestore
|
||||||
rlPhaseEnd
|
rlPhaseEnd
|
||||||
rlJournalPrintText
|
rlJournalPrintText
|
||||||
rlJournalEnd
|
rlJournalEnd
|
||||||
|
@ -1,72 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /tools/pcp/Sanity/pcp-testsuite-sanity
|
|
||||||
# Description: pcp testing by upstream testsuite
|
|
||||||
# Author: Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2018 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/.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/pcp-testsuite-sanity
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE bl
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: pcp testing by upstream testsuite" >> $(METADATA)
|
|
||||||
@echo "Type: Sanity" >> $(METADATA)
|
|
||||||
@echo "TestTime: 4h" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: pcp time" >> $(METADATA)
|
|
||||||
@echo "Requires: sudo procps-ng avahi bzip2 pcp-pmda-cisco" >> $(METADATA)
|
|
||||||
@echo "Requires: coreutils pcp-pmda-news perl-PCP-LogImport" >> $(METADATA)
|
|
||||||
@echo "Requires: perl-PCP-LogSummary python-pcp gcc" >> $(METADATA)
|
|
||||||
@echo "Requires: redhat-rpm-config perl-PCP-LogSummary" >> $(METADATA)
|
|
||||||
@echo "Requires: libuv libuv-devel" >> $(METADATA)
|
|
||||||
@echo "Requires: /usr/bin/netstat pcp-testsuite" >> $(METADATA)
|
|
||||||
#@echo "Requires: library(pcp/pcpcommon)" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2+" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHELClient5 -RHELServer5" >> $(METADATA)
|
|
||||||
@echo "Bug: 1760750" >> $(METADATA)
|
|
||||||
#@echo "RhtsRequires: library(pcp/pcpcommon)" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -27,5 +27,3 @@ recommend:
|
|||||||
- /usr/bin/netstat
|
- /usr/bin/netstat
|
||||||
- pcp-testsuite
|
- pcp-testsuite
|
||||||
duration: 4h
|
duration: 4h
|
||||||
extra-summary: /tools/pcp/Sanity/pcp-testsuite-sanity
|
|
||||||
extra-task: /tools/pcp/Sanity/pcp-testsuite-sanity
|
|
||||||
|
@ -8,7 +8,7 @@
|
|||||||
#
|
#
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||||||
#
|
#
|
||||||
# Copyright (c) 2018 Red Hat, Inc.
|
# Copyright (c) 2018-2022 Red Hat, Inc.
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or
|
# This program is free software: you can redistribute it and/or
|
||||||
# modify it under the terms of the GNU General Public License as
|
# modify it under the terms of the GNU General Public License as
|
||||||
@ -45,7 +45,7 @@ function apply_bl() {
|
|||||||
fi
|
fi
|
||||||
rlLog "Applying BL $(basename ${bl})"
|
rlLog "Applying BL $(basename ${bl})"
|
||||||
while read tc; do
|
while read tc; do
|
||||||
rlRun "sed -i '/^${tc} /d' /var/lib/pcp/testsuite/group"
|
rlRun "sed -i '/^${tc} /d' ${pcpcommon_TESTSUITE_DIR}/group"
|
||||||
done < "${bl}"
|
done < "${bl}"
|
||||||
|
|
||||||
return
|
return
|
||||||
@ -55,52 +55,13 @@ rlJournalStart
|
|||||||
rlPhaseStartSetup
|
rlPhaseStartSetup
|
||||||
rlShowRunningKernel
|
rlShowRunningKernel
|
||||||
rlAssertRpm "${PACKAGE}"
|
rlAssertRpm "${PACKAGE}"
|
||||||
rlFileBackup --clean --missing-ok /etc/pcp /etc/pcp.conf /etc/pcp.env \
|
|
||||||
/etc/sysconfig/pmcd /etc/sysconfig/pmie_timers /etc/sysconfig/pmlogger \
|
|
||||||
/etc/sysconfig/pmlogger_timers /etc/sysconfig/pmproxy /var/lib/pcp/config
|
|
||||||
rlRun "TmpDir=\$(mktemp -d)"
|
|
||||||
rlRun "pcpcommonLibraryLoaded"
|
rlRun "pcpcommonLibraryLoaded"
|
||||||
rlPhaseEnd
|
rlRun "pcpcommon_testsuite_bl"
|
||||||
|
|
||||||
rlPhaseStartSetup "PCP restart"
|
|
||||||
rlRun "rlServiceStart pmcd pmlogger" 0-255
|
rlRun "rlServiceStart pmcd pmlogger" 0-255
|
||||||
rlRun "rlServiceEnable pmcd pmlogger" 0-255
|
rlRun "rlServiceEnable pmcd pmlogger" 0-255
|
||||||
rlRun "sleep 30" 0 "Give services some time to fully start"
|
rlRun "sleep 30" 0 "Give services some time to fully start"
|
||||||
rlPhaseEnd
|
rlPhaseEnd
|
||||||
|
|
||||||
rlPhaseStartSetup "BL listing"
|
|
||||||
# Get all the variables we need
|
|
||||||
read ID VERSION_ID < <(
|
|
||||||
. /etc/os-release && \
|
|
||||||
echo ${ID} ${VERSION_ID} || \
|
|
||||||
echo rhel 6.10
|
|
||||||
)
|
|
||||||
IFS='.,-_ ' read MAJOR MINOR MICRO <<< "${VERSION_ID}"
|
|
||||||
ARCH=$(arch)
|
|
||||||
|
|
||||||
_BLSEQ="${ID} ${ID}-${MAJOR}"
|
|
||||||
[[ -n "${MINOR}" ]] && _BLSEQ="${BLSEQ} ${ID}-${MAJOR}.${MINOR}"
|
|
||||||
[[ -n "${MICRO}" ]] && _BLSEQ="${BLSEQ} ${ID}-${MAJOR}.${MINOR}.${MICRO}"
|
|
||||||
|
|
||||||
IFS='.,-_ ' read MAJOR MINOR MICRO < <(rpm -q --qf '%{version}' ${PACKAGE})
|
|
||||||
_BLSEQ="${BLSEQ} ${PACKAGE}"
|
|
||||||
[[ -n "${MAJOR}" ]] && _BLSEQ="${BLSEQ} ${PACKAGE}-${MAJOR}"
|
|
||||||
[[ -n "${MINOR}" ]] && _BLSEQ="${BLSEQ} ${PACKAGE}-${MAJOR}.${MINOR}"
|
|
||||||
[[ -n "${MICRO}" ]] && _BLSEQ="${BLSEQ} ${PACKAGE}-${MAJOR}.${MINOR}.${MICRO}"
|
|
||||||
|
|
||||||
BLSEQ=
|
|
||||||
for bl in ${_BLSEQ}; do
|
|
||||||
BLSEQ="${BLSEQ} ${bl} ${bl}.${ARCH}"
|
|
||||||
done
|
|
||||||
|
|
||||||
for bl in ${BLSEQ}; do
|
|
||||||
rlLog "Looking for BL list ${bl}"
|
|
||||||
if [[ -r "${TCWD}/bl/${bl}" ]]; then
|
|
||||||
apply_bl "${TCWD}/bl/${bl}"
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
rlPhaseEnd
|
|
||||||
|
|
||||||
rlPhaseStartTest "run testsuite"
|
rlPhaseStartTest "run testsuite"
|
||||||
rlRun "pcpcommon_test -g sanity" || rlRun "pcpcommon_log_system_info"
|
rlRun "pcpcommon_test -g sanity" || rlRun "pcpcommon_log_system_info"
|
||||||
rlPhaseEnd
|
rlPhaseEnd
|
||||||
@ -108,8 +69,6 @@ rlJournalStart
|
|||||||
rlPhaseStartCleanup
|
rlPhaseStartCleanup
|
||||||
rlRun "pcpcommon_cleanup"
|
rlRun "pcpcommon_cleanup"
|
||||||
rlRun "rlServiceRestore" 0-255
|
rlRun "rlServiceRestore" 0-255
|
||||||
rlRun "rm -r $TmpDir"
|
|
||||||
rlFileRestore
|
|
||||||
rlPhaseEnd
|
rlPhaseEnd
|
||||||
rlJournalPrintText
|
rlJournalPrintText
|
||||||
rlJournalEnd
|
rlJournalEnd
|
||||||
|
@ -1,68 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /tools/pcp/Sanity/rpm-config-files
|
|
||||||
# Description: Verification of rpm config files
|
|
||||||
# Author: Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2020 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/.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/rpm-config-files
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
export TEST_GIT_REF ?= main
|
|
||||||
export TEST_GIT_URL ?= https://src.fedoraproject.org/rpms/pcp.git
|
|
||||||
export TEST_GIT_PATH ?= tests/Sanity/rpm-config-files
|
|
||||||
export TEST_GIT_SCRIPT ?= ./runtest.sh
|
|
||||||
export GIT_SSL_NO_VERIFY=true
|
|
||||||
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) Makefile PURPOSE runtest.sh
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES)
|
|
||||||
chmod +x ./runtest.sh
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Verification of rpm config files" >> $(METADATA)
|
|
||||||
@echo "Type: Sanity" >> $(METADATA)
|
|
||||||
@echo "TestTime: 30m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: pcp rpm-build" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2+" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Bug: 1963938 1964253" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHEL6 -RHELClient5 -RHELServer5 -RHEL7" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -41,7 +41,8 @@ rlJournalStart
|
|||||||
SOURCEPKG=$(rpm -q --qf '%{name}-%{version}-%{release}.src.rpm' ${PACKAGE})
|
SOURCEPKG=$(rpm -q --qf '%{name}-%{version}-%{release}.src.rpm' ${PACKAGE})
|
||||||
rlAssertExists "${T}/${SOURCEPKG}"
|
rlAssertExists "${T}/${SOURCEPKG}"
|
||||||
rlRun "rpm -D '_topdir ${T}' -i ${T}/${SOURCEPKG}"
|
rlRun "rpm -D '_topdir ${T}' -i ${T}/${SOURCEPKG}"
|
||||||
rlRun "RPMS=\$(rpm -q --qf '%{name}\n' --specfile ${T}/SPECS/${PACKAGE}.spec | \
|
rlRun "RPMS=\$(rpm -q --qf '%{name}\n' \
|
||||||
|
--specfile ${T}/SPECS/${PACKAGE}.spec | \
|
||||||
grep -v -e '-debuginfo' -e '-debugsource' | tr '\n' ' ')"
|
grep -v -e '-debuginfo' -e '-debugsource' | tr '\n' ' ')"
|
||||||
rlPhaseEnd
|
rlPhaseEnd
|
||||||
|
|
||||||
|
@ -1,65 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /tools/pcp/Sanity/shared-libraries-need-symbol-versioning
|
|
||||||
# Description: A check for presence of version symbols
|
|
||||||
# Author: Milos Prchlik <mprchlik@redhat.com>, Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2014-2021 Red Hat, Inc.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# 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, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/shared-libraries-need-symbol-versioning
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: A check for presence of version symbols" >> $(METADATA)
|
|
||||||
@echo "Type: Sanity" >> $(METADATA)
|
|
||||||
@echo "TestTime: 15m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: pcp pcp-libs binutils" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHEL6 -RHELClient5 -RHELServer5" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Bug: 1037771" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -1,63 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /tools/pcp/Sanity/verify-systemd-units
|
|
||||||
# Description: Verification of systemd unit files
|
|
||||||
# Author: Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2020 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/.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/verify-systemd-units
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Verification of systemd unit files" >> $(METADATA)
|
|
||||||
@echo "Type: Sanity" >> $(METADATA)
|
|
||||||
@echo "TestTime: 5m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: avahi pcp-manager pcp pcp-zeroconf" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2+" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHEL6 -RHELClient5 -RHELServer5" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -1,65 +0,0 @@
|
|||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Makefile of /tools/pcp/Sanity/writeable-suid-guid
|
|
||||||
# Description: Test for BZ#1025583 (pcp creates a world writeable directory)
|
|
||||||
# Author: Milos Prchlik <mprchlik@redhat.com>, Jan Kuřík <jkurik@redhat.com>
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
#
|
|
||||||
# Copyright (c) 2014-2021 Red Hat, Inc.
|
|
||||||
#
|
|
||||||
# This copyrighted material is made available to anyone wishing
|
|
||||||
# to use, modify, copy, or redistribute it subject to the terms
|
|
||||||
# and conditions of the GNU General Public License version 2.
|
|
||||||
#
|
|
||||||
# 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, write to the Free
|
|
||||||
# Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
|
||||||
# Boston, MA 02110-1301, USA.
|
|
||||||
#
|
|
||||||
# ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
||||||
|
|
||||||
export TEST=/tools/pcp/Sanity/writeable-suid-guid
|
|
||||||
export TESTVERSION=1.0
|
|
||||||
|
|
||||||
BUILT_FILES=
|
|
||||||
|
|
||||||
FILES=$(METADATA) runtest.sh Makefile PURPOSE
|
|
||||||
|
|
||||||
.PHONY: all install download clean
|
|
||||||
|
|
||||||
run: $(FILES) build
|
|
||||||
./runtest.sh
|
|
||||||
|
|
||||||
build: $(BUILT_FILES)
|
|
||||||
test -x runtest.sh || chmod a+x runtest.sh
|
|
||||||
|
|
||||||
clean:
|
|
||||||
rm -f *~ $(BUILT_FILES)
|
|
||||||
|
|
||||||
|
|
||||||
include /usr/share/rhts/lib/rhts-make.include
|
|
||||||
|
|
||||||
$(METADATA): Makefile
|
|
||||||
@echo "Owner: Jan Kuřík <jkurik@redhat.com>" > $(METADATA)
|
|
||||||
@echo "Name: $(TEST)" >> $(METADATA)
|
|
||||||
@echo "TestVersion: $(TESTVERSION)" >> $(METADATA)
|
|
||||||
@echo "Path: $(TEST_DIR)" >> $(METADATA)
|
|
||||||
@echo "Description: Test for BZ#1025583 (pcp creates a world writeable directory)" >> $(METADATA)
|
|
||||||
@echo "Type: Sanity" >> $(METADATA)
|
|
||||||
@echo "TestTime: 15m" >> $(METADATA)
|
|
||||||
@echo "RunFor: pcp" >> $(METADATA)
|
|
||||||
@echo "Requires: pcp pcp-testsuite" >> $(METADATA)
|
|
||||||
@echo "Releases: -RHEL4 -RHEL6 -RHELClient5 -RHELServer5" >> $(METADATA)
|
|
||||||
@echo "Priority: Normal" >> $(METADATA)
|
|
||||||
@echo "License: GPLv2" >> $(METADATA)
|
|
||||||
@echo "Confidential: no" >> $(METADATA)
|
|
||||||
@echo "Destructive: no" >> $(METADATA)
|
|
||||||
@echo "Bug: 1025583" >> $(METADATA)
|
|
||||||
|
|
||||||
rhts-lint $(METADATA)
|
|
@ -1,4 +1,4 @@
|
|||||||
summary: Test for BZ#1025583 (pcp creates a world writeable directory)
|
summary: Test if PCP packages do not create world writeable or suid or guid files
|
||||||
description: |
|
description: |
|
||||||
Bug summary: pcp creates a world writeable directory /var/lib/pcp/tmp
|
Bug summary: pcp creates a world writeable directory /var/lib/pcp/tmp
|
||||||
Bugzilla link: https://bugzilla.redhat.com/show_bug.cgi?id=1025583
|
Bugzilla link: https://bugzilla.redhat.com/show_bug.cgi?id=1025583
|
||||||
|
@ -28,10 +28,17 @@
|
|||||||
|
|
||||||
# Include Beaker environment
|
# Include Beaker environment
|
||||||
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
. /usr/share/beakerlib/beakerlib.sh || exit 1
|
||||||
|
. ../../Library/pcpcommon/lib.sh || exit 1
|
||||||
|
|
||||||
PACKAGE="pcp"
|
PACKAGE="pcp"
|
||||||
DIRS="/var/lib/pcp /usr/include/pcp /etc/pcp /usr/libexec/pcp /var/log/pcp \
|
DIRS="/var/lib/pcp /usr/include/pcp /etc/pcp /usr/libexec/pcp /var/log/pcp \
|
||||||
/usr/share/pcp /usr/share/doc/pcp"
|
/usr/share/pcp /usr/share/doc/pcp"
|
||||||
|
DIRS="${pcpcommon_PCP_VAR_DIR} ${pcpcommon_PCP_INC_DIR} ${pcpcommon_PCP_SYSCONF_DIR} \
|
||||||
|
/usr/libexec/pcp ${pcpcommon_PCP_BINADM_DIR} ${pcpcommon_PCP_LIBADM_DIR} \
|
||||||
|
${pcpcommon_PCP_PMDASADM_DIR} ${pcpcommon_PCP_RC_DIR} ${pcpcommon_PCP_LOG_DIR} \
|
||||||
|
${pcpcommon_PCP_SHARE_DIR} ${pcpcommon_PCP_DOC_DIR} ${pcpcommon_PCP_DEMOS_DIR} \
|
||||||
|
${pcpcommon_PCP_HTML_DIR} ${pcpcommon_PCP_HTML_DIR} /usr/share/doc/pcp-doc \
|
||||||
|
"
|
||||||
|
|
||||||
rlJournalStart
|
rlJournalStart
|
||||||
rlPhaseStartSetup
|
rlPhaseStartSetup
|
||||||
|
Loading…
Reference in New Issue
Block a user