2016-08-15 10:24:56 -04:00
|
|
|
<?php
|
2025-05-17 05:46:26 -04:00
|
|
|
|
|
|
|
|
declare(strict_types=1);
|
2016-08-15 10:24:56 -04:00
|
|
|
/**
|
2024-06-06 03:55:47 -04:00
|
|
|
* SPDX-FileCopyrightText: 2016 Nextcloud GmbH and Nextcloud contributors
|
|
|
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
2016-08-15 10:24:56 -04:00
|
|
|
*/
|
|
|
|
|
namespace OCA\Files_External\Tests\Settings;
|
|
|
|
|
|
|
|
|
|
use OCA\Files_External\Settings\Section;
|
|
|
|
|
use OCP\IL10N;
|
2017-01-21 00:12:45 -05:00
|
|
|
use OCP\IURLGenerator;
|
2025-05-17 05:46:26 -04:00
|
|
|
use PHPUnit\Framework\MockObject\MockObject;
|
2016-08-15 10:24:56 -04:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
|
|
class SectionTest extends TestCase {
|
2025-05-17 05:46:26 -04:00
|
|
|
private IL10N&MockObject $l;
|
|
|
|
|
private IURLGenerator&MockObject $urlGenerator;
|
|
|
|
|
private Section $section;
|
2016-08-15 10:24:56 -04:00
|
|
|
|
2019-11-27 09:27:18 -05:00
|
|
|
protected function setUp(): void {
|
2016-08-15 10:24:56 -04:00
|
|
|
parent::setUp();
|
2025-05-17 05:46:26 -04:00
|
|
|
$this->urlGenerator = $this->createMock(IURLGenerator::class);
|
|
|
|
|
$this->l = $this->createMock(IL10N::class);
|
2016-08-15 10:24:56 -04:00
|
|
|
|
|
|
|
|
$this->section = new Section(
|
2017-01-21 00:12:45 -05:00
|
|
|
$this->urlGenerator,
|
2016-08-15 10:24:56 -04:00
|
|
|
$this->l
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetID(): void {
|
|
|
|
|
$this->assertSame('externalstorages', $this->section->getID());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetName(): void {
|
|
|
|
|
$this->l
|
|
|
|
|
->expects($this->once())
|
|
|
|
|
->method('t')
|
2021-05-20 06:13:04 -04:00
|
|
|
->with('External storage')
|
|
|
|
|
->willReturn('External storage');
|
2016-08-15 10:24:56 -04:00
|
|
|
|
2021-05-20 06:13:04 -04:00
|
|
|
$this->assertSame('External storage', $this->section->getName());
|
2016-08-15 10:24:56 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetPriority(): void {
|
|
|
|
|
$this->assertSame(10, $this->section->getPriority());
|
|
|
|
|
}
|
|
|
|
|
}
|