|
14 | 14 | $integrationTestsDir = realpath("{$testsBaseDir}/../integration");
|
15 | 15 | $fixtureBaseDir = $integrationTestsDir . '/testsuite';
|
16 | 16 |
|
17 |
| -setCustomErrorHandler(); |
| 17 | +try { |
| 18 | + setCustomErrorHandler(); |
18 | 19 |
|
19 |
| -$logWriter = new \Zend_Log_Writer_Stream('php://output'); |
20 |
| -$logWriter->setFormatter(new \Zend_Log_Formatter_Simple('%message%' . PHP_EOL)); |
21 |
| -$logger = new \Zend_Log($logWriter); |
| 20 | + /* Bootstrap the application */ |
| 21 | + $settings = new \Magento\TestFramework\Bootstrap\Settings($testsBaseDir, get_defined_constants()); |
22 | 22 |
|
23 |
| -$testFrameworkDir = __DIR__; |
24 |
| -require_once __DIR__ . '/../../integration/framework/deployTestModules.php'; |
| 23 | + if ($settings->get('TESTS_EXTRA_VERBOSE_LOG')) { |
| 24 | + $filesystem = new \Magento\Framework\Filesystem\Driver\File(); |
| 25 | + $loggerHandlers = [ |
| 26 | + 'system' => new \Magento\Framework\Logger\Handler\System($filesystem), |
| 27 | + 'debug' => new \Magento\Framework\Logger\Handler\Debug($filesystem) |
| 28 | + ]; |
| 29 | + $shell = new \Magento\Framework\Shell( |
| 30 | + new \Magento\Framework\Shell\CommandRenderer(), |
| 31 | + new \Monolog\Logger('main', $loggerHandlers) |
| 32 | + ); |
| 33 | + } else { |
| 34 | + $shell = new \Magento\Framework\Shell(new \Magento\Framework\Shell\CommandRenderer()); |
| 35 | + } |
25 | 36 |
|
26 |
| -/* Bootstrap the application */ |
27 |
| -$settings = new \Magento\TestFramework\Bootstrap\Settings($testsBaseDir, get_defined_constants()); |
28 |
| -$shell = new \Magento\Framework\Shell(new \Magento\Framework\Shell\CommandRenderer(), $logger); |
| 37 | + $testFrameworkDir = __DIR__; |
| 38 | + require_once __DIR__ . '/../../integration/framework/deployTestModules.php'; |
29 | 39 |
|
30 |
| -$installConfigFile = $settings->getAsConfigFile('TESTS_INSTALL_CONFIG_FILE'); |
31 |
| -if (!file_exists($installConfigFile)) { |
32 |
| - $installConfigFile = $installConfigFile . '.dist'; |
33 |
| -} |
34 |
| -$globalConfigFile = $settings->getAsConfigFile('TESTS_GLOBAL_CONFIG_FILE'); |
35 |
| -if (!file_exists($installConfigFile)) { |
36 |
| - $installConfigFile = $installConfigFile . '.dist'; |
37 |
| -} |
38 |
| -$dirList = new \Magento\Framework\App\Filesystem\DirectoryList(BP); |
39 |
| -$application = new \Magento\TestFramework\WebApiApplication( |
40 |
| - $shell, |
41 |
| - $dirList->getPath(DirectoryList::VAR_DIR), |
42 |
| - $installConfigFile, |
43 |
| - $globalConfigFile, |
44 |
| - BP . '/app/etc/', |
45 |
| - $settings->get('TESTS_MAGENTO_MODE'), |
46 |
| - AutoloaderRegistry::getAutoloader() |
47 |
| -); |
| 40 | + $installConfigFile = $settings->getAsConfigFile('TESTS_INSTALL_CONFIG_FILE'); |
| 41 | + if ( ! file_exists($installConfigFile)) { |
| 42 | + $installConfigFile = $installConfigFile . '.dist'; |
| 43 | + } |
| 44 | + $globalConfigFile = $settings->getAsConfigFile('TESTS_GLOBAL_CONFIG_FILE'); |
| 45 | + if ( ! file_exists($installConfigFile)) { |
| 46 | + $installConfigFile = $installConfigFile . '.dist'; |
| 47 | + } |
| 48 | + $dirList = new \Magento\Framework\App\Filesystem\DirectoryList(BP); |
| 49 | + $application = new \Magento\TestFramework\WebApiApplication( |
| 50 | + $shell, |
| 51 | + $dirList->getPath(DirectoryList::VAR_DIR), |
| 52 | + $installConfigFile, |
| 53 | + $globalConfigFile, |
| 54 | + BP . '/app/etc/', |
| 55 | + $settings->get('TESTS_MAGENTO_MODE'), |
| 56 | + AutoloaderRegistry::getAutoloader() |
| 57 | + ); |
48 | 58 |
|
49 |
| -if (defined('TESTS_MAGENTO_INSTALLATION') && TESTS_MAGENTO_INSTALLATION === 'enabled') { |
50 |
| - if (defined('TESTS_CLEANUP') && TESTS_CLEANUP === 'enabled') { |
51 |
| - $application->cleanup(); |
| 59 | + if (defined('TESTS_MAGENTO_INSTALLATION') && TESTS_MAGENTO_INSTALLATION === 'enabled') { |
| 60 | + if (defined('TESTS_CLEANUP') && TESTS_CLEANUP === 'enabled') { |
| 61 | + $application->cleanup(); |
| 62 | + } |
| 63 | + $application->install(); |
52 | 64 | }
|
53 |
| - $application->install(); |
54 |
| -} |
55 | 65 |
|
56 |
| -$bootstrap = new \Magento\TestFramework\Bootstrap( |
57 |
| - $settings, |
58 |
| - new \Magento\TestFramework\Bootstrap\Environment(), |
59 |
| - new \Magento\TestFramework\Bootstrap\WebapiDocBlock("{$integrationTestsDir}/testsuite"), |
60 |
| - new \Magento\TestFramework\Bootstrap\Profiler(new \Magento\Framework\Profiler\Driver\Standard()), |
61 |
| - $shell, |
62 |
| - $application, |
63 |
| - new \Magento\TestFramework\Bootstrap\MemoryFactory($shell) |
64 |
| -); |
65 |
| -$bootstrap->runBootstrap(); |
66 |
| -$application->initialize(); |
| 66 | + $bootstrap = new \Magento\TestFramework\Bootstrap( |
| 67 | + $settings, |
| 68 | + new \Magento\TestFramework\Bootstrap\Environment(), |
| 69 | + new \Magento\TestFramework\Bootstrap\WebapiDocBlock("{$integrationTestsDir}/testsuite"), |
| 70 | + new \Magento\TestFramework\Bootstrap\Profiler(new \Magento\Framework\Profiler\Driver\Standard()), |
| 71 | + $shell, |
| 72 | + $application, |
| 73 | + new \Magento\TestFramework\Bootstrap\MemoryFactory($shell) |
| 74 | + ); |
| 75 | + $bootstrap->runBootstrap(); |
| 76 | + $application->initialize(); |
67 | 77 |
|
68 |
| -\Magento\TestFramework\Helper\Bootstrap::setInstance(new \Magento\TestFramework\Helper\Bootstrap($bootstrap)); |
69 |
| -$dirSearch = \Magento\TestFramework\Helper\Bootstrap::getObjectManager() |
70 |
| - ->create(\Magento\Framework\Component\DirSearch::class); |
71 |
| -$themePackageList = \Magento\TestFramework\Helper\Bootstrap::getObjectManager() |
72 |
| - ->create(\Magento\Framework\View\Design\Theme\ThemePackageList::class); |
73 |
| -\Magento\Framework\App\Utility\Files::setInstance( |
74 |
| - new \Magento\Framework\App\Utility\Files( |
75 |
| - new \Magento\Framework\Component\ComponentRegistrar(), |
76 |
| - $dirSearch, |
77 |
| - $themePackageList |
78 |
| - ) |
79 |
| -); |
80 |
| -unset($bootstrap, $application, $settings, $shell); |
| 78 | + \Magento\TestFramework\Helper\Bootstrap::setInstance(new \Magento\TestFramework\Helper\Bootstrap($bootstrap)); |
| 79 | + $dirSearch = \Magento\TestFramework\Helper\Bootstrap::getObjectManager() |
| 80 | + ->create(\Magento\Framework\Component\DirSearch::class); |
| 81 | + $themePackageList = \Magento\TestFramework\Helper\Bootstrap::getObjectManager() |
| 82 | + ->create(\Magento\Framework\View\Design\Theme\ThemePackageList::class); |
| 83 | + \Magento\Framework\App\Utility\Files::setInstance( |
| 84 | + new \Magento\Framework\App\Utility\Files( |
| 85 | + new \Magento\Framework\Component\ComponentRegistrar(), |
| 86 | + $dirSearch, |
| 87 | + $themePackageList |
| 88 | + ) |
| 89 | + ); |
| 90 | + unset($bootstrap, $application, $settings, $shell); |
| 91 | +} catch (\Exception $e) { |
| 92 | + echo $e . PHP_EOL; |
| 93 | + exit(1); |
| 94 | +} |
81 | 95 |
|
82 | 96 | /**
|
83 | 97 | * Set custom error handler
|
|
0 commit comments