From bb8ee483de32339cf0767388da494682e8302fe7 Mon Sep 17 00:00:00 2001
From: diosmosis <benakamoorthi@fastmail.fm>
Date: Sun, 6 Jul 2014 22:51:40 -0700
Subject: [PATCH] Use Http::sendHttpRequest instead of file_get_contents in
 ArchiveWebTest.

---
 tests/PHPUnit/Integration/ArchiveWebTest.php | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/tests/PHPUnit/Integration/ArchiveWebTest.php b/tests/PHPUnit/Integration/ArchiveWebTest.php
index c284a1ab12..570b3b6290 100644
--- a/tests/PHPUnit/Integration/ArchiveWebTest.php
+++ b/tests/PHPUnit/Integration/ArchiveWebTest.php
@@ -7,6 +7,7 @@
  */
 
 use Piwik\Option;
+use Piwik\Http;
 
 /**
  * Tests to call the archive.php script via web and check there is no error,
@@ -31,10 +32,8 @@ class Test_Piwik_Integration_ArchiveWebTest extends IntegrationTestCase
         $urlTmp = Option::get('piwikUrl');
         Option::set('piwikUrl', $host . 'tests/PHPUnit/proxy/index.php');
 
-        $streamContext = stream_context_create(array('http' => array('timeout' => 600)));
-
         $url = $host . 'tests/PHPUnit/proxy/archive.php?token_auth=' . $token . '&forcelogtoscreen=1';
-        $output = file_get_contents($url, 0, $streamContext);
+        $output = Http::sendHttpRequest($url, 600);
 
         // ignore random build issues
         if (empty($output) || strpos($output, \Piwik\CronArchive::NO_ERROR) === false) {
-- 
GitLab