Skip to content

Commit 08b12b7

Browse files
committed
tests/content-origins: Verify expected vendor for all RPM packages
As we move to support multiple streams (particularly for C9S versus RHEL) we should ensure that we're not accidentally including content from CentOS in official RHEL builds, and vice versa. The RPM vendor field is useful for this. For now, this test just verifies Fedora and RHEL vendors, and I tested on both.
1 parent 50ee01a commit 08b12b7

File tree

2 files changed

+27
-0
lines changed

2 files changed

+27
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../data/commonlib.sh

tests/kola/content-origins/test.sh

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
# kola: {"platforms": "qemu", "exclusive": false }
3+
# Verify the RPM %{vendor} flag for everything installed matches what we expect.
4+
#
5+
# - platforms: qemu
6+
# - This test should pass everywhere if it passes anywhere.
7+
8+
set -xeuo pipefail
9+
10+
. $KOLA_EXT_DATA/commonlib.sh
11+
12+
. /usr/lib/os-release
13+
14+
case "${ID}" in
15+
fedora) vendor='Fedora Project';;
16+
rhel|rhcos) vendor='Red Hat, Inc.';;
17+
*) echo "Unknown operating system ID=${ID}; skipping this test"; exit 0;;
18+
esac
19+
20+
cd $(mktemp -d)
21+
rpm -qa --queryformat='%{name},%{vendor}\n' > rpmvendors.txt
22+
if grep -vF ",${vendor}" rpmvendors.txt > unmatched.txt; then
23+
echo 1>&2 "Expected only vendor ${vendor} for all packages"
24+
cat unmatched.txt
25+
fi
26+

0 commit comments

Comments
 (0)