diff options
Diffstat (limited to 'tests/bootstrap.php')
-rw-r--r-- | tests/bootstrap.php | 32 |
1 files changed, 28 insertions, 4 deletions
diff --git a/tests/bootstrap.php b/tests/bootstrap.php index 7e5e4c7c547..1fb54344d49 100644 --- a/tests/bootstrap.php +++ b/tests/bootstrap.php @@ -1,5 +1,16 @@ <?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 + */ + +use OCP\App\IAppManager; +use OCP\Server; + define('PHPUNIT_RUN', 1); $configDir = getenv('CONFIG_DIR'); @@ -8,13 +19,26 @@ if ($configDir) { } require_once __DIR__ . '/../lib/base.php'; +require_once __DIR__ . '/autoload.php'; -\OC::$composerAutoloader->addPsr4('Test\\', OC::$SERVERROOT . '/tests/lib/', true); \OC::$composerAutoloader->addPsr4('Tests\\', OC::$SERVERROOT . '/tests/', true); -// load all enabled apps -\OC_App::loadApps(); +$dontLoadApps = getenv('TEST_DONT_LOAD_APPS'); +if (!$dontLoadApps) { + // load all apps + $appManager = Server::get(IAppManager::class); + foreach (new \DirectoryIterator(__DIR__ . '/../apps/') as $file) { + if ($file->isDot()) { + continue; + } + $appManager->loadApp($file->getFilename()); + } +} OC_Hook::clear(); -set_include_path(get_include_path() . PATH_SEPARATOR . '/usr/share/php'); +set_include_path( + get_include_path() . PATH_SEPARATOR + . '/usr/share/php' . PATH_SEPARATOR + . __DIR__ . '/..' +); |