123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282 |
- <?php
- /**
- * @copyright Copyright (c) 2016 Lukas Reschke <lukas@statuscode.ch>
- *
- * @author Arthur Schiwon <blizzz@arthur-schiwon.de>
- * @author Bjoern Schiessle <bjoern@schiessle.org>
- * @author Christoph Wurst <christoph@winzerhof-wurst.at>
- * @author Daniel Kesselberg <mail@danielkesselberg.de>
- * @author Joas Schilling <coding@schilljs.com>
- * @author Lukas Reschke <lukas@statuscode.ch>
- * @author Morris Jobke <hey@morrisjobke.de>
- * @author Robin Appelman <robin@icewind.nl>
- * @author Roeland Jago Douma <roeland@famdouma.nl>
- * @author Vincent Petry <vincent@nextcloud.com>
- *
- * @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\Settings\Tests\Settings\Admin;
- use OCA\Settings\Settings\Admin\Sharing;
- use OCP\App\IAppManager;
- use OCP\AppFramework\Http\TemplateResponse;
- use OCP\AppFramework\Services\IInitialState;
- use OCP\Constants;
- use OCP\IConfig;
- use OCP\IL10N;
- use OCP\IURLGenerator;
- use OCP\Share\IManager;
- use PHPUnit\Framework\MockObject\MockObject;
- use Test\TestCase;
- class SharingTest extends TestCase {
- /** @var Sharing */
- private $admin;
- /** @var IConfig */
- private $config;
- /** @var IL10N|MockObject */
- private $l10n;
- /** @var IManager|MockObject */
- private $shareManager;
- /** @var IAppManager|MockObject */
- private $appManager;
- /** @var IURLGenerator|MockObject */
- private $urlGenerator;
- /** @var IInitialState|MockObject */
- private $initialState;
- protected function setUp(): void {
- parent::setUp();
- /** @var IConfig|MockObject */
- $this->config = $this->getMockBuilder(IConfig::class)->getMock();
- /** @var IL10N|MockObject */
- $this->l10n = $this->getMockBuilder(IL10N::class)->getMock();
- /** @var IManager|MockObject */
- $this->shareManager = $this->getMockBuilder(IManager::class)->getMock();
- /** @var IAppManager|MockObject */
- $this->appManager = $this->getMockBuilder(IAppManager::class)->getMock();
- /** @var IURLGenerator|MockObject */
- $this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)->getMock();
- /** @var IInitialState|MockObject */
- $this->initialState = $this->getMockBuilder(IInitialState::class)->getMock();
- $this->admin = new Sharing(
- $this->config,
- $this->l10n,
- $this->shareManager,
- $this->appManager,
- $this->urlGenerator,
- $this->initialState,
- "settings",
- );
- }
- public function testGetFormWithoutExcludedGroups(): void {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_exclude_groups_list', '', ''],
- ['core', 'shareapi_allow_links_exclude_groups', '', ''],
- ['core', 'shareapi_allow_group_sharing', 'yes', 'yes'],
- ['core', 'shareapi_allow_links', 'yes', 'yes'],
- ['core', 'shareapi_allow_public_upload', 'yes', 'yes'],
- ['core', 'shareapi_allow_resharing', 'yes', 'yes'],
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_full_match', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_full_match_userid', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_full_match_email', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_full_match_ignore_second_dn', 'no', 'no'],
- ['core', 'shareapi_enabled', 'yes', 'yes'],
- ['core', 'shareapi_default_expire_date', 'no', 'no'],
- ['core', 'shareapi_expire_after_n_days', '7', '7'],
- ['core', 'shareapi_enforce_expire_date', 'no', 'no'],
- ['core', 'shareapi_exclude_groups', 'no', 'no'],
- ['core', 'shareapi_public_link_disclaimertext', null, 'Lorem ipsum'],
- ['core', 'shareapi_enable_link_password_by_default', 'no', 'yes'],
- ['core', 'shareapi_default_permissions', (string)Constants::PERMISSION_ALL, Constants::PERMISSION_ALL],
- ['core', 'shareapi_default_internal_expire_date', 'no', 'no'],
- ['core', 'shareapi_internal_expire_after_n_days', '7', '7'],
- ['core', 'shareapi_enforce_internal_expire_date', 'no', 'no'],
- ['core', 'shareapi_default_remote_expire_date', 'no', 'no'],
- ['core', 'shareapi_remote_expire_after_n_days', '7', '7'],
- ['core', 'shareapi_enforce_remote_expire_date', 'no', 'no'],
- ['core', 'shareapi_enforce_links_password_excluded_groups', '', ''],
- ['core', 'shareapi_only_share_with_group_members_exclude_group_list', '', '[]'],
- ]);
- $this->shareManager->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $this->appManager->method('isEnabledForUser')->with('files_sharing')->willReturn(false);
- $this->initialState
- ->expects($this->exactly(3))
- ->method('provideInitialState')
- ->withConsecutive(
- ['sharingAppEnabled', false],
- ['sharingDocumentation', ''],
- [
- 'sharingSettings',
- [
- 'allowGroupSharing' => true,
- 'allowLinks' => true,
- 'allowPublicUpload' => true,
- 'allowResharing' => true,
- 'allowShareDialogUserEnumeration' => true,
- 'restrictUserEnumerationToGroup' => false,
- 'restrictUserEnumerationToPhone' => false,
- 'restrictUserEnumerationFullMatch' => true,
- 'restrictUserEnumerationFullMatchUserId' => true,
- 'restrictUserEnumerationFullMatchEmail' => true,
- 'restrictUserEnumerationFullMatchIgnoreSecondDN' => false,
- 'enforceLinksPassword' => false,
- 'onlyShareWithGroupMembers' => false,
- 'enabled' => true,
- 'defaultExpireDate' => false,
- 'expireAfterNDays' => '7',
- 'enforceExpireDate' => false,
- 'excludeGroups' => 'no',
- 'excludeGroupsList' => [],
- 'publicShareDisclaimerText' => 'Lorem ipsum',
- 'enableLinkPasswordByDefault' => true,
- 'defaultPermissions' => Constants::PERMISSION_ALL,
- 'defaultInternalExpireDate' => false,
- 'internalExpireAfterNDays' => '7',
- 'enforceInternalExpireDate' => false,
- 'defaultRemoteExpireDate' => false,
- 'remoteExpireAfterNDays' => '7',
- 'enforceRemoteExpireDate' => false,
- 'allowLinksExcludeGroups' => [],
- 'passwordExcludedGroups' => [],
- 'passwordExcludedGroupsFeatureEnabled' => false,
- 'onlyShareWithGroupMembersExcludeGroupList' => [],
- ]
- ],
- );
- $expected = new TemplateResponse(
- 'settings',
- 'settings/admin/sharing',
- [],
- ''
- );
- $this->assertEquals($expected, $this->admin->getForm());
- }
- public function testGetFormWithExcludedGroups(): void {
- $this->config
- ->method('getAppValue')
- ->willReturnMap([
- ['core', 'shareapi_exclude_groups_list', '', '["NoSharers","OtherNoSharers"]'],
- ['core', 'shareapi_allow_links_exclude_groups', '', ''],
- ['core', 'shareapi_allow_group_sharing', 'yes', 'yes'],
- ['core', 'shareapi_allow_links', 'yes', 'yes'],
- ['core', 'shareapi_allow_public_upload', 'yes', 'yes'],
- ['core', 'shareapi_allow_resharing', 'yes', 'yes'],
- ['core', 'shareapi_allow_share_dialog_user_enumeration', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_to_group', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_to_phone', 'no', 'no'],
- ['core', 'shareapi_restrict_user_enumeration_full_match', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_full_match_userid', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_full_match_email', 'yes', 'yes'],
- ['core', 'shareapi_restrict_user_enumeration_full_match_ignore_second_dn', 'no', 'no'],
- ['core', 'shareapi_enabled', 'yes', 'yes'],
- ['core', 'shareapi_default_expire_date', 'no', 'no'],
- ['core', 'shareapi_expire_after_n_days', '7', '7'],
- ['core', 'shareapi_enforce_expire_date', 'no', 'no'],
- ['core', 'shareapi_exclude_groups', 'no', 'yes'],
- ['core', 'shareapi_public_link_disclaimertext', null, 'Lorem ipsum'],
- ['core', 'shareapi_enable_link_password_by_default', 'no', 'yes'],
- ['core', 'shareapi_default_permissions', (string)Constants::PERMISSION_ALL, Constants::PERMISSION_ALL],
- ['core', 'shareapi_default_internal_expire_date', 'no', 'no'],
- ['core', 'shareapi_internal_expire_after_n_days', '7', '7'],
- ['core', 'shareapi_enforce_internal_expire_date', 'no', 'no'],
- ['core', 'shareapi_default_remote_expire_date', 'no', 'no'],
- ['core', 'shareapi_remote_expire_after_n_days', '7', '7'],
- ['core', 'shareapi_enforce_remote_expire_date', 'no', 'no'],
- ['core', 'shareapi_enforce_links_password_excluded_groups', '', ''],
- ['core', 'shareapi_only_share_with_group_members_exclude_group_list', '', '[]'],
- ]);
- $this->shareManager->method('shareWithGroupMembersOnly')
- ->willReturn(false);
- $this->appManager->method('isEnabledForUser')->with('files_sharing')->willReturn(true);
- $this->initialState
- ->expects($this->exactly(3))
- ->method('provideInitialState')
- ->withConsecutive(
- ['sharingAppEnabled', true],
- ['sharingDocumentation', ''],
- [
- 'sharingSettings',
- [
- 'allowGroupSharing' => true,
- 'allowLinks' => true,
- 'allowPublicUpload' => true,
- 'allowResharing' => true,
- 'allowShareDialogUserEnumeration' => true,
- 'restrictUserEnumerationToGroup' => false,
- 'restrictUserEnumerationToPhone' => false,
- 'restrictUserEnumerationFullMatch' => true,
- 'restrictUserEnumerationFullMatchUserId' => true,
- 'restrictUserEnumerationFullMatchEmail' => true,
- 'restrictUserEnumerationFullMatchIgnoreSecondDN' => false,
- 'enforceLinksPassword' => false,
- 'onlyShareWithGroupMembers' => false,
- 'enabled' => true,
- 'defaultExpireDate' => false,
- 'expireAfterNDays' => '7',
- 'enforceExpireDate' => false,
- 'excludeGroups' => 'yes',
- 'excludeGroupsList' => ['NoSharers','OtherNoSharers'],
- 'publicShareDisclaimerText' => 'Lorem ipsum',
- 'enableLinkPasswordByDefault' => true,
- 'defaultPermissions' => Constants::PERMISSION_ALL,
- 'defaultInternalExpireDate' => false,
- 'internalExpireAfterNDays' => '7',
- 'enforceInternalExpireDate' => false,
- 'defaultRemoteExpireDate' => false,
- 'remoteExpireAfterNDays' => '7',
- 'enforceRemoteExpireDate' => false,
- 'allowLinksExcludeGroups' => [],
- 'passwordExcludedGroups' => [],
- 'passwordExcludedGroupsFeatureEnabled' => false,
- 'onlyShareWithGroupMembersExcludeGroupList' => [],
- ]
- ],
- );
- $expected = new TemplateResponse(
- 'settings',
- 'settings/admin/sharing',
- [],
- ''
- );
- $this->assertEquals($expected, $this->admin->getForm());
- }
- public function testGetSection(): void {
- $this->assertSame('sharing', $this->admin->getSection());
- }
- public function testGetPriority(): void {
- $this->assertSame(0, $this->admin->getPriority());
- }
- }
|