https://github.com/owncloud/core
Raw File
Tip revision: 47f1a2ec3aaf3e257d7309c4341773080219b5e4 authored by HariBhandari07 on 07 July 2020, 04:19:34 UTC
[Tests-Only] Do not Merge. Run local storage test
Tip revision: 47f1a2e
apps.php
<?php
/**
 * Copyright (c) 2012 Robin Appelman <icewind@owncloud.com>
 * This file is licensed under the Affero General Public License version 3 or
 * later.
 * See the COPYING-README file.
 */

function loadDirectory($path) {
	if (\stripos(\basename($path), 'acceptance') !== false) {
		return;
	}
	if (\strcasecmp(\basename($path), 'ui') === 0) {
		return;
	}
	$dirEntries = \scandir($path);
	foreach ($dirEntries as $name) {
		if ($name[0] !== '.') {
			$file = $path . '/' . $name;
			if (\is_dir($file)) {
				loadDirectory($file);
			} elseif (\substr($name, -4, 4) === '.php') {
				require_once $file;
			}
		}
	}
}

function getSubclasses($parentClassName) {
	$classes = [];
	foreach (\get_declared_classes() as $className) {
		if (\is_subclass_of($className, $parentClassName)) {
			$classes[] = $className;
		}
	}

	return $classes;
}

$apps = OC_App::getEnabledApps();

foreach ($apps as $app) {
	// skip files_external, it has its own test suite
	if ($app === 'files_external') {
		continue;
	}
	$dir = OC_App::getAppPath($app);

	// only consider the "built-in" apps found in the apps directory
	// we do not want to automatically run unit tests for extra apps
	// that might be in a secondary apps dir like apps-external
	if (\basename(\dirname($dir)) === "apps") {
		if (\is_dir($dir . '/tests')) {
			loadDirectory($dir . '/tests');
		}
	}
}
back to top