aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/tests/SetupChecks/CodeIntegrityTest.php
blob: 52101aed901f9a233ef387aca23569ba3be859e3 (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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
<?php

declare(strict_types=1);

/**
 * SPDX-FileCopyrightText: 2024 Nextcloud GmbH and Nextcloud contributors
 * SPDX-License-Identifier: AGPL-3.0-or-later
 */
namespace OCA\Settings\Tests;

use OC\IntegrityCheck\Checker;
use OCA\Settings\SetupChecks\CodeIntegrity;
use OCP\IL10N;
use OCP\IURLGenerator;
use OCP\SetupCheck\SetupResult;
use PHPUnit\Framework\MockObject\MockObject;
use Test\TestCase;

class CodeIntegrityTest extends TestCase {
	
	private IL10N&MockObject $l10n;
	private IURLGenerator&MockObject $urlGenerator;
	private Checker&MockObject $checker;

	protected function setUp(): void {
		parent::setUp();

		$this->l10n = $this->getMockBuilder(IL10N::class)
			->disableOriginalConstructor()->getMock();
		$this->l10n->expects($this->any())
			->method('t')
			->willReturnCallback(function ($message, array $replace) {
				return vsprintf($message, $replace);
			});
		$this->urlGenerator = $this->createMock(IURLGenerator::class);
		$this->checker = $this->createMock(Checker::class);
	}

	public function testSkipOnDisabled(): void {
		$this->checker->expects($this->atLeastOnce())
			->method('isCodeCheckEnforced')
			->willReturn(false);

		$check = new CodeIntegrity(
			$this->l10n,
			$this->urlGenerator,
			$this->checker,
		);
		$this->assertEquals(SetupResult::INFO, $check->run()->getSeverity());
	}

	public function testSuccessOnEmptyResults(): void {
		$this->checker->expects($this->atLeastOnce())
			->method('isCodeCheckEnforced')
			->willReturn(true);
		$this->checker->expects($this->atLeastOnce())
			->method('getResults')
			->willReturn([]);
		$this->checker->expects(($this->atLeastOnce()))
			->method('hasPassedCheck')
			->willReturn(true);

		$check = new CodeIntegrity(
			$this->l10n,
			$this->urlGenerator,
			$this->checker,
		);
		$this->assertEquals(SetupResult::SUCCESS, $check->run()->getSeverity());
	}

	public function testCheckerIsReRunWithoutResults(): void {
		$this->checker->expects($this->atLeastOnce())
			->method('isCodeCheckEnforced')
			->willReturn(true);
		$this->checker->expects($this->atLeastOnce())
			->method('getResults')
			->willReturn(null);
		$this->checker->expects(($this->atLeastOnce()))
			->method('hasPassedCheck')
			->willReturn(true);

		// This is important and must be called
		$this->checker->expects($this->once())
			->method('runInstanceVerification');

		$check = new CodeIntegrity(
			$this->l10n,
			$this->urlGenerator,
			$this->checker,
		);
		$this->assertEquals(SetupResult::SUCCESS, $check->run()->getSeverity());
	}

	public function testCheckerIsNotReReInAdvance(): void {
		$this->checker->expects($this->atLeastOnce())
			->method('isCodeCheckEnforced')
			->willReturn(true);
		$this->checker->expects($this->atLeastOnce())
			->method('getResults')
			->willReturn(['mocked']);
		$this->checker->expects(($this->atLeastOnce()))
			->method('hasPassedCheck')
			->willReturn(true);

		// There are results thus this must never be called
		$this->checker->expects($this->never())
			->method('runInstanceVerification');

		$check = new CodeIntegrity(
			$this->l10n,
			$this->urlGenerator,
			$this->checker,
		);
		$this->assertEquals(SetupResult::SUCCESS, $check->run()->getSeverity());
	}

	public function testErrorOnMissingIntegrity(): void {
		$this->checker->expects($this->atLeastOnce())
			->method('isCodeCheckEnforced')
			->willReturn(true);
		$this->checker->expects($this->atLeastOnce())
			->method('getResults')
			->willReturn(['mocked']);
		$this->checker->expects(($this->atLeastOnce()))
			->method('hasPassedCheck')
			->willReturn(false);

		$check = new CodeIntegrity(
			$this->l10n,
			$this->urlGenerator,
			$this->checker,
		);
		$this->assertEquals(SetupResult::ERROR, $check->run()->getSeverity());
	}
}