nextcloud/tests/bootstrap.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

45 lines
973 B
PHP
Raw Normal View History

2012-10-03 15:06:01 -04:00
<?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');
if ($configDir) {
define('PHPUNIT_CONFIG_DIR', $configDir);
}
require_once __DIR__ . '/../lib/base.php';
require_once __DIR__ . '/autoload.php';
2012-10-03 15:06:01 -04:00
2016-05-19 09:49:27 -04:00
\OC::$composerAutoloader->addPsr4('Tests\\', OC::$SERVERROOT . '/tests/', true);
2015-08-18 09:35:02 -04:00
$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());
}
}
2014-07-17 05:46:57 -04:00
2012-10-12 09:44:48 -04:00
OC_Hook::clear();
set_include_path(
get_include_path() . PATH_SEPARATOR
. '/usr/share/php' . PATH_SEPARATOR
. __DIR__ . '/..'
);