File size: 5,942 Bytes
bc63d7d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | <?php
use Piwik\Container\Container;
use Piwik\Container\StaticContainer;
use Piwik\DataTable;
use Piwik\Plugin\Visualization;
use Piwik\Plugins\Diagnostics\Diagnostic\FileIntegrityCheck;
use Piwik\Plugins\Diagnostics\Diagnostic\PhpVersionCheck;
use Piwik\Plugins\Diagnostics\Diagnostic\RequiredPrivateDirectories;
use Piwik\SiteContentDetector;
use Piwik\Tests\Framework\Mock\FakeSiteContentDetector;
return [
// UI tests will remove the port from all URLs to the test server. if a test
// requires the ports in UI tests (eg, Overlay), add the api/controller methods
// to one of these blacklists
'tests.ui.url_normalizer_blacklist.api' => [],
'tests.ui.url_normalizer_blacklist.controller' => [],
// disable check for plugin updates during UI tests, allow for override
'dev.forced_plugin_update_result' => Piwik\DI::decorate(function ($previous, Container $c) {
return $c->get('test.vars.forceEnablePluginUpdateChecks') ? null : [];
}),
'twig.cache' => function (\Piwik\Container\Container $container) {
$templatesPath = $container->get('path.tmp.templates');
return new class ($templatesPath) extends \Twig\Cache\FilesystemCache {
public function write(string $key, string $content): void
{
$retryCount = 3;
$attempts = 0;
while ($attempts < $retryCount) {
try {
parent::write($key, $content);
return;
} catch (\Exception $ex) {
if (!preg_match('/^Failed to write cache file/', $ex->getMessage())) {
throw $ex;
}
usleep(50);
++$attempts;
}
}
}
};
},
'Piwik\Config' => \Piwik\DI::decorate(function (\Piwik\Config $config, Container $c) {
$config->General['cors_domains'][] = '*';
$config->General['trusted_hosts'][] = '127.0.0.1';
$config->General['trusted_hosts'][] = $config->tests['http_host'];
$config->General['trusted_hosts'][] = $config->tests['http_host'] . ':' . $config->tests['port'];
// disable plugin promos for UI tests, only enable when explicitly requested
if ($c->get('test.vars.enableProfessionalSupportAdsForUITests')) {
$config->General['piwik_professional_support_ads_enabled'] = '1';
} else {
$config->General['piwik_professional_support_ads_enabled'] = '0';
}
return $config;
}),
// avoid any site content detection checks
SiteContentDetector::class => \Piwik\DI::decorate(function ($previous, Container $c) {
$detectedContentDetections = $c->get('test.vars.detectedContentDetections') ?: [];
$connectedConsentManagers = $c->get('test.vars.connectedConsentManagers') ?: [];
return new FakeSiteContentDetector($detectedContentDetections, $connectedConsentManagers);
}),
'observers.global' => \Piwik\DI::add([
// removes port from all URLs to the test Piwik server so UI tests will pass no matter
// what port is used
['Request.dispatch.end', Piwik\DI::value(function (&$result) {
$request = $_GET + $_POST;
$apiblacklist = StaticContainer::get('tests.ui.url_normalizer_blacklist.api');
if (!empty($request['method'])
&& in_array($request['method'], $apiblacklist)
) {
return;
}
$controllerActionblacklist = StaticContainer::get('tests.ui.url_normalizer_blacklist.controller');
if (!empty($request['module'])) {
$controllerAction = $request['module'] . '.' . (isset($request['action']) ? $request['action'] : 'index');
if (in_array($controllerAction, $controllerActionblacklist)) {
return;
}
}
$config = \Piwik\Config::getInstance();
$host = $config->tests['http_host'];
$port = $config->tests['port'];
if (!empty($port)) {
// remove the port from URLs if any so UI tests won't fail if the port isn't 80
$result = str_replace($host . ':' . $port, $host, $result ?? '');
}
// remove PIWIK_INCLUDE_PATH from result so tests don't change based on the machine used
$path = realpath(PIWIK_INCLUDE_PATH);
$pathInJson = str_replace('/', '\\/', $path);
$result = str_replace([$path, $pathInJson], '', $result ?? '');
})],
['Controller.RssWidget.rssPiwik.end', Piwik\DI::value(function (&$result, $parameters) {
$result = '';
})],
['Visualization.beforeRender', Piwik\DI::value(function (Visualization $visualization) {
$dataStates = StaticContainer::get('test.vars.forceDataStates');
if (!is_array($dataStates) || [] === $dataStates) {
return;
}
$dataTable = $visualization->getDataTable();
if (!($dataTable instanceof DataTable\Map)) {
return;
}
foreach ($dataTable->getDataTables() as $date => $subTable) {
if (!isset($dataStates[$date])) {
continue;
}
$subTable->setMetadata(
DataTable::ARCHIVE_STATE_METADATA_NAME,
$dataStates[$date]
);
}
})],
\Piwik\Tests\Framework\XssTesting::getJavaScriptAddEvent(),
]),
// disable some diagnostics for UI tests
'diagnostics.disabled' => \Piwik\DI::add([
\Piwik\DI::get(FileIntegrityCheck::class),
\Piwik\DI::get(RequiredPrivateDirectories::class),
\Piwik\DI::get(PhpVersionCheck::class),
]),
];
|