Fix dep tests to work with both Karaf 3/4
[releng/builder.git] / jjb / packaging / test-rpm-deps.sh
1 #!/bin/bash
2
3 # Options:
4 #   -x: Echo commands
5 #   -e: Fail on errors
6 #   -o pipefail: Fail on errors in scripts this calls, give stacktrace
7 set -ex -o pipefail
8
9 # Verify exactly 1 RPM is in the path we expect
10 set -- /home/$USER/rpmbuild/RPMS/noarch/*.rpm
11 # shellcheck disable=SC1054
12 [ $# -eq 1 ] || {{ echo "Expected 1 RPM, found $#"; exit 1; }}
13
14 # If path is globbed (/path/to/*.rpm), expand it
15 path=$(sudo find / -wholename /home/$USER/rpmbuild/RPMS/noarch/*.rpm)
16
17 # Requirements for package where SRPM was built into noarch on CentOS CBS
18 # rpm -qp opendaylight-8.0.0-0.1.20171125rel2049.el7.noarch.rpm --requires
19 # shellcheck disable=SC2034
20 declare -a expected_deps=( "/bin/bash"
21                            "/bin/sh"
22                            "java >= 1:1.8.0"
23                            "rpmlib(CompressedFileNames) <= 3.0.4-1"
24                            "rpmlib(FileDigests) <= 4.6.0-1"
25                            "rpmlib(PartialHardlinkSets) <= 4.0.4-1"
26                            "rpmlib(PayloadFilesHavePrefix) <= 4.0-1"
27                            "shadow-utils"
28                            "rpmlib(PayloadIsXz) <= 5.2-1" )
29
30 # Karaf 4 distros also have a /usr/bin/env requirement INTPAK-120
31 if [[ ! $path == *opendaylight-6*  ]]; then
32     expected_deps+=( "/usr/bin/env" )
33 fi
34
35 # shellcheck disable=SC2034
36 mapfile -t actual_deps < <( rpm -qp /home/$USER/rpmbuild/RPMS/noarch/*.rpm --requires )
37 # shellcheck disable=SC2154 disable=SC2145
38 printf 'Dependency found: %s\n' "${{actual_deps[@]}}"
39
40 # shellcheck disable=SC2154 disable=SC2145 disable=SC2034
41 diff_deps=(`echo "${{expected_deps[@]}}" "${{actual_deps[@]}}" | tr ' ' '\n' | sort | uniq -u`)
42 # shellcheck disable=SC2154 disable=SC2145 disable=SC2068 disable=SC2170 disable=SC1083
43 if [ ${{#diff_deps[*]}} -eq 0 ]; then
44     echo "RPM requirements are as expected"
45 else
46     echo "RPM requirements don't match the expected requirements"
47     # shellcheck disable=SC2154 disable=SC2145
48     printf 'Dependency mismatch: %s\n' ${{diff_deps[@]}}
49     exit 1
50 fi