summaryrefslogtreecommitdiff
path: root/testprogs
diff options
context:
space:
mode:
authorGarming Sam <garming@catalyst.net.nz>2017-12-15 15:43:32 +1300
committerGarming Sam <garming@samba.org>2017-12-20 23:13:12 +0100
commit87eeb897e4f9fae635c55940cedbc1501e529cd1 (patch)
treef6111d6e2396b7691abdd9c4b67321820c0257d3 /testprogs
parent03f1ca863a8e10cb261105f5cc40f7c25ea09c02 (diff)
downloadsamba-87eeb897e4f9fae635c55940cedbc1501e529cd1.tar.gz
functionalprep.sh: New test for ensuring that the prep works correctly
Signed-off-by: Garming Sam <garming@catalyst.net.nz> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'testprogs')
-rwxr-xr-xtestprogs/blackbox/functionalprep.sh76
1 files changed, 76 insertions, 0 deletions
diff --git a/testprogs/blackbox/functionalprep.sh b/testprogs/blackbox/functionalprep.sh
new file mode 100755
index 00000000000..8bc2d243fa9
--- /dev/null
+++ b/testprogs/blackbox/functionalprep.sh
@@ -0,0 +1,76 @@
+#!/bin/sh
+
+if [ $# -lt 1 ]; then
+cat <<EOF
+Usage: $0 PREFIX
+EOF
+exit 1;
+fi
+
+PREFIX_ABS="$1"
+shift 1
+
+. `dirname $0`/subunit.sh
+
+RELEASE="release-4-8-0-pre1"
+release_dir=`dirname $0`/../../source4/selftest/provisions/$RELEASE
+
+cleanup_output_directories()
+{
+ if [ -d $PREFIX_ABS/2012R2_schema ]; then
+ rm -fr $PREFIX_ABS/2012R2_schema
+ fi
+
+ if [ -d $PREFIX_ABS/$RELEASE ]; then
+ rm -fr $PREFIX_ABS/$RELEASE
+ fi
+}
+
+undump() {
+ if test -x $BINDIR/tdbrestore;
+ then
+ `dirname $0`/../../source4/selftest/provisions/undump.sh $release_dir $PREFIX_ABS/$RELEASE $BINDIR/tdbrestore
+ else
+ `dirname $0`/../../source4/selftest/provisions/undump.sh $release_dir $PREFIX_ABS/$RELEASE
+ fi
+}
+
+PROVISION_OPTS="--use-ntvfs --host-ip6=::1 --host-ip=127.0.0.1"
+
+provision_2012r2() {
+ $PYTHON $BINDIR/samba-tool domain provision $PROVISION_OPTS --domain=REALM --realm=REALM.COM --targetdir=$PREFIX_ABS/2012R2_schema --base-schema=2012_R2 --host-name=FLPREP
+}
+
+ldapcmp_ignore() {
+ # At some point we will need to ignore, but right now, it should be perfect
+ IGNORE_ATTRS=$1
+ $PYTHON $BINDIR/samba-tool ldapcmp tdb://$PREFIX_ABS/$2/private/sam.ldb tdb://$PREFIX_ABS/$3/private/sam.ldb --two
+}
+
+ldapcmp() {
+ # Our functional prep doesn't set these values as they were not provided
+ # These are XML schema based enumerations which are used for claims
+ ldapcmp_ignore "msDS-ClaimPossibleValues" "$RELEASE" "2012R2_schema"
+}
+
+functional_prep() {
+ $BINDIR/samba-tool domain functionalprep -H tdb://$PREFIX_ABS/2012R2_schema/private/sam.ldb --function-level=2012_R2
+}
+
+# double-check we cleaned up from the last test run
+cleanup_output_directories
+
+testit $RELEASE undump
+
+# Provision a DC based on 2012R2 schema
+testit "provision_2012R2_schema" provision_2012r2
+
+# Perform functional prep up to 2012 R2 level
+testit "functional_prep" functional_prep
+
+# check that the databases are now the same
+testit "check_databases_same" ldapcmp
+
+cleanup_output_directories
+
+exit $failed