Skip to content
Extraits de code Groupes Projets
Valider 3f523a4e rédigé par Thomas Steur's avatar Thomas Steur
Parcourir les fichiers

call replayLogFile method twice so one can see how often we trigger log importer

parent 8b45e0e6
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -7,13 +7,11 @@ ...@@ -7,13 +7,11 @@
*/ */
namespace Piwik\Tests\Fixtures; namespace Piwik\Tests\Fixtures;
use Piwik\Access;
use Piwik\Plugins\Goals\API as APIGoals; use Piwik\Plugins\Goals\API as APIGoals;
use Piwik\Plugins\SegmentEditor\API as APISegmentEditor; use Piwik\Plugins\SegmentEditor\API as APISegmentEditor;
use Piwik\Plugins\UserCountry\LocationProvider\GeoIp; use Piwik\Plugins\UserCountry\LocationProvider\GeoIp;
use Piwik\Plugins\UserCountry\LocationProvider; use Piwik\Plugins\UserCountry\LocationProvider;
use Piwik\Tests\Framework\Fixture; use Piwik\Tests\Framework\Fixture;
use Piwik\Tests\Framework\OverrideLogin;
/** /**
* Imports visits from several log files using the python log importer. * Imports visits from several log files using the python log importer.
...@@ -115,6 +113,7 @@ class ManySitesImportedLogs extends Fixture ...@@ -115,6 +113,7 @@ class ManySitesImportedLogs extends Fixture
$this->logVisitsWithStaticResolver(); $this->logVisitsWithStaticResolver();
$this->logVisitsWithAllEnabled(); $this->logVisitsWithAllEnabled();
$this->replayLogFile(); $this->replayLogFile();
$this->replayLogFile(array('--idsite' => 3));
$this->logCustomFormat(); $this->logCustomFormat();
if ($this->includeIisWithCustom) { if ($this->includeIisWithCustom) {
...@@ -231,8 +230,10 @@ class ManySitesImportedLogs extends Fixture ...@@ -231,8 +230,10 @@ class ManySitesImportedLogs extends Fixture
/** /**
* Logs a couple visit using log entries that are tracking requests to a piwik.php file. * Logs a couple visit using log entries that are tracking requests to a piwik.php file.
* Adds two visits to idSite=1 and two to non-existant sites. * Adds two visits to idSite=1 and two to non-existant sites.
*
* @param array $additonalOptions
*/ */
private function replayLogFile() private function replayLogFile($additonalOptions = array())
{ {
$logFile = PIWIK_INCLUDE_PATH . '/tests/resources/access-logs/fake_logs_replay.log'; $logFile = PIWIK_INCLUDE_PATH . '/tests/resources/access-logs/fake_logs_replay.log';
...@@ -242,10 +243,7 @@ class ManySitesImportedLogs extends Fixture ...@@ -242,10 +243,7 @@ class ManySitesImportedLogs extends Fixture
'--recorder-max-payload-size' => '1', '--recorder-max-payload-size' => '1',
'--replay-tracking' => false); '--replay-tracking' => false);
self::executeLogImporter($logFile, $opts); $opts = array_merge($opts, $additonalOptions);
// execute again but this time with different idsite
$opts['--idsite'] = 3;
self::executeLogImporter($logFile, $opts); self::executeLogImporter($logFile, $opts);
} }
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter