-
-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(IntegrityCheck): Ensure the check is run if no results are available
If there are no cached results the current implementation was also returning an empty array, but this was the same as when there was a successful run. So to distinguish this we return `null` if there are *no* results. In this case we need to rerun the integrity checker. Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de> [skip ci]
- Loading branch information
1 parent
23cc6cf
commit 2c2a62a
Showing
4 changed files
with
151 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,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()); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters