Add test for package file ordering

Add a simple test to ensure package install files remain sorted
alphabetically (follow-on from the sorting of the files done in
I01e42defbf778626afd8dd457f93f0b02dd1a19d)

Change-Id: I75568871e92afcd81dac2c3ce18b84aa34cdd289
This commit is contained in:
Ian Wienand 2015-11-09 17:42:23 +11:00
parent ca7e4f285c
commit ecf06dbadb

32
tests/test_package_ordering.sh Executable file
View File

@ -0,0 +1,32 @@
#!/bin/bash
# basic test to ensure that package-install files remain sorted
# alphabetically.
TOP=$(cd $(dirname "$0")/.. && pwd)
source $TOP/tests/unittest.sh
PKG_FILES=$(find $TOP/files/debs $TOP/files/rpms $TOP/files/rpms-suse -type f)
TMPDIR=$(mktemp -d)
SORTED=${TMPDIR}/sorted
UNSORTED=${TMPDIR}/unsorted
for p in $PKG_FILES; do
grep -v '^#' $p > ${UNSORTED}
sort ${UNSORTED} > ${SORTED}
if [ -n "$(diff -c ${UNSORTED} ${SORTED})" ]; then
failed "$p is unsorted"
# output this, it's helpful to see what exactly is unsorted
diff -c ${UNSORTED} ${SORTED}
else
passed "$p is sorted"
fi
done
rm -rf ${TMPDIR}
report_results