nextcloud/apps/dav/tests/travis/caldav/script.sh

22 lines
515 B
Bash
Raw Normal View History

2015-12-18 18:59:57 +03:00
#!/usr/bin/env bash
SCRIPT=`realpath $0`
SCRIPTPATH=`dirname $SCRIPT`
# start the server
php -S 127.0.0.1:8888 -t "$SCRIPTPATH/../../../../.." &
2015-12-21 13:43:15 +03:00
sleep 30
2015-12-18 18:59:57 +03:00
# run the tests
cd "$SCRIPTPATH/CalDAVTester"
2016-01-18 17:10:33 +03:00
PYTHONPATH="$SCRIPTPATH/pycalendar/src" python testcaldav.py --print-details-onfail --basedir "$SCRIPTPATH/../caldavtest/" -o cdt.txt \
"CalDAV/current-user-principal.xml" \
"CalDAV/sync-report.xml" \
2016-01-26 14:06:02 +03:00
"CalDAV/sharing-calendars.xml"
2016-01-18 17:10:33 +03:00
2015-12-18 18:59:57 +03:00
RESULT=$?
tail "$/../../../../../data-autotest/owncloud.log"
exit $RESULT