Skip to content

Commit a68ce11

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 a68ce11

File tree

2 files changed

+29
-0
lines changed

2 files changed

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

tests/kola/content-origins/test.sh

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
#!/bin/bash
2+
# kola: {"platforms": "qemu", "exclusive": false, "distros": "fcos rhcos" }
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+
# - distros: This only handles Fedora and RHEL today.
8+
9+
set -xeuo pipefail
10+
11+
. $KOLA_EXT_DATA/commonlib.sh
12+
13+
. /usr/lib/os-release
14+
15+
case "${ID}" in
16+
fedora) vendor='Fedora Project';;
17+
rhel|rhcos) vendor='Red Hat, Inc.';;
18+
*) echo "Unknown operating system ID=${ID}; skipping this test"; exit 0;;
19+
esac
20+
21+
cd $(mktemp -d)
22+
rpm -qa --queryformat='%{name},%{vendor}\n' > rpmvendors.txt
23+
if grep -vF ",${vendor}" rpmvendors.txt > unmatched.txt; then
24+
cat unmatched.txt
25+
fatal "Expected only vendor ${vendor} for all packages"
26+
fi
27+
echo "ok all RPMs produced by Vendor: ${vendor}"
28+

0 commit comments

Comments
 (0)