markTestSkipped('No SSL support available.'); } parent::setUp(); } /** * @group internet */ function test_connectfail(){ $http = new HTTPMockClient(); // proxy provided by Andrwe Lord Weber $http->proxy_host = 'proxy.andrwe.org'; $http->proxy_port = 8080; // the proxy accepts connections to dokuwiki.org only - the connect call should fail $data = $http->get('https://www.google.com'); $this->assertFalse($data); $this->assertEquals(-150, $http->status); } }