string $filePath). */ private $civiTestClasses; /** * @param bool $force * * @return object */ public static function &singleton($force = FALSE) { if ($force || self::$_singleton === NULL) { self::$_singleton = new CRM_Core_ClassLoader(); } return self::$_singleton; } /** * Has this been registered already. * * @var bool */ protected $_registered; /** * Class constructor. */ protected function __construct() { $this->_registered = FALSE; $this->civiTestClasses = [ 'CiviCaseTestCase', 'CiviDBAssert', 'CiviMailUtils', 'CiviReportTestCase', 'CiviSeleniumTestCase', 'CiviTestSuite', 'CiviUnitTestCase', 'CiviEndToEndTestCase', 'Contact', 'ContributionPage', 'Custom', 'Event', 'Membership', 'Participant', 'PaypalPro', ]; } /** * Requires the autoload.php generated by composer * * @return void */ protected function requireComposerAutoload() { // We are trying to locate 'vendor/autoload.php'. When installing CiviCRM // manually from the built tarball, that will be two directories up in the // civicrm-core directory. However, if civicrm-core was installed via // composer as a library, that'll be 5 directories up where composer was // run (ex. the Drupal root on a Drupal 8 site). $civicrm_base_path = dirname(dirname(__DIR__)); $top_path = dirname(dirname(dirname(dirname(dirname(__DIR__))))); if (file_exists($civicrm_base_path . '/vendor/autoload.php')) { require_once $civicrm_base_path . '/vendor/autoload.php'; } elseif (file_exists($top_path . '/vendor/autoload.php')) { require_once $top_path . '/vendor/autoload.php'; } } /** * Registers this instance as an autoloader. * * @param bool $prepend * Whether to prepend the autoloader or not. * * @api */ public function register($prepend = FALSE) { if ($this->_registered) { return; } $civicrm_base_path = dirname(dirname(__DIR__)); $this->requireComposerAutoload(); // we do this to prevent a autoloader errors with joomla / 3rd party packages // use absolute path since we dont know the content of include_path as yet // CRM-11304 // TODO Remove this autoloader. For civicrm-core and civicrm-packages, the composer autoloader works fine. // Extensions rely on include_path-based autoloading spl_autoload_register([$this, 'loadClass'], TRUE, $prepend); $this->initHtmlPurifier($prepend); $this->_registered = TRUE; $packages_path = implode(DIRECTORY_SEPARATOR, [$civicrm_base_path, 'packages']); $include_paths = [ '.', $civicrm_base_path, $packages_path, ]; $include_paths = implode(PATH_SEPARATOR, $include_paths); set_include_path($include_paths . PATH_SEPARATOR . get_include_path()); // @todo Why do we need to load this again? $this->requireComposerAutoload(); } /** * Initialize HTML purifier class. * * @param string $prepend */ public function initHtmlPurifier($prepend) { if (class_exists('HTMLPurifier_Bootstrap')) { // HTMLPurifier is already initialized, e.g. by the Drupal module. return; } $htmlPurifierPath = $this->getHtmlPurifierPath(); if (FALSE === $htmlPurifierPath) { // No HTMLPurifier available, e.g. during installation. return; } require_once $htmlPurifierPath; spl_autoload_register(['HTMLPurifier_Bootstrap', 'autoload'], TRUE, $prepend); } /** * @return string|false * Path to the file where the class HTMLPurifier_Bootstrap is defined, or * FALSE, if such a file does not exist. */ private function getHtmlPurifierPath() { if (function_exists('libraries_get_path') && ($path = libraries_get_path('htmlpurifier')) && file_exists($file = $path . '/library/HTMLPurifier/Bootstrap.php') ) { // We are in Drupal 7, and the HTMLPurifier module is installed. // Use Drupal's HTMLPurifier path, to avoid conflicts. // @todo Verify that we are really in Drupal 7, and not in some other // environment that happens to provide a 'libraries_get_path()' function. return $file; } // we do this to prevent a autoloader errors with joomla / 3rd party packages // Use absolute path, since we don't know the content of include_path yet. // CRM-11304 $file = dirname(__FILE__) . '/../../packages/IDS/vendors/htmlpurifer/HTMLPurifier/Bootstrap.php'; if (file_exists($file)) { return $file; } return FALSE; } /** * @param $class */ public function loadClass($class) { if ( // Only load classes that clearly belong to CiviCRM. // Note: api/v3 does not use classes, but api_v3's test-suite does (0 === strncmp($class, 'CRM_', 4) || 0 === strncmp($class, 'CRMTraits', 9) || 0 === strncmp($class, 'api_v3_', 7) || 0 === strncmp($class, 'WebTest_', 8) || 0 === strncmp($class, 'E2E_', 4)) && // Do not load PHP 5.3 namespaced classes. // (in a future version, maybe) FALSE === strpos($class, '\\') ) { $file = strtr($class, '_', '/') . '.php'; // There is some question about the best way to do this. // "require_once" is nice because it's simple and throws // intelligible errors. if (FALSE != stream_resolve_include_path($file)) { require_once $file; } } elseif (in_array($class, $this->civiTestClasses)) { $file = "tests/phpunit/CiviTest/{$class}.php"; if (FALSE != stream_resolve_include_path($file)) { require_once $file; } } elseif ($class === 'CiviSeleniumSettings') { if (!empty($GLOBALS['_CV'])) { require_once 'tests/phpunit/CiviTest/CiviSeleniumSettings.auto.php'; } elseif (CRM_Utils_File::isIncludable('tests/phpunit/CiviTest/CiviSeleniumSettings.php')) { require_once 'tests/phpunit/CiviTest/CiviSeleniumSettings.php'; } } } }