mirror of
https://github.com/nextcloud/server.git
synced 2025-01-01 18:00:09 +00:00
051ee7e7fd
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
25 lines
715 B
Bash
25 lines
715 B
Bash
#!/usr/bin/env bash
|
|
#
|
|
# SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
# SPDX-License-Identifier: AGPL-3.0-only
|
|
#
|
|
SCRIPT=`realpath $0`
|
|
SCRIPTPATH=`dirname $SCRIPT`
|
|
|
|
|
|
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
|
|
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/../../../../../"
|