123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271 |
- <?php
- /**
- * @copyright Copyright (c) 2018 Georg Ehrke <oc.list@georgehrke.com>
- *
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Georg Ehrke <oc.list@georgehrke.com>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Nils Wittenbrink <nilswittenbrink@web.de>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * 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.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * 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/>.
- *
- */
- namespace OCA\DAV\Tests\unit\Provisioning\Apple;
- use OCA\DAV\Provisioning\Apple\AppleProvisioningPlugin;
- use OCA\Theming\ThemingDefaults;
- use OCP\IL10N;
- use OCP\IRequest;
- use OCP\IURLGenerator;
- use OCP\IUser;
- use OCP\IUserSession;
- use Test\TestCase;
- class AppleProvisioningPluginTest extends TestCase {
- /** @var \Sabre\DAV\Server|\PHPUnit\Framework\MockObject\MockObject */
- protected $server;
- /** @var IUserSession|\PHPUnit\Framework\MockObject\MockObject */
- protected $userSession;
- /** @var IURLGenerator|\PHPUnit\Framework\MockObject\MockObject */
- protected $urlGenerator;
- /** @var ThemingDefaults|\PHPUnit\Framework\MockObject\MockObject */
- protected $themingDefaults;
- /** @var IRequest|\PHPUnit\Framework\MockObject\MockObject */
- protected $request;
- /** @var IL10N|\PHPUnit\Framework\MockObject\MockObject */
- protected $l10n;
- /** @var \Sabre\HTTP\RequestInterface|\PHPUnit\Framework\MockObject\MockObject */
- protected $sabreRequest;
- /** @var \Sabre\HTTP\ResponseInterface|\PHPUnit\Framework\MockObject\MockObject */
- protected $sabreResponse;
- /** @var AppleProvisioningPlugin */
- protected $plugin;
- protected function setUp(): void {
- parent::setUp();
- $this->server = $this->createMock(\Sabre\DAV\Server::class);
- $this->userSession = $this->createMock(IUserSession::class);
- $this->urlGenerator = $this->createMock(IURLGenerator::class);
- $this->themingDefaults = $this->createMock(ThemingDefaults::class);
- $this->request = $this->createMock(IRequest::class);
- $this->l10n = $this->createMock(IL10N::class);
- $this->plugin = new AppleProvisioningPlugin($this->userSession,
- $this->urlGenerator,
- $this->themingDefaults,
- $this->request,
- $this->l10n,
- function () {
- return 'generated-uuid';
- }
- );
- $this->sabreRequest = $this->createMock(\Sabre\HTTP\RequestInterface::class);
- $this->sabreResponse = $this->createMock(\Sabre\HTTP\ResponseInterface::class);
- }
- public function testInitialize(): void {
- $server = $this->createMock(\Sabre\DAV\Server::class);
- $plugin = new AppleProvisioningPlugin($this->userSession,
- $this->urlGenerator, $this->themingDefaults, $this->request, $this->l10n,
- function (): void {
- });
- $server->expects($this->once())
- ->method('on')
- ->with('method:GET', [$plugin, 'httpGet'], 90);
- $plugin->initialize($server);
- }
- public function testHttpGetOnHttp(): void {
- $this->sabreRequest->expects($this->once())
- ->method('getPath')
- ->with()
- ->willReturn('provisioning/apple-provisioning.mobileconfig');
- $user = $this->createMock(IUser::class);
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->willReturn($user);
- $this->request->expects($this->once())
- ->method('getServerProtocol')
- ->wilLReturn('http');
- $this->themingDefaults->expects($this->once())
- ->method('getName')
- ->willReturn('InstanceName');
- $this->l10n->expects($this->once())
- ->method('t')
- ->with('Your %s needs to be configured to use HTTPS in order to use CalDAV and CardDAV with iOS/macOS.', ['InstanceName'])
- ->willReturn('LocalizedErrorMessage');
- $this->sabreResponse->expects($this->once())
- ->method('setStatus')
- ->with(200);
- $this->sabreResponse->expects($this->once())
- ->method('setHeader')
- ->with('Content-Type', 'text/plain; charset=utf-8');
- $this->sabreResponse->expects($this->once())
- ->method('setBody')
- ->with('LocalizedErrorMessage');
- $returnValue = $this->plugin->httpGet($this->sabreRequest, $this->sabreResponse);
- $this->assertFalse($returnValue);
- }
- public function testHttpGetOnHttps(): void {
- $this->sabreRequest->expects($this->once())
- ->method('getPath')
- ->with()
- ->willReturn('provisioning/apple-provisioning.mobileconfig');
- $user = $this->createMock(IUser::class);
- $user->expects($this->once())
- ->method('getUID')
- ->willReturn('userName');
- $this->userSession->expects($this->once())
- ->method('getUser')
- ->willReturn($user);
- $this->request->expects($this->once())
- ->method('getServerProtocol')
- ->wilLReturn('https');
- $this->urlGenerator->expects($this->once())
- ->method('getBaseUrl')
- ->willReturn('https://nextcloud.tld/nextcloud');
- $this->themingDefaults->expects($this->once())
- ->method('getName')
- ->willReturn('InstanceName');
- $this->l10n->expects($this->exactly(2))
- ->method('t')
- ->withConsecutive(
- ['Configures a CalDAV account'],
- ['Configures a CardDAV account'],
- )
- ->willReturnOnConsecutiveCalls(
- 'LocalizedConfiguresCalDAV',
- 'LocalizedConfiguresCardDAV',
- );
- $this->sabreResponse->expects($this->once())
- ->method('setStatus')
- ->with(200);
- $this->sabreResponse->expects($this->exactly(2))
- ->method('setHeader')
- ->withConsecutive(
- ['Content-Disposition', 'attachment; filename="userName-apple-provisioning.mobileconfig"'],
- ['Content-Type', 'application/xml; charset=utf-8'],
- );
- $this->sabreResponse->expects($this->once())
- ->method('setBody')
- ->with(<<<EOF
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
- <plist version="1.0">
- <dict>
- <key>PayloadContent</key>
- <array>
- <dict>
- <key>CalDAVAccountDescription</key>
- <string>InstanceName</string>
- <key>CalDAVHostName</key>
- <string>nextcloud.tld</string>
- <key>CalDAVUsername</key>
- <string>userName</string>
- <key>CalDAVUseSSL</key>
- <true/>
- <key>CalDAVPort</key>
- <integer>443</integer>
- <key>PayloadDescription</key>
- <string>LocalizedConfiguresCalDAV</string>
- <key>PayloadDisplayName</key>
- <string>InstanceName CalDAV</string>
- <key>PayloadIdentifier</key>
- <string>tld.nextcloud.generated-uuid</string>
- <key>PayloadType</key>
- <string>com.apple.caldav.account</string>
- <key>PayloadUUID</key>
- <string>generated-uuid</string>
- <key>PayloadVersion</key>
- <integer>1</integer>
- </dict>
- <dict>
- <key>CardDAVAccountDescription</key>
- <string>InstanceName</string>
- <key>CardDAVHostName</key>
- <string>nextcloud.tld</string>
- <key>CardDAVUsername</key>
- <string>userName</string>
- <key>CardDAVUseSSL</key>
- <true/>
- <key>CardDAVPort</key>
- <integer>443</integer>
- <key>PayloadDescription</key>
- <string>LocalizedConfiguresCardDAV</string>
- <key>PayloadDisplayName</key>
- <string>InstanceName CardDAV</string>
- <key>PayloadIdentifier</key>
- <string>tld.nextcloud.generated-uuid</string>
- <key>PayloadType</key>
- <string>com.apple.carddav.account</string>
- <key>PayloadUUID</key>
- <string>generated-uuid</string>
- <key>PayloadVersion</key>
- <integer>1</integer>
- </dict>
- </array>
- <key>PayloadDisplayName</key>
- <string>InstanceName</string>
- <key>PayloadIdentifier</key>
- <string>tld.nextcloud.generated-uuid</string>
- <key>PayloadRemovalDisallowed</key>
- <false/>
- <key>PayloadType</key>
- <string>Configuration</string>
- <key>PayloadUUID</key>
- <string>generated-uuid</string>
- <key>PayloadVersion</key>
- <integer>1</integer>
- </dict>
- </plist>
- EOF
- );
- $returnValue = $this->plugin->httpGet($this->sabreRequest, $this->sabreResponse);
- $this->assertFalse($returnValue);
- }
- }
|