From f56d5034a8c2ff1de783204266e0b7c8ee9647d7 Mon Sep 17 00:00:00 2001 From: Andreas Gohr <andi@splitbrain.org> Date: Sat, 11 Jun 2016 09:08:21 +0200 Subject: [PATCH] run HTTP tests against EU server this hopefully helps with recent problems of spradically failing tests. --- _test/tests/inc/httpclient_http.test.php | 2 +- _test/tests/inc/httpclient_http_proxy.test.php | 4 ++-- _test/tests/inc/httpclient_https.test.php | 2 +- _test/tests/inc/httpclient_https_proxy.test.php | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/_test/tests/inc/httpclient_http.test.php b/_test/tests/inc/httpclient_http.test.php index 94b8e1bc1..f496507d0 100644 --- a/_test/tests/inc/httpclient_http.test.php +++ b/_test/tests/inc/httpclient_http.test.php @@ -3,7 +3,7 @@ require_once (__DIR__ . '/httpclient_mock.php'); class httpclient_http_test extends DokuWikiTest { - protected $server = 'http://httpbin.org'; + protected $server = 'http://eu.httpbin.org'; /** diff --git a/_test/tests/inc/httpclient_http_proxy.test.php b/_test/tests/inc/httpclient_http_proxy.test.php index dae801dbd..4b95b5d6e 100644 --- a/_test/tests/inc/httpclient_http_proxy.test.php +++ b/_test/tests/inc/httpclient_http_proxy.test.php @@ -3,7 +3,7 @@ require_once (__DIR__ . '/httpclient_mock.php'); class httpclient_http_proxy_test extends DokuWikiTest { - protected $url = 'http://httpbin.org/user-agent'; + protected $url = 'http://eu.httpbin.org/user-agent'; /** * @group internet @@ -18,4 +18,4 @@ class httpclient_http_proxy_test extends DokuWikiTest { $this->assertFalse($data === false, 'HTTP response: '.$http->error.' ['.$this->url.']'); $this->assertTrue(strpos($data,'DokuWiki') !== false, 'response content'); } -} \ No newline at end of file +} diff --git a/_test/tests/inc/httpclient_https.test.php b/_test/tests/inc/httpclient_https.test.php index 955d467ec..0163501b2 100644 --- a/_test/tests/inc/httpclient_https.test.php +++ b/_test/tests/inc/httpclient_https.test.php @@ -2,7 +2,7 @@ require_once dirname(__FILE__).'/httpclient_http.test.php'; class httpclient_https_test extends httpclient_http_test { - protected $server = 'https://httpbin.org/'; + protected $server = 'https://eu.httpbin.org/'; public function setUp(){ // skip tests when this PHP has no SSL support diff --git a/_test/tests/inc/httpclient_https_proxy.test.php b/_test/tests/inc/httpclient_https_proxy.test.php index cf5b9a8b9..2e9381d07 100644 --- a/_test/tests/inc/httpclient_https_proxy.test.php +++ b/_test/tests/inc/httpclient_https_proxy.test.php @@ -2,7 +2,7 @@ require_once dirname(__FILE__).'/httpclient_http_proxy.test.php'; class httpclient_https_proxy_test extends httpclient_http_proxy_test { - protected $url = 'https://httpbin.org/user-agent'; + protected $url = 'https://eu.httpbin.org/user-agent'; public function setUp(){ // skip tests when this PHP has no SSL support -- GitLab