2015-12-18 18:59:57 +03:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
SCRIPT=`realpath $0`
|
|
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
|
|
|
|
|
2016-08-19 09:29:48 +03:00
|
|
|
cd "$SCRIPTPATH"
|
|
|
|
if [ ! -f CalDAVTester/testcaldav.py ]; then
|
|
|
|
git clone https://github.com/apple/ccs-caldavtester.git CalDAVTester
|
|
|
|
fi
|
|
|
|
if [ ! -f pycalendar/setup.py ]; then
|
|
|
|
git clone https://github.com/apple/ccs-pycalendar.git pycalendar
|
2015-12-18 18:59:57 +03:00
|
|
|
fi
|
|
|
|
|
|
|
|
# create test user
|
|
|
|
cd "$SCRIPTPATH/../../../../../"
|
|
|
|
OC_PASS=user01 php occ user:add --password-from-env user01
|
2015-12-18 15:51:34 +03:00
|
|
|
php occ dav:create-calendar user01 calendar
|
2016-01-26 14:06:02 +03:00
|
|
|
php occ dav:create-calendar user01 shared
|
2015-12-18 18:59:57 +03:00
|
|
|
OC_PASS=user02 php occ user:add --password-from-env user02
|
2015-12-18 15:51:34 +03:00
|
|
|
php occ dav:create-calendar user02 calendar
|
2015-12-18 18:59:57 +03:00
|
|
|
cd "$SCRIPTPATH/../../../../../"
|