chore: Get rid of AppLocator helper
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>pull/53895/head
parent
3cea218750
commit
b7c15949ce
@ -1,33 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
declare(strict_types=1);
|
|
||||||
/**
|
|
||||||
* SPDX-FileCopyrightText: 2016-2024 Nextcloud GmbH and Nextcloud contributors
|
|
||||||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
||||||
* SPDX-License-Identifier: AGPL-3.0-only
|
|
||||||
*/
|
|
||||||
namespace OC\IntegrityCheck\Helpers;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Class AppLocator provides a non-static helper for OC_App::getPath($appId)
|
|
||||||
* it is not possible to use IAppManager at this point as IAppManager has a
|
|
||||||
* dependency on a running Nextcloud.
|
|
||||||
*
|
|
||||||
* @package OC\IntegrityCheck\Helpers
|
|
||||||
*/
|
|
||||||
class AppLocator {
|
|
||||||
/**
|
|
||||||
* Provides \OC_App::getAppPath($appId)
|
|
||||||
*
|
|
||||||
* @param string $appId
|
|
||||||
* @return string
|
|
||||||
* @throws \Exception If the app cannot be found
|
|
||||||
*/
|
|
||||||
public function getAppPath(string $appId): string {
|
|
||||||
$path = \OC_App::getAppPath($appId);
|
|
||||||
if ($path === false) {
|
|
||||||
throw new \Exception('App not found');
|
|
||||||
}
|
|
||||||
return $path;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@ -1,34 +0,0 @@
|
|||||||
<?php
|
|
||||||
|
|
||||||
/**
|
|
||||||
* SPDX-FileCopyrightText: 2019-2024 Nextcloud GmbH and Nextcloud contributors
|
|
||||||
* SPDX-FileCopyrightText: 2016 ownCloud, Inc.
|
|
||||||
* SPDX-License-Identifier: AGPL-3.0-only
|
|
||||||
*/
|
|
||||||
|
|
||||||
namespace Test\IntegrityCheck\Helpers;
|
|
||||||
|
|
||||||
use OC\IntegrityCheck\Helpers\AppLocator;
|
|
||||||
use Test\TestCase;
|
|
||||||
|
|
||||||
class AppLocatorTest extends TestCase {
|
|
||||||
/** @var AppLocator */
|
|
||||||
private $locator;
|
|
||||||
|
|
||||||
protected function setUp(): void {
|
|
||||||
parent::setUp();
|
|
||||||
$this->locator = new AppLocator();
|
|
||||||
}
|
|
||||||
|
|
||||||
public function testGetAppPath(): void {
|
|
||||||
$this->assertSame(\OC_App::getAppPath('files'), $this->locator->getAppPath('files'));
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
public function testGetAppPathNotExistentApp(): void {
|
|
||||||
$this->expectException(\Exception::class);
|
|
||||||
$this->expectExceptionMessage('App not found');
|
|
||||||
|
|
||||||
$this->locator->getAppPath('aTotallyNotExistingApp');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
Loading…
Reference in New Issue