2016-08-15 10:24:56 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
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;
|
2016-08-15 10:24:56 -04:00
|
|
|
use Test\TestCase;
|
|
|
|
|
|
|
|
|
|
class SectionTest extends TestCase {
|
|
|
|
|
/** @var IL10N */
|
|
|
|
|
private $l;
|
2017-01-21 00:12:45 -05:00
|
|
|
/** @var IURLGenerator */
|
|
|
|
|
private $urlGenerator;
|
2016-08-15 10:24:56 -04:00
|
|
|
/** @var Section */
|
|
|
|
|
private $section;
|
|
|
|
|
|
2019-11-27 09:27:18 -05:00
|
|
|
protected function setUp(): void {
|
2016-08-15 10:24:56 -04:00
|
|
|
parent::setUp();
|
2017-10-24 09:26:53 -04:00
|
|
|
$this->urlGenerator = $this->getMockBuilder(IURLGenerator::class)->disableOriginalConstructor()->getMock();
|
|
|
|
|
$this->l = $this->getMockBuilder(IL10N::class)->disableOriginalConstructor()->getMock();
|
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() {
|
|
|
|
|
$this->assertSame('externalstorages', $this->section->getID());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function testGetName() {
|
|
|
|
|
$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() {
|
|
|
|
|
$this->assertSame(10, $this->section->getPriority());
|
|
|
|
|
}
|
|
|
|
|
}
|