Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
* Copyright 2018 Adobe
* All Rights Reserved.
*/

namespace Magento\TestFramework;

use Magento\Framework\App\DeploymentConfig;
Expand Down Expand Up @@ -366,7 +367,7 @@ private function initLogger()
'filePath' => $this->installDir
]
),
'debug' => $objectManager->create(
'debug' => $objectManager->create(
\Magento\Framework\Logger\Handler\Debug::class,
['filePath' => $this->installDir]
),
Expand Down Expand Up @@ -578,16 +579,12 @@ public function install($cleanup)
PHP_BINARY . ' -f %s cache:disable -vvv --bootstrap=%s',
[BP . '/bin/magento', $initParamsQuery]
);

$enabledCaches = $this->getEnabledCaches();

$this->_shell->execute(
PHP_BINARY . ' -f %s cache:enable -vvv %s %s %s %s --bootstrap=%s',
[
BP . '/bin/magento',
\Magento\Framework\App\Cache\Type\Config::TYPE_IDENTIFIER,
\Magento\Framework\App\Cache\Type\Layout::TYPE_IDENTIFIER,
\Magento\Framework\App\Cache\Type\Translate::TYPE_IDENTIFIER,
\Magento\Eav\Model\Cache\Type::TYPE_IDENTIFIER,
$initParamsQuery,
]
PHP_BINARY . ' -f %s cache:enable -vvv ' . str_repeat('%s ', count($enabledCaches)) . ' --bootstrap=%s',
[BP . '/bin/magento', ...$enabledCaches, $initParamsQuery]
);

// right after a clean installation, store DB dump for future reuse in tests or running the test suite again
Expand All @@ -596,6 +593,22 @@ public function install($cleanup)
}
}

/**
* Caches that should be enabled during the Integration Tests execution
*
* @return array<string>
*/
private function getEnabledCaches(): array
{
return [
\Magento\Framework\App\Cache\Type\Config::TYPE_IDENTIFIER,
\Magento\Framework\App\Cache\Type\Layout::TYPE_IDENTIFIER,
\Magento\Framework\App\Cache\Type\Translate::TYPE_IDENTIFIER,
\Magento\Framework\App\Interception\Cache\CompiledConfig::TYPE_IDENTIFIER,
\Magento\Eav\Model\Cache\Type::TYPE_IDENTIFIER,
];
}

/**
* Run commands after installation configured in post-install-setup-command-config.php
*
Expand Down