summaryrefslogtreecommitdiffstats
path: root/apps/dav/tests/travis/carddavtester.sh
blob: 17f7e8eb4a84bfde8bb28a9d0314614548432ac3 (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
34
35
#!/usr/bin/env bash
SCRIPT=`realpath $0`
SCRIPTPATH=`dirname $SCRIPT`


# start the server
php -S 127.0.0.1:8888 -t "$SCRIPTPATH/../../../.." &


if [ ! -f CalDAVTester/run.py ]; then
	cd "$SCRIPTPATH"
    git clone https://github.com/DeepDiver1975/CalDAVTester.git
	cd "$SCRIPTPATH/CalDAVTester"
    python run.py -s
	cd "$SCRIPTPATH"
fi

# create test user
cd "$SCRIPTPATH/../../../../"
OC_PASS=user01 php occ user:add --password-from-env user01
php occ dav:create-addressbook user01 addressbook
OC_PASS=user02 php occ user:add --password-from-env user02
php occ dav:create-addressbook user02 addressbook
cd "$SCRIPTPATH/../../../../"

# run the tests
cd "$SCRIPTPATH/CalDAVTester"
PYTHONPATH="$SCRIPTPATH/pycalendar/src" python testcaldav.py --print-details-onfail -s "$SCRIPTPATH/caldavtest/config/serverinfo.xml" -o cdt.txt \
	"$SCRIPTPATH/caldavtest/tests/CardDAV/current-user-principal.xml" \
	"$SCRIPTPATH/caldavtest/tests/CardDAV/sync-report.xml"
RESULT=$?

tail "$SCRIPTPATH/../../../../data-autotest/owncloud.log"

exit $RESULT