aboutsummaryrefslogtreecommitdiffstats
path: root/apps/federatedfilesharing/tests/Settings/AdminTest.php
blob: 1eee362c11f47797d2105b39812e8f3813f3d514 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
<?php

declare(strict_types=1);
/**
 * SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\FederatedFileSharing\Tests\Settings;

use OCA\FederatedFileSharing\FederatedShareProvider;
use OCA\FederatedFileSharing\Settings\Admin;
use OCP\AppFramework\Http\TemplateResponse;
use OCP\AppFramework\Services\IInitialState;
use OCP\GlobalScale\IConfig;
use OCP\IL10N;
use OCP\IURLGenerator;
use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;

class AdminTest extends TestCase {
	private FederatedShareProvider&MockObject $federatedShareProvider;
	private IConfig $gsConfig;
	private IInitialState&MockObject $initialState;
	private Admin $admin;

	protected function setUp(): void {
		parent::setUp();
		$this->federatedShareProvider = $this->createMock(FederatedShareProvider::class);
		$this->gsConfig = $this->createMock(IConfig::class);
		$this->initialState = $this->createMock(IInitialState::class);
		$urlGenerator = $this->createMock(IURLGenerator::class);
		$urlGenerator->expects($this->any())
			->method('linkToDocs')
			->willReturn('doc-link');

		$this->admin = new Admin(
			$this->federatedShareProvider,
			$this->gsConfig,
			$this->createMock(IL10N::class),
			$urlGenerator,
			$this->initialState
		);
	}

	public static function sharingStateProvider(): array {
		return [
			[
				true,
			],
			[
				false,
			]
		];
	}

	#[\PHPUnit\Framework\Attributes\DataProvider('sharingStateProvider')]
	public function testGetForm(bool $state): void {
		$this->federatedShareProvider
			->expects($this->once())
			->method('isOutgoingServer2serverShareEnabled')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isIncomingServer2serverShareEnabled')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isIncomingServer2serverShareEnabled')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isLookupServerQueriesEnabled')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isLookupServerUploadEnabled')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isFederatedGroupSharingSupported')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isOutgoingServer2serverGroupShareEnabled')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isIncomingServer2serverGroupShareEnabled')
			->willReturn($state);
		$this->federatedShareProvider
			->expects($this->once())
			->method('isFederatedTrustedShareAutoAccept')
			->willReturn($state);
		$this->gsConfig->expects($this->once())->method('onlyInternalFederation')
			->willReturn($state);

		$calls = [
			['internalOnly', $state],
			['sharingFederatedDocUrl', 'doc-link'],
			['outgoingServer2serverShareEnabled', $state],
			['incomingServer2serverShareEnabled', $state],
			['federatedGroupSharingSupported', $state],
			['outgoingServer2serverGroupShareEnabled', $state],
			['incomingServer2serverGroupShareEnabled', $state],
			['lookupServerEnabled', $state],
			['lookupServerUploadEnabled', $state],
			['federatedTrustedShareAutoAccept', $state],
		];
		$this->initialState->expects($this->exactly(10))
			->method('provideInitialState')
			->willReturnCallback(function () use (&$calls): void {
				$expected = array_shift($calls);
				$this->assertSame($expected, func_get_args());
			});

		$expected = new TemplateResponse('federatedfilesharing', 'settings-admin', [], '');
		$this->assertEquals($expected, $this->admin->getForm());
	}

	public function testGetSection(): void {
		$this->assertSame('sharing', $this->admin->getSection());
	}

	public function testGetPriority(): void {
		$this->assertSame(20, $this->admin->getPriority());
	}
}