host = $conf['host']; $this->port = $conf['port']; } if (!$this->host || !$this->port) { $this->markTestSkipped("Skipped proxy tests. Missing configuration"); } } /** * @group internet */ function testSimpleGet() { $http = new HTTPMockClient(); $http->proxy_host = $this->host; $http->proxy_port = $this->port; $data = $http->get($this->url); $this->assertFalse($data === false, $http->errorInfo($this->url)); $this->assertStringContainsString('DokuWiki', $data, 'response content'); } }