You are here

function GoogleAnalyticsRolesTest::testGoogleAnalyticsRolesTracking in Google Analytics 7

Same name and namespace in other branches
  1. 6.4 googleanalytics.test \GoogleAnalyticsRolesTest::testGoogleAnalyticsRolesTracking()
  2. 6.3 googleanalytics.test \GoogleAnalyticsRolesTest::testGoogleAnalyticsRolesTracking()
  3. 7.2 googleanalytics.test \GoogleAnalyticsRolesTest::testGoogleAnalyticsRolesTracking()

File

./googleanalytics.test, line 375
Test file for Google Analytics module.

Class

GoogleAnalyticsRolesTest

Code

function testGoogleAnalyticsRolesTracking() {
  $ua_code = 'UA-123456-4';
  variable_set('googleanalytics_account', $ua_code);

  // Test if the default settings are working as expected.
  // Add to the selected roles only.
  variable_set('googleanalytics_visibility_roles', 0);

  // Enable tracking for all users.
  variable_set('googleanalytics_roles', array());

  // Check tracking code visibility.
  $this
    ->drupalGet('');
  $this
    ->assertRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is displayed for anonymous users on frontpage with default settings.');
  $this
    ->drupalGet('admin');
  $this
    ->assertRaw('/403.html', '[testGoogleAnalyticsRoleVisibility]: 403 Forbidden tracking code is displayed for anonymous users in admin section with default settings.');
  $this
    ->drupalLogin($this->admin_user);
  $this
    ->drupalGet('');
  $this
    ->assertRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is displayed for authenticated users on frontpage with default settings.');
  $this
    ->drupalGet('admin');
  $this
    ->assertNoRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is NOT displayed for authenticated users in admin section with default settings.');

  // Test if the non-default settings are working as expected.
  // Enable tracking only for authenticated users.
  variable_set('googleanalytics_roles', array(
    DRUPAL_AUTHENTICATED_RID => DRUPAL_AUTHENTICATED_RID,
  ));
  $this
    ->drupalGet('');
  $this
    ->assertRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is displayed for authenticated users only on frontpage.');
  $this
    ->drupalLogout();
  $this
    ->drupalGet('');
  $this
    ->assertNoRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is NOT displayed for anonymous users on frontpage.');

  // Add to every role except the selected ones.
  variable_set('googleanalytics_visibility_roles', 1);

  // Enable tracking for all users.
  variable_set('googleanalytics_roles', array());

  // Check tracking code visibility.
  $this
    ->drupalGet('');
  $this
    ->assertRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is added to every role and displayed for anonymous users.');
  $this
    ->drupalGet('admin');
  $this
    ->assertRaw('/403.html', '[testGoogleAnalyticsRoleVisibility]: 403 Forbidden tracking code is shown for anonymous users if every role except the selected ones is selected.');
  $this
    ->drupalLogin($this->admin_user);
  $this
    ->drupalGet('');
  $this
    ->assertRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is added to every role and displayed on frontpage for authenticated users.');
  $this
    ->drupalGet('admin');
  $this
    ->assertNoRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is added to every role and NOT displayed in admin section for authenticated users.');

  // Disable tracking for authenticated users.
  variable_set('googleanalytics_roles', array(
    DRUPAL_AUTHENTICATED_RID => DRUPAL_AUTHENTICATED_RID,
  ));
  $this
    ->drupalGet('');
  $this
    ->assertNoRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is NOT displayed on frontpage for excluded authenticated users.');
  $this
    ->drupalGet('admin');
  $this
    ->assertNoRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is NOT displayed in admin section for excluded authenticated users.');
  $this
    ->drupalLogout();
  $this
    ->drupalGet('');
  $this
    ->assertRaw($ua_code, '[testGoogleAnalyticsRoleVisibility]: Tracking code is displayed on frontpage for included anonymous users.');
}