| Current Path : /home/rtorresani/www/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/ |
| Current File : //home/rtorresani/www/dev/tests/integration/framework/Magento/TestFramework/Bootstrap/DocBlock.php |
<?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(),
];
}
}