function PiwikBasicTest::testPiwikTrackingCode in Piwik Web Analytics 6.2
Same name and namespace in other branches
- 7.2 piwik.test \PiwikBasicTest::testPiwikTrackingCode()
File
- ./piwik.test, line 119
- Test file for Piwik module.
Class
- PiwikBasicTest
- @file
Test file for Piwik module.
Code
function testPiwikTrackingCode() {
$ua_code = '2';
variable_set('piwik_site_id', $ua_code);
variable_get('piwik_url_http', 'http://example.com/piwik/');
variable_get('piwik_url_https', 'https://example.com/piwik/');
variable_set('piwik_visibility_pages', 0);
variable_set('piwik_roles', array());
variable_set('piwik_cache', 0);
$this
->drupalGet('');
$this
->assertRaw('u+"piwik.php"', '[testPiwikTrackingCode]: Latest tracking code used.');
variable_set('piwik_trackuserid', 1);
$this
->drupalGet('');
$this
->assertRaw('_paq.push(["setUserId", ', '[testPiwikTrackingCode]: Tracking code for User ID is enabled.');
variable_set('piwik_trackuserid', 0);
$this
->drupalGet('');
$this
->assertNoRaw('_paq.push(["setUserId", ', '[testPiwikTrackingCode]: Tracking code for User ID is disabled.');
$this
->drupalGet('');
$this
->assertNoRaw('_paq.push(["setCookieDomain"', '[testPiwikTrackingCode]: Single domain tracking is active.');
variable_set('piwik_domain_mode', 1);
$this
->drupalGet('');
global $cookie_domain;
if (count(explode('.', $cookie_domain)) > 2 && !is_numeric(str_replace('.', '', $cookie_domain))) {
$this
->assertRaw('_paq.push(["setCookieDomain"', '[testPiwikTrackingCode]: One domain with multiple subdomains is active on real host.');
}
else {
$this
->assertNoRaw('_paq.push(["setCookieDomain"', '[testPiwikTrackingCode]: One domain with multiple subdomains may be active on localhost (test result is not reliable).');
}
variable_set('piwik_codesnippet_before', '_paq.push(["setLinkTrackingTimer", 250]);');
variable_set('piwik_codesnippet_after', '_paq.push(["t2.setSiteId", 2]);_gaq.push(["t2.trackPageView"]);');
$this
->drupalGet('');
$this
->assertRaw('setLinkTrackingTimer', '[testPiwikTrackingCode]: Before codesnippet has been found with "setLinkTrackingTimer" set.');
$this
->assertRaw('t2.trackPageView', '[testPiwikTrackingCode]: After codesnippet with "t2" tracker has been found.');
}