123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168 |
- <?php
- /**
- * Implementation of the magentoApiDataFixture DocBlock annotation.
- *
- * The difference of magentoApiDataFixture from magentoDataFixture is
- * that no transactions should be used for API data fixtures.
- * Otherwise fixture data will not be accessible to Web API functional tests.
- *
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\TestFramework\Annotation;
- class ApiDataFixture
- {
- /**
- * @var string
- */
- protected $_fixtureBaseDir;
- /**
- * Fixtures that have been applied
- *
- * @var array
- */
- private $_appliedFixtures = [];
- /**
- * Constructor
- *
- * @param string $fixtureBaseDir
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- public function __construct($fixtureBaseDir)
- {
- if (!is_dir($fixtureBaseDir)) {
- throw new \Magento\Framework\Exception\LocalizedException(
- __("Fixture base directory '%1' does not exist.", $fixtureBaseDir)
- );
- }
- $this->_fixtureBaseDir = realpath($fixtureBaseDir);
- }
- /**
- * Handler for 'startTest' event
- *
- * @param \PHPUnit\Framework\TestCase $test
- */
- public function startTest(\PHPUnit\Framework\TestCase $test)
- {
- \Magento\TestFramework\Helper\Bootstrap::getInstance()->reinitialize();
- /** Apply method level fixtures if thy are available, apply class level fixtures otherwise */
- $this->_applyFixtures($this->_getFixtures('method', $test) ?: $this->_getFixtures('class', $test));
- }
- /**
- * Handler for 'endTest' event
- */
- public function endTest()
- {
- $this->_revertFixtures();
- /** @var $objectManager \Magento\TestFramework\ObjectManager */
- $objectManager = \Magento\TestFramework\Helper\Bootstrap::getObjectManager();
- $objectManager->get(\Magento\Customer\Model\Metadata\AttributeMetadataCache::class)->clean();
- }
- /**
- * Retrieve fixtures from annotation
- *
- * @param string $scope 'class' or 'method'
- * @param \PHPUnit\Framework\TestCase $test
- * @return array
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- protected function _getFixtures($scope, \PHPUnit\Framework\TestCase $test)
- {
- $annotations = $test->getAnnotations();
- $result = [];
- if (!empty($annotations[$scope]['magentoApiDataFixture'])) {
- foreach ($annotations[$scope]['magentoApiDataFixture'] as $fixture) {
- if (strpos($fixture, '\\') !== false) {
- // usage of a single directory separator symbol streamlines search across the source code
- throw new \Magento\Framework\Exception\LocalizedException(
- __('Directory separator "\\" is prohibited in fixture declaration.')
- );
- }
- $fixtureMethod = [get_class($test), $fixture];
- if (is_callable($fixtureMethod)) {
- $result[] = $fixtureMethod;
- } else {
- $result[] = $this->_fixtureBaseDir . '/' . $fixture;
- }
- }
- }
- return $result;
- }
- /**
- * Execute single fixture script
- *
- * @param string|array $fixture
- * @throws \Throwable
- */
- protected function _applyOneFixture($fixture)
- {
- try {
- if (is_callable($fixture)) {
- call_user_func($fixture);
- } else {
- require $fixture;
- }
- } catch (\Exception $e) {
- throw new \Exception(
- sprintf(
- "Exception occurred when running the %s fixture: \n%s",
- (\is_array($fixture) || is_scalar($fixture) ? json_encode($fixture) : 'callback'),
- $e->getMessage()
- )
- );
- }
- $this->_appliedFixtures[] = $fixture;
- }
- /**
- * Execute fixture scripts if any
- *
- * @param array $fixtures
- * @throws \Magento\Framework\Exception\LocalizedException
- */
- protected function _applyFixtures(array $fixtures)
- {
- /* Execute fixture scripts */
- foreach ($fixtures as $oneFixture) {
- /* Skip already applied fixtures */
- if (!in_array($oneFixture, $this->_appliedFixtures, true)) {
- $this->_applyOneFixture($oneFixture);
- }
- }
- }
- /**
- * Revert changes done by fixtures
- */
- protected function _revertFixtures()
- {
- $appliedFixtures = array_reverse($this->_appliedFixtures);
- foreach ($appliedFixtures as $fixture) {
- if (is_callable($fixture)) {
- $fixture[1] .= 'Rollback';
- if (is_callable($fixture)) {
- $this->_applyOneFixture($fixture);
- }
- } else {
- $fileInfo = pathinfo($fixture);
- $extension = '';
- if (isset($fileInfo['extension'])) {
- $extension = '.' . $fileInfo['extension'];
- }
- $rollbackScript = $fileInfo['dirname'] . '/' . $fileInfo['filename'] . '_rollback' . $extension;
- if (file_exists($rollbackScript)) {
- $this->_applyOneFixture($rollbackScript);
- }
- }
- }
- $this->_appliedFixtures = [];
- }
- }
|