123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestFramework\Annotation;
- use RecursiveDirectoryIterator;
- use RecursiveIteratorIterator;
- use RegexIterator;
- /**
- * Implementation of the @magentoComponentsDir DocBlock annotation
- */
- class ComponentRegistrarFixture
- {
- /**
- * Annotation name
- */
- const ANNOTATION_NAME = 'magentoComponentsDir';
- /**#@+
- * Properties of components registrar
- */
- const REGISTRAR_CLASS = \Magento\Framework\Component\ComponentRegistrar::class;
- const PATHS_FIELD = 'paths';
- /**#@-*/
- /**
- * Fixtures base dir
- *
- * @var string
- */
- private $fixtureBaseDir;
- /**
- * Original values of registered components
- *
- * @var array
- */
- private $origComponents = null;
- /**
- * Constructor
- *
- * @param string $fixtureBaseDir
- */
- public function __construct($fixtureBaseDir)
- {
- $this->fixtureBaseDir = $fixtureBaseDir;
- }
- /**
- * Handler for 'startTest' event
- *
- * @param \PHPUnit\Framework\TestCase $test
- * @return void
- */
- public function startTest(\PHPUnit\Framework\TestCase $test)
- {
- $this->registerComponents($test);
- }
- /**
- * Handler for 'endTest' event
- *
- * @param \PHPUnit\Framework\TestCase $test
- * @return void
- *
- * @SuppressWarnings(PHPMD.UnusedFormalParameter)
- */
- public function endTest(\PHPUnit\Framework\TestCase $test)
- {
- $this->restoreComponents();
- }
- /**
- * Register fixture components
- *
- * @param \PHPUnit\Framework\TestCase $test
- */
- private function registerComponents(\PHPUnit\Framework\TestCase $test)
- {
- $annotations = $test->getAnnotations();
- $componentAnnotations = [];
- if (isset($annotations['class'][self::ANNOTATION_NAME])) {
- $componentAnnotations = array_merge($componentAnnotations, $annotations['class'][self::ANNOTATION_NAME]);
- }
- if (isset($annotations['method'][self::ANNOTATION_NAME])) {
- $componentAnnotations = array_merge($componentAnnotations, $annotations['method'][self::ANNOTATION_NAME]);
- }
- if (empty($componentAnnotations)) {
- return;
- }
- $componentAnnotations = array_unique($componentAnnotations);
- $reflection = new \ReflectionClass(self::REGISTRAR_CLASS);
- $paths = $reflection->getProperty(self::PATHS_FIELD);
- $paths->setAccessible(true);
- $this->origComponents = $paths->getValue();
- $paths->setAccessible(false);
- foreach ($componentAnnotations as $fixturePath) {
- $fixturesDir = $this->fixtureBaseDir . '/' . $fixturePath;
- if (!file_exists($fixturesDir)) {
- throw new \InvalidArgumentException(
- self::ANNOTATION_NAME . " fixture '$fixturePath' does not exist"
- );
- }
- $iterator = new RegexIterator(
- new RecursiveIteratorIterator(
- new RecursiveDirectoryIterator($fixturesDir, \FilesystemIterator::SKIP_DOTS)
- ),
- '/^.+\/registration\.php$/'
- );
- /**
- * @var \SplFileInfo $registrationFile
- */
- foreach ($iterator as $registrationFile) {
- require $registrationFile->getRealPath();
- }
- }
- }
- /**
- * Restore registered components list to the original
- */
- private function restoreComponents()
- {
- if (null !== $this->origComponents) {
- $reflection = new \ReflectionClass(self::REGISTRAR_CLASS);
- $paths = $reflection->getProperty(self::PATHS_FIELD);
- $paths->setAccessible(true);
- $paths->setValue($this->origComponents);
- $paths->setAccessible(false);
- $this->origComponents = null;
- }
- }
- }
|