| @@ 113-124 (lines=12) @@ | ||
| 110 | $this->assertInstall(); |
|
| 111 | } |
|
| 112 | ||
| 113 | public function testInstallWithHttpProxyRequestFullUri() |
|
| 114 | { |
|
| 115 | putenv('http_proxy='.$this->proxy); |
|
| 116 | putenv('http_proxy_request_fulluri=true'); |
|
| 117 | ||
| 118 | $this->installer->install(); |
|
| 119 | ||
| 120 | putenv('http_proxy'); |
|
| 121 | putenv('http_proxy_request_fulluri'); |
|
| 122 | ||
| 123 | $this->assertInstall(); |
|
| 124 | } |
|
| 125 | ||
| 126 | public function testInstallWithHttpsProxyRequestFullUri() |
|
| 127 | { |
|
| @@ 126-137 (lines=12) @@ | ||
| 123 | $this->assertInstall(); |
|
| 124 | } |
|
| 125 | ||
| 126 | public function testInstallWithHttpsProxyRequestFullUri() |
|
| 127 | { |
|
| 128 | putenv('https_proxy='.$this->proxy); |
|
| 129 | putenv('https_proxy_request_fulluri=true'); |
|
| 130 | ||
| 131 | $this->installer->install(); |
|
| 132 | ||
| 133 | putenv('https_proxy'); |
|
| 134 | putenv('https_proxy_request_fulluri'); |
|
| 135 | ||
| 136 | $this->assertInstall(); |
|
| 137 | } |
|
| 138 | ||
| 139 | public function testReinstall() |
|
| 140 | { |
|