summaryrefslogtreecommitdiffstats
path: root/tests/php/Settings/Admin/StunServerTest.php
blob: d061782de45c807149a88cbc83d834bad14b7cfa (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
<?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());
	}
}