![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ namespace Magento\TestFramework\Bootstrap; use Magento\TestFramework\Application; /** * Bootstrap of the custom DocBlock annotations * * @SuppressWarnings(PHPMD.CouplingBetweenObjects) */ class DocBlock { /** * @var string */ protected $_fixturesBaseDir; /** * @param string $fixturesBaseDir */ public function __construct($fixturesBaseDir) { $this->_fixturesBaseDir = $fixturesBaseDir; } /** * Activate custom DocBlock annotations along with more-or-less permanent workarounds * * @param Application $application */ public function registerAnnotations(Application $application) { $eventManager = new \Magento\TestFramework\EventManager($this->_getSubscribers($application)); \Magento\TestFramework\Event\PhpUnit::setDefaultEventManager($eventManager); \Magento\TestFramework\Event\Magento::setDefaultEventManager($eventManager); } /** * Get list of subscribers. * * Note: order of registering (and applying) annotations is important. * To allow config fixtures to deal with fixture stores, data fixtures should be processed first. * ConfigFixture applied twice because data fixtures could clean config and clean custom settings * * @param Application $application * @return array */ protected function _getSubscribers(Application $application) { return [ new \Magento\TestFramework\Workaround\Segfault(), new \Magento\TestFramework\Workaround\Cleanup\TestCaseProperties(), new \Magento\TestFramework\Workaround\Cleanup\StaticProperties(), new \Magento\TestFramework\Isolation\FlushDataFixtureStorage(), new \Magento\TestFramework\Isolation\WorkingDirectory(), new \Magento\TestFramework\Isolation\DeploymentConfig(), new \Magento\TestFramework\Workaround\Override\Fixture\Resolver\TestSetter(), new \Magento\TestFramework\Annotation\AppIsolation($application), new \Magento\TestFramework\Annotation\IndexerDimensionMode(), new \Magento\TestFramework\Isolation\AppConfig(), new \Magento\TestFramework\Annotation\ConfigFixture(), new \Magento\TestFramework\Annotation\DataFixtureBeforeTransaction(), new \Magento\TestFramework\Event\Transaction( new \Magento\TestFramework\EventManager( [ new \Magento\TestFramework\Annotation\DbIsolation(), new \Magento\TestFramework\Annotation\DataFixture(), ] ) ), new \Magento\TestFramework\Annotation\ComponentRegistrarFixture($this->_fixturesBaseDir), new \Magento\TestFramework\Annotation\AppArea($application), new \Magento\TestFramework\Annotation\Cache(), new \Magento\TestFramework\Annotation\AdminConfigFixture(), new \Magento\TestFramework\Annotation\ConfigFixture(), ]; } }