summaryrefslogtreecommitdiff
path: root/tests/06_dir_diff.sh
blob: 3d8fd130aa34bdc2b58249b21876444e2acc6e70 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
#!/bin/bash

TEST_ID="06"
TEST_NAME="Dir difference"

CREATE=`pwd`/$1
DEPLOY=`pwd`/$2
TEST_TOOLS=$3

. ./test_lib.sh

############# Test specific code ############

setup () {
	mkdir $ORIGIN/a && \
	mkdir $TARGET/a && \
	echo "1" > $TARGET/a/1 && \
	chown -h :cdrom $TARGET/a && \
	chmod 707 $TARGET/a
}

check_results () {
	test -d           $ORIGIN/a        && \
	test -f           $ORIGIN/a/1      && \
	check_same_mode   $ORIGIN/a $TARGET/a #&& \
	check_same_uidgid $ORIGIN/a $TARGET/a #&& \
	check_same_mode   $ORIGIN/a/1 $TARGET/a/1 && \
	check_same_uidgid $ORIGIN/a/1 $TARGET/a/1 && \
	check_content     $ORIGIN/a/1 "1"
}

#############################################
main $@