From a42065707b9e3db92209e19d52633df55844d24f Mon Sep 17 00:00:00 2001
From: Benaka Moorthi <benaka.moorthi@gmail.com>
Date: Sat, 21 Sep 2013 23:52:52 -0400
Subject: [PATCH] Try to isolate remaining failures...

---
 core/CacheFile.php                       | 9 ++++++++-
 tests/PHPUnit/Fixtures/InvalidVisits.php | 8 ++++----
 tests/PHPUnit/IntegrationTestCase.php    | 1 +
 3 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/core/CacheFile.php b/core/CacheFile.php
index eaf5c78b90..fb8e8d64af 100644
--- a/core/CacheFile.php
+++ b/core/CacheFile.php
@@ -24,6 +24,10 @@ use Exception;
  */
 class CacheFile
 {
+    // for testing purposes since tests run on both CLI/FPM (changes in CLI can't invalidate
+    // opcache in FPM, so we have to invalidate before reading)
+    public static $invalidateOpCacheBeforeRead = false;
+
     /**
      * @var string
      */
@@ -70,7 +74,10 @@ class CacheFile
 
         // We are assuming that most of the time cache will exists
         $cacheFilePath = $this->cachePath . $id . '.php';
-        $this->opCacheInvalidate($cacheFilePath);
+        if (self::$invalidateOpCacheBeforeRead) {
+            $this->opCacheInvalidate($cacheFilePath);
+        }
+
         $ok = @include($cacheFilePath);
 
         if ($ok && $cache_complete == true) {
diff --git a/tests/PHPUnit/Fixtures/InvalidVisits.php b/tests/PHPUnit/Fixtures/InvalidVisits.php
index b2938b6b2d..2e314522e8 100644
--- a/tests/PHPUnit/Fixtures/InvalidVisits.php
+++ b/tests/PHPUnit/Fixtures/InvalidVisits.php
@@ -56,7 +56,7 @@ class Test_Piwik_Fixture_InvalidVisits extends Test_Piwik_BaseFixture
 
         // test GoogleBot UA visitor
         $t->setUserAgent('Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)');
-        self::checkResponse($t->doTrackPageView('bot visit, please do not record'));
+        //self::checkResponse($t->doTrackPageView('bot visit, please do not record'));
 
         // Test IP Exclusion works with or without IP exclusion
         foreach (array(false, true) as $enable) {
@@ -69,15 +69,15 @@ class Test_Piwik_Fixture_InvalidVisits extends Test_Piwik_BaseFixture
             // test with excluded User Agent
             $t->setUserAgent('Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 (.NET CLR 3.5.30729) (excludeduseragentstring)');
             $t->setIp('211.1.2.3');
-            self::checkResponse($t->doTrackPageView('visit from excluded User Agent'));
+            //self::checkResponse($t->doTrackPageView('visit from excluded User Agent'));
 
             $t->setUserAgent('Mozilla/5.0 (Windows NT 6.1; rv:6.0) Gecko/20110814 Firefox/6.0 Google (+https://developers.google.com/+/web/snippet/)');
-            self::checkResponse($t->doTrackPageView('visit from excluded User Agent'));
+            //self::checkResponse($t->doTrackPageView('visit from excluded User Agent'));
 
             // test w/ global excluded User Agent
             $t->setUserAgent('Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 (.NET CLR 3.5.30729) (globalexcludeduseragent)');
             $t->setIp('211.1.2.3');
-            self::checkResponse($t->doTrackPageView('visit from global excluded User Agent'));
+            //self::checkResponse($t->doTrackPageView('visit from global excluded User Agent'));
 
             // test with excluded IP
             $t->setUserAgent('Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6 (.NET CLR 3.5.30729)'); // restore normal user agent
diff --git a/tests/PHPUnit/IntegrationTestCase.php b/tests/PHPUnit/IntegrationTestCase.php
index b192b87b6e..b0454d6438 100755
--- a/tests/PHPUnit/IntegrationTestCase.php
+++ b/tests/PHPUnit/IntegrationTestCase.php
@@ -207,6 +207,7 @@ abstract class IntegrationTestCase extends PHPUnit_Framework_TestCase
         FakeAccess::$superUserLogin = 'superUserLogin';
         
         \Piwik\SettingsPiwik::$cachedKnownSegmentsToArchive = null;
+        \Piwik\CacheFile::$invalidateOpCacheBeforeRead = true;
     }
 
     public static function tearDownAfterClass()
-- 
GitLab