shadow/tests/su/10_su_sulog_success/su.test
Serge Hallyn b999d48941 Add tests from the old svn tree
We're losing the svn history (which we could probably keep if we tried
hard enough) but don't consider that worthwhile.

Note these tests are destructive, so run them only in a throwaway
environment like a chroot, container, or vm.

The tests/run.all script should be the one which launches all the tests.

Signed-off-by: Serge Hallyn <serge.hallyn@ubuntu.com>
2014-09-17 14:42:55 -05:00

41 lines
758 B
Bash
Executable File

#!/bin/sh
set -e
cd $(dirname $0)
. ../../common/config.sh
. ../../common/log.sh
log_start "$0" "su can be used to switch to a non-root user"
# no testsuite password
# root password: rootF00barbaz
# myuser password: myuserF00barbaz
save_config
# restore the files on exit
trap 'log_status "$0" "FAILURE"; restore_config' 0
change_config
./run_su.exp myuser myuserF00barbaz '$ '
echo -n "Check /var/log/sulog..."
wc -l /var/log/sulog > tmp/sulog
d=$(date +"SU %m/%d %H:%M")
cat /var/log/sulog | \
egrep -v "$d \+ /dev/pts/[0-9]* root-testsuite" | \
egrep -v "$d \+ /dev/pts/[0-9]* testsuite-myuser" \
>> tmp/sulog || true
diff -auN tmp/sulog data/sulog
echo "OK"
rm -f tmp/sulog
log_status "$0" "SUCCESS"
restore_config
trap '' 0