summaryrefslogtreecommitdiffstats
path: root/tests/php/Settings/Admin/StunServerTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/php/Settings/Admin/StunServerTest.php')
-rw-r--r--tests/php/Settings/Admin/StunServerTest.php85
1 files changed, 0 insertions, 85 deletions
diff --git a/tests/php/Settings/Admin/StunServerTest.php b/tests/php/Settings/Admin/StunServerTest.php
deleted file mode 100644
index d061782de..000000000
--- a/tests/php/Settings/Admin/StunServerTest.php
+++ /dev/null
@@ -1,85 +0,0 @@
-<?php
-declare(strict_types=1);
-/**
- * @copyright Copyright (c) 2017 Joas Schilling <coding@schilljs.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\Talk\Tests\php\Settings\Admin;
-
-use OCA\Talk\Config;
-use OCA\Talk\Settings\Admin\StunServer;
-use OCP\IConfig;
-use OCP\IInitialStateService;
-use PHPUnit\Framework\MockObject\MockObject;
-
-class StunServerTest extends \Test\TestCase {
-
- /** @var Config|MockObject */
- protected $config;
- /** @var IConfig|MockObject */
- protected $serverConfig;
- /** @var IInitialStateService|MockObject */
- protected $initialState;
- /** @var StunServer */
- protected $admin;
-
- public function setUp(): void {
- parent::setUp();
-
- $this->config = $this->createMock(Config::class);
- $this->serverConfig = $this->createMock(IConfig::class);
- $this->initialState = $this->createMock(IInitialStateService::class);
-
- $this->admin = new StunServer(
- $this->config,
- $this->serverConfig,
- $this->initialState
- );
- }
-
- public function testGetSection(): void {
- $this->assertNotEmpty($this->admin->getSection());
- }
-
- public function testGetPriority(): void {
- $this->assertGreaterThan(0, $this->admin->getPriority());
- }
-
- public function testGetForm(): void {
- $this->config->expects($this->once())
- ->method('getStunServers')
- ->willReturn(['getStunServers']);
- $this->serverConfig->expects($this->once())
- ->method('getSystemValueBool')
- ->with('has_internet_connection', true)
- ->willReturn(true);
-
- $this->initialState->expects($this->exactly(2))
- ->method('provideInitialState')
- ->withConsecutive(
- ['talk', 'stun_servers', ['getStunServers']],
- ['talk', 'has_internet_connection', true]
- );
-
- $form = $this->admin->getForm();
- $this->assertSame('settings/admin/stun-server', $form->getTemplateName());
- $this->assertSame('', $form->getRenderAs());
- $this->assertCount(0, $form->getParams());
- }
-}