2018-06-05 22:26:29 +03:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @copyright Copyright (c) 2018, Georg Ehrke
|
|
|
|
*
|
2020-04-29 12:57:22 +03:00
|
|
|
* @author Christoph Wurst <christoph@winzerhof-wurst.at>
|
2018-06-05 22:26:29 +03:00
|
|
|
* @author Georg Ehrke <oc.list@georgehrke.com>
|
2019-12-03 21:57:53 +03:00
|
|
|
* @author Roeland Jago Douma <roeland@famdouma.nl>
|
2018-06-05 22:26:29 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* @license GNU AGPL version 3 or any later version
|
2018-06-05 22:26:29 +03:00
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License as
|
|
|
|
* published by the Free Software Foundation, either version 3 of the
|
|
|
|
* License, or (at your option) any later version.
|
2018-06-05 22:26:29 +03:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2019-12-03 21:57:53 +03:00
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2018-06-05 22:26:29 +03:00
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
2019-12-03 21:57:53 +03:00
|
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2018-06-05 22:26:29 +03:00
|
|
|
*
|
|
|
|
*/
|
2019-11-22 22:52:10 +03:00
|
|
|
|
2018-06-05 22:26:29 +03:00
|
|
|
namespace OCA\DAV\Tests\unit\CalDAV\ResourceBooking;
|
|
|
|
|
|
|
|
use OCA\DAV\CalDAV\ResourceBooking\RoomPrincipalBackend;
|
|
|
|
|
2020-04-09 15:04:56 +03:00
|
|
|
class RoomPrincipalBackendTest extends AbstractPrincipalBackendTest {
|
2019-11-27 17:27:18 +03:00
|
|
|
protected function setUp(): void {
|
2018-06-05 22:26:29 +03:00
|
|
|
parent::setUp();
|
|
|
|
|
2019-08-01 16:05:53 +03:00
|
|
|
$this->principalBackend = new RoomPrincipalBackend(self::$realDatabase,
|
2019-08-14 14:38:11 +03:00
|
|
|
$this->userSession, $this->groupManager, $this->logger, $this->proxyMapper);
|
2019-08-01 16:05:53 +03:00
|
|
|
|
|
|
|
$this->mainDbTable = 'calendar_rooms';
|
|
|
|
$this->metadataDbTable = 'calendar_rooms_md';
|
|
|
|
$this->foreignKey = 'room_id';
|
|
|
|
|
2018-06-05 22:26:29 +03:00
|
|
|
$this->principalPrefix = 'principals/calendar-rooms';
|
2018-10-16 15:39:04 +03:00
|
|
|
$this->expectedCUType = 'ROOM';
|
2019-08-01 16:05:53 +03:00
|
|
|
|
|
|
|
$this->createTestDatasetInDb();
|
2018-06-05 22:26:29 +03:00
|
|
|
}
|
|
|
|
}
|