2018-01-24 13:18:46 +03:00
#!/bin/bash
# -*- mode: shell-script; indent-tabs-mode: nil; sh-basic-offset: 4; -*-
# ex: ts=8 sw=4 sts=4 et filetype=sh
set -e
TEST_DESCRIPTION = "Sysuser-related tests"
. $TEST_BASE_DIR /test-functions
test_setup( ) {
2018-02-02 10:53:47 +03:00
mkdir -p $TESTDIR /etc/sysusers.d $TESTDIR /usr/lib/sysusers.d $TESTDIR /tmp
2018-01-24 13:18:46 +03:00
}
2018-02-01 07:47:50 +03:00
preprocess( ) {
in = " $1 "
# see meson.build how to extract this. gcc -E was used before to
# get this value from config.h, however the autopkgtest fails with
# it
SYSTEM_UID_MAX = $( awk 'BEGIN { uid=999 } /^\s*SYS_UID_MAX\s+/ { uid=$2 } END { print uid }' /etc/login.defs)
sed " s/SYSTEM_UID_MAX/ ${ SYSTEM_UID_MAX } /g " " $in "
}
2018-02-02 10:53:47 +03:00
compare( ) {
if ! diff -u $TESTDIR /etc/passwd <( preprocess ${ 1 %.* } .expected-passwd) ; then
echo " **** Unexpected output for $f "
exit 1
fi
if ! diff -u $TESTDIR /etc/group <( preprocess ${ 1 %.* } .expected-group) ; then
echo " **** Unexpected output for $f $2 "
exit 1
fi
}
2018-01-24 13:18:46 +03:00
test_run( ) {
2018-01-25 14:50:14 +03:00
# ensure our build of systemd-sysusers is run
PATH = ${ BUILD_DIR } :$PATH
2018-02-02 10:53:47 +03:00
rm -f $TESTDIR /etc/sysusers.d/* $TESTDIR /usr/lib/sysusers.d/*
2018-01-25 14:50:14 +03:00
# happy tests
2018-01-24 13:18:46 +03:00
for f in test-*.input; do
2018-01-25 14:50:14 +03:00
echo " *** Running $f "
2018-02-02 10:53:47 +03:00
rm -f $TESTDIR /etc/*{ passwd,group,shadow}
2018-01-24 13:18:46 +03:00
cp $f $TESTDIR /usr/lib/sysusers.d/test.conf
2018-01-25 14:50:14 +03:00
systemd-sysusers --root= $TESTDIR
2018-02-02 10:53:47 +03:00
compare $f ""
2018-01-24 13:18:46 +03:00
done
2018-01-25 14:50:14 +03:00
2018-02-02 10:53:47 +03:00
for f in test-*.input; do
echo " *** Running $f on stdin "
rm -f $TESTDIR /etc/*{ passwd,group,shadow}
touch $TESTDIR /etc/sysusers.d/test.conf
cat $f | systemd-sysusers --root= $TESTDIR -
compare $f "on stdin"
done
for f in test-*.input; do
echo " *** Running $f on stdin with --replace "
rm -f $TESTDIR /etc/*{ passwd,group,shadow}
touch $TESTDIR /etc/sysusers.d/test.conf
# this overrides test.conf which is masked on disk
cat $f | systemd-sysusers --root= $TESTDIR --replace= /etc/sysusers.d/test.conf -
# this should be ignored
cat test-1.input | systemd-sysusers --root= $TESTDIR --replace= /usr/lib/sysusers.d/test.conf -
compare $f "on stdin with --replace"
done
# test --inline
echo "*** Testing --inline"
rm -f $TESTDIR /etc/*{ passwd,group,shadow}
# copy a random file to make sure it is ignored
cp $f $TESTDIR /etc/sysusers.d/confuse.conf
systemd-sysusers --root= $TESTDIR --inline \
"u u1 222 - - /bin/zsh" \
"g g1 111"
compare inline "(--inline)"
# test --replace
echo "*** Testing --inline with --replace"
rm -f $TESTDIR /etc/*{ passwd,group,shadow}
# copy a random file to make sure it is ignored
cp $f $TESTDIR /etc/sysusers.d/confuse.conf
systemd-sysusers --root= $TESTDIR \
--inline \
--replace= /etc/sysusers.d/confuse.conf \
"u u1 222 - - /bin/zsh" \
"g g1 111"
compare inline "(--inline --replace=…)"
rm -f $TESTDIR /etc/sysusers.d/* $TESTDIR /usr/lib/sysusers.d/*
2018-01-25 14:50:14 +03:00
# tests for error conditions
for f in unhappy-*.input; do
echo " *** Running test $f "
2018-02-02 10:53:47 +03:00
rm -f $TESTDIR /etc/*{ passwd,group,shadow}
2018-01-25 14:50:14 +03:00
cp $f $TESTDIR /usr/lib/sysusers.d/test.conf
systemd-sysusers --root= $TESTDIR 2> /dev/null
journalctl -t systemd-sysusers -o cat | tail -n1 > $TESTDIR /tmp/err
if ! diff -u $TESTDIR /tmp/err ${ f %.* } .expected-err; then
echo " **** Unexpected error output for $f "
cat $TESTDIR /tmp/err
exit 1
fi
done
2018-01-24 13:18:46 +03:00
}
do_test " $@ "