Skip to content
Extraits de code Groupes Projets
Valider 0e15097e rédigé par mattab's avatar mattab
Parcourir les fichiers

Fix this test so it works when the tests are running on something other than "localhost".

Thanks for the suggestion & report Sridhar
parent ad29373c
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -123,22 +123,34 @@ class Test_Piwik_Fixture_SomeVisitsCustomVariablesCampaignsNotHeuristics extends ...@@ -123,22 +123,34 @@ class Test_Piwik_Fixture_SomeVisitsCustomVariablesCampaignsNotHeuristics extends
self::checkResponse($t4->doTrackPageView('Bonjour le monde')); self::checkResponse($t4->doTrackPageView('Bonjour le monde'));
} }
// see updateDomainHash() in piwik.js
private function getFirstPartyCookieDomainHash()
{
$host = \Piwik\Url::getHost();
return substr(sha1( $host . '/'), 0, 4);
}
/** /**
* Test setting/getting the first party cookie via the PHP Tracking Client * Test setting/getting the first party cookie via the PHP Tracking Client
* @param $t * @param $t
*/ */
private function testFirstPartyCookies(PiwikTracker $t) private function testFirstPartyCookies(PiwikTracker $t)
{ {
$domainHash = $this->getFirstPartyCookieDomainHash();
$idCookieName = '_pk_id_1_' . $domainHash;
$refCookieName = '_pk_ref_1_' . $domainHash;
$customVarCookieName = '_pk_cvar_1_' . $domainHash;
$viewts = '1302307497'; $viewts = '1302307497';
$uuid = 'ca0afe7b6b692ff5'; $uuid = 'ca0afe7b6b692ff5';
$_COOKIE['_pk_id_1_1fff'] = $uuid . '.1302307497.1.' . $viewts . '.1302307497'; $_COOKIE[$idCookieName] = $uuid . '.1302307497.1.' . $viewts . '.1302307497';
$_COOKIE['_pk_ref_1_1fff'] = '["YEAH","RIGHT!",1302307497,"http://referrer.example.org/page/sub?query=test&test2=test3"]'; $_COOKIE[$refCookieName] = '["YEAH","RIGHT!",1302307497,"http://referrer.example.org/page/sub?query=test&test2=test3"]';
$_COOKIE['_pk_cvar_1_1fff'] = '{"1":["VAR 1 set, var 2 not set","yes"],"3":["var 3 set","yes!!!!"]}'; $_COOKIE[$customVarCookieName] = '{"1":["VAR 1 set, var 2 not set","yes"],"3":["var 3 set","yes!!!!"]}';
// test loading 'id' cookie // test loading 'id' cookie
self::assertContains("_viewts=" . $viewts, $t->getUrlTrackPageView()); self::assertContains("_viewts=" . $viewts, $t->getUrlTrackPageView());
self::assertEquals($uuid, $t->getVisitorId()); self::assertEquals($uuid, $t->getVisitorId());
self::assertEquals($t->getAttributionInfo(), $_COOKIE['_pk_ref_1_1fff']); self::assertEquals($t->getAttributionInfo(), $_COOKIE[$refCookieName]);
self::assertEquals(array("VAR 1 set, var 2 not set", "yes"), $t->getCustomVariable(1)); self::assertEquals(array("VAR 1 set, var 2 not set", "yes"), $t->getCustomVariable(1));
self::assertFalse($t->getCustomVariable(2)); self::assertFalse($t->getCustomVariable(2));
self::assertEquals(array("var 3 set", "yes!!!!"), $t->getCustomVariable(3)); self::assertEquals(array("var 3 set", "yes!!!!"), $t->getCustomVariable(3));
...@@ -147,8 +159,8 @@ class Test_Piwik_Fixture_SomeVisitsCustomVariablesCampaignsNotHeuristics extends ...@@ -147,8 +159,8 @@ class Test_Piwik_Fixture_SomeVisitsCustomVariablesCampaignsNotHeuristics extends
self::assertFalse($t->getCustomVariable(6)); self::assertFalse($t->getCustomVariable(6));
self::assertFalse($t->getCustomVariable(-1)); self::assertFalse($t->getCustomVariable(-1));
unset($_COOKIE['_pk_id_1_1fff']); unset($_COOKIE[$idCookieName]);
unset($_COOKIE['_pk_ref_1_1fff']); unset($_COOKIE[$refCookieName]);
unset($_COOKIE['_pk_cvar_1_1fff']); unset($_COOKIE[$customVarCookieName]);
} }
} }
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