1
0
قرینه از https://github.com/matomo-org/matomo.git synced 2025-08-22 15:07:44 +00:00
Files
matomo/tests/PHPUnit/proxy/piwik.php
Stefan Giehl 3e7f7b12b1 Improve handling of Exception logging (#23372)
* Improve handling of Exception logging

* Make error page work correctly if PHP requirement not met

* cs
2025-06-27 08:49:23 +02:00

49 خطوط
1.4 KiB
PHP

<?php
/**
* Proxy to normal piwik.php, but in testing mode
*
* - Use the tests database to record Tracking data
* - Allows to overwrite the Visitor IP, and Server datetime
*
*/
use Piwik\Application\Environment;
use Piwik\DataTable\Manager;
use Piwik\Option;
use Piwik\Site;
use Piwik\Tests\Framework\TestingEnvironmentManipulator;
use Piwik\Tests\Framework\TestingEnvironmentVariables;
use Piwik\Tracker;
require realpath(dirname(__FILE__)) . "/includes.php";
// Wrapping the request inside ob_start() calls to ensure that the Test
// calling us waits for the full request to process before unblocking
ob_start();
try {
$globalObservers = array(
array('Environment.bootstrapped', \Piwik\DI::value(function () {
Tracker::setTestEnvironment();
Manager::getInstance()->deleteAll();
Option::clearCache();
Site::clearCache();
}))
);
Environment::setGlobalEnvironmentManipulator(new TestingEnvironmentManipulator(new TestingEnvironmentVariables(), $globalObservers));
include PIWIK_INCLUDE_PATH . '/matomo.php';
} catch (Exception $ex) {
$stacktrace = '';
if (\Piwik\ExceptionHandler::shouldPrintBackTraceWithMessage()) {
$stacktrace = "\n" . $ex->getTraceAsString();
}
echo "Unexpected error during tracking: " . $ex->getMessage() . $stacktrace . "\n";
}
if (ob_get_level() > 1) {
ob_end_flush();
}