mirror of
https://github.com/nextcloud/server.git
synced 2026-02-25 10:51:41 -05:00
62 lines
2 KiB
PHP
62 lines
2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
namespace OCA\DAV\Tests\unit\CardDAV\Sharing;
|
|
|
|
use OCA\DAV\Connector\Sabre\Auth;
|
|
use OCA\DAV\DAV\Sharing\IShareable;
|
|
use OCA\DAV\DAV\Sharing\Plugin;
|
|
use OCP\IConfig;
|
|
use OCP\IRequest;
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
|
use Sabre\DAV\Server;
|
|
use Sabre\DAV\SimpleCollection;
|
|
use Sabre\HTTP\Request;
|
|
use Sabre\HTTP\Response;
|
|
use Test\TestCase;
|
|
|
|
class PluginTest extends TestCase {
|
|
private Plugin $plugin;
|
|
private Server $server;
|
|
private IShareable&MockObject $book;
|
|
|
|
protected function setUp(): void {
|
|
parent::setUp();
|
|
|
|
$authBackend = $this->createMock(Auth::class);
|
|
$authBackend->method('isDavAuthenticated')
|
|
->willReturn(true);
|
|
$request = $this->createMock(IRequest::class);
|
|
$config = $this->createMock(IConfig::class);
|
|
$this->plugin = new Plugin($authBackend, $request, $config);
|
|
|
|
$root = new SimpleCollection('root');
|
|
$this->server = new \Sabre\DAV\Server($root);
|
|
$this->book = $this->createMock(IShareable::class);
|
|
$this->book->method('getName')
|
|
->willReturn('addressbook1.vcf');
|
|
$root->addChild($this->book);
|
|
$this->plugin->initialize($this->server);
|
|
}
|
|
|
|
public function testSharing(): void {
|
|
$this->book->expects($this->once())->method('updateShares')->with([[
|
|
'href' => 'principal:principals/admin',
|
|
'commonName' => null,
|
|
'summary' => null,
|
|
'readOnly' => false
|
|
]], ['mailto:wilfredo@example.com']);
|
|
|
|
// setup request
|
|
$request = new Request('POST', 'addressbook1.vcf');
|
|
$request->addHeader('Content-Type', 'application/xml');
|
|
$request->setBody('<?xml version="1.0" encoding="utf-8" ?><CS:share xmlns:D="DAV:" xmlns:CS="http://owncloud.org/ns"><CS:set><D:href>principal:principals/admin</D:href><CS:read-write/></CS:set> <CS:remove><D:href>mailto:wilfredo@example.com</D:href></CS:remove></CS:share>');
|
|
$response = new Response();
|
|
$this->plugin->httpPost($request, $response);
|
|
}
|
|
}
|