diff --git a/tests/PHPUnit/Framework/Fixture.php b/tests/PHPUnit/Framework/Fixture.php index c8cb6d67837a03a4629684fdcca764ffc9a13824..e2e1890fc9e87c89c814e5687be9dcdcd0e1b219 100644 --- a/tests/PHPUnit/Framework/Fixture.php +++ b/tests/PHPUnit/Framework/Fixture.php @@ -464,6 +464,10 @@ class Fixture extends \PHPUnit_Framework_Assert $piwikUrl = Config::getInstance()->tests['http_host']; $piwikUri = Config::getInstance()->tests['request_uri']; + if($piwikUri == '@REQUEST_URI@') { + throw new Exception("Piwik is mis-configured. Remove (or fix) the 'request_uri' entry below [tests] section in your config.ini.php. "); + } + if (strpos($piwikUrl, 'http://') !== 0) { $piwikUrl = 'http://' . $piwikUrl . '/'; }