@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/WebTestCase.php'; |
|
3 | +include_once __DIR__.'/WebTestCase.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Tests for php files in the 'extras' directory. |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/WebTestCase.php'; |
|
3 | +include_once __DIR__.'/WebTestCase.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Tests for php files in the 'demo' directory. |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/../lib/xmlrpc_wrappers.inc'; |
|
3 | +include_once __DIR__.'/../lib/xmlrpc_wrappers.inc'; |
|
4 | 4 | |
5 | -include_once __DIR__ . '/ServerAwareTestCase.php'; |
|
5 | +include_once __DIR__.'/ServerAwareTestCase.php'; |
|
6 | 6 | |
7 | 7 | /** |
8 | 8 | * Tests which involve interaction with the server - carried out via the client. |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | // (but only if not called from subclass objects / multitests) |
30 | 30 | if (function_exists('debug_backtrace') && strtolower(get_called_class()) == 'localhosttests') { |
31 | 31 | $trace = debug_backtrace(DEBUG_BACKTRACE_IGNORE_ARGS); |
32 | - for ($i = 0; $i < count($trace); $i++) { |
|
32 | + for ($i = 0; $i<count($trace); $i++) { |
|
33 | 33 | if (strpos($trace[$i]['function'], 'test') === 0) { |
34 | 34 | self::$failed_tests[$trace[$i]['function']] = true; |
35 | 35 | break; |
@@ -45,7 +45,7 @@ discard block |
||
45 | 45 | parent::set_up(); |
46 | 46 | |
47 | 47 | $server = explode(':', $this->args['HTTPSERVER']); |
48 | - if (count($server) > 1) { |
|
48 | + if (count($server)>1) { |
|
49 | 49 | $this->client = new xmlrpc_client($this->args['HTTPURI'], $server[0], $server[1]); |
50 | 50 | } else { |
51 | 51 | $this->client = new xmlrpc_client($this->args['HTTPURI'], $this->args['HTTPSERVER']); |
@@ -75,9 +75,9 @@ discard block |
||
75 | 75 | } |
76 | 76 | $this->validateResponse($r); |
77 | 77 | if (is_array($errorCode)) { |
78 | - $this->assertContains($r->faultCode(), $errorCode, 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString()); |
|
78 | + $this->assertContains($r->faultCode(), $errorCode, 'Error '.$r->faultCode().' connecting to server: '.$r->faultString()); |
|
79 | 79 | } else { |
80 | - $this->assertEquals($errorCode, $r->faultCode(), 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString()); |
|
80 | + $this->assertEquals($errorCode, $r->faultCode(), 'Error '.$r->faultCode().' connecting to server: '.$r->faultString()); |
|
81 | 81 | } |
82 | 82 | if (!$r->faultCode()) { |
83 | 83 | if ($returnResponse) { |
@@ -104,20 +104,20 @@ discard block |
||
104 | 104 | $query = parse_url($this->client->path, PHP_URL_QUERY); |
105 | 105 | parse_str($query, $vars); |
106 | 106 | $query = http_build_query(array_merge($vars, $data)); |
107 | - $this->client->path = parse_url($this->client->path, PHP_URL_PATH) . '?' . $query; |
|
107 | + $this->client->path = parse_url($this->client->path, PHP_URL_PATH).'?'.$query; |
|
108 | 108 | } |
109 | 109 | |
110 | 110 | public function testString() |
111 | 111 | { |
112 | - $sendString = "here are 3 \"entities\": < > & " . |
|
113 | - "and here's a dollar sign: \$pretendvarname and a backslash too: " . chr(92) . |
|
114 | - " - isn't that great? \\\"hackery\\\" at it's best " . |
|
115 | - " also don't want to miss out on \$item[0]. " . |
|
116 | - "The real weird stuff follows: CRLF here" . chr(13) . chr(10) . |
|
117 | - "a simple CR here" . chr(13) . |
|
118 | - "a simple LF here" . chr(10) . |
|
119 | - "and then LFCR" . chr(10) . chr(13) . |
|
120 | - "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne, and an xml comment closing tag: -->"; |
|
112 | + $sendString = "here are 3 \"entities\": < > & ". |
|
113 | + "and here's a dollar sign: \$pretendvarname and a backslash too: ".chr(92). |
|
114 | + " - isn't that great? \\\"hackery\\\" at it's best ". |
|
115 | + " also don't want to miss out on \$item[0]. ". |
|
116 | + "The real weird stuff follows: CRLF here".chr(13).chr(10). |
|
117 | + "a simple CR here".chr(13). |
|
118 | + "a simple LF here".chr(10). |
|
119 | + "and then LFCR".chr(10).chr(13). |
|
120 | + "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne, and an xml comment closing tag: -->"; |
|
121 | 121 | $m = new xmlrpcmsg('examples.stringecho', array( |
122 | 122 | new xmlrpcval($sendString, 'string'), |
123 | 123 | )); |
@@ -138,7 +138,7 @@ discard block |
||
138 | 138 | public function testLatin1String() |
139 | 139 | { |
140 | 140 | $sendString = |
141 | - "last but not least weird names: G" . chr(252) . "nter, El" . chr(232) . "ne"; |
|
141 | + "last but not least weird names: G".chr(252)."nter, El".chr(232)."ne"; |
|
142 | 142 | $x = '<?xml version="1.0" encoding="ISO-8859-1"?><methodCall><methodName>examples.stringecho</methodName><params><param><value>'. |
143 | 143 | $sendString. |
144 | 144 | '</value></param></params></methodCall>'; |
@@ -247,7 +247,7 @@ discard block |
||
247 | 247 | public function testUtf8Method() |
248 | 248 | { |
249 | 249 | PhpXmlRpc\PhpXmlRpc::$xmlrpc_internalencoding = 'UTF-8'; |
250 | - $m = new xmlrpcmsg("tests.utf8methodname." . 'κόσμε', array( |
|
250 | + $m = new xmlrpcmsg("tests.utf8methodname.".'κόσμε', array( |
|
251 | 251 | new xmlrpcval('hello') |
252 | 252 | )); |
253 | 253 | $v = $this->send($m); |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | )); |
269 | 269 | $v = $this->send($m); |
270 | 270 | if ($v) { |
271 | - $this->assertEquals($a + $b, $v->scalarval()); |
|
271 | + $this->assertEquals($a+$b, $v->scalarval()); |
|
272 | 272 | } |
273 | 273 | } |
274 | 274 | |
@@ -280,7 +280,7 @@ discard block |
||
280 | 280 | )); |
281 | 281 | $v = $this->send($m); |
282 | 282 | if ($v) { |
283 | - $this->assertEquals(12 - 23, $v->scalarval()); |
|
283 | + $this->assertEquals(12-23, $v->scalarval()); |
|
284 | 284 | } |
285 | 285 | } |
286 | 286 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | if ($v) { |
320 | 320 | $sz = $v->arraysize(); |
321 | 321 | $got = ''; |
322 | - for ($i = 0; $i < $sz; $i++) { |
|
322 | + for ($i = 0; $i<$sz; $i++) { |
|
323 | 323 | $b = $v->arraymem($i); |
324 | 324 | if ($b->scalarval()) { |
325 | 325 | $got .= '1'; |
@@ -366,7 +366,7 @@ discard block |
||
366 | 366 | $got = ''; |
367 | 367 | $expected = '37210'; |
368 | 368 | $expect_array = array('ctLeftAngleBrackets', 'ctRightAngleBrackets', 'ctAmpersands', 'ctApostrophes', 'ctQuotes'); |
369 | - foreach($expect_array as $val) { |
|
369 | + foreach ($expect_array as $val) { |
|
370 | 370 | $b = $v->structmem($val); |
371 | 371 | $got .= $b->me['int']; |
372 | 372 | } |
@@ -868,7 +868,7 @@ discard block |
||
868 | 868 | { |
869 | 869 | // make a 'deep client copy' as the original one might have many properties set |
870 | 870 | // also for speed only wrap one method of the whole server |
871 | - $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/' )); |
|
871 | + $class = wrap_xmlrpc_server($this->client, array('simple_client_copy' => 0, 'method_filter' => '/examples\.getStateName/')); |
|
872 | 872 | if ($class == '') { |
873 | 873 | $this->fail('Registration of remote server failed'); |
874 | 874 | } else { |
@@ -907,9 +907,9 @@ discard block |
||
907 | 907 | $cookies = array( |
908 | 908 | //'c1' => array(), |
909 | 909 | 'c2' => array('value' => 'c2'), |
910 | - 'c3' => array('value' => 'c3', 'expires' => time() + 60 * 60 * 24 * 30), |
|
911 | - 'c4' => array('value' => 'c4', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/'), |
|
912 | - 'c5' => array('value' => 'c5', 'expires' => time() + 60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'), |
|
910 | + 'c3' => array('value' => 'c3', 'expires' => time()+60 * 60 * 24 * 30), |
|
911 | + 'c4' => array('value' => 'c4', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/'), |
|
912 | + 'c5' => array('value' => 'c5', 'expires' => time()+60 * 60 * 24 * 30, 'path' => '/', 'domain' => 'localhost'), |
|
913 | 913 | ); |
914 | 914 | $cookiesval = php_xmlrpc_encode($cookies); |
915 | 915 | $m = new xmlrpcmsg('tests.setcookies', array($cookiesval)); |
@@ -957,10 +957,10 @@ discard block |
||
957 | 957 | $m = new xmlrpcmsg('tests.getcookies', array()); |
958 | 958 | foreach ($cookies as $cookie => $val) { |
959 | 959 | $this->client->setCookie($cookie, $val); |
960 | - $cookies[$cookie] = (string)$cookies[$cookie]; |
|
960 | + $cookies[$cookie] = (string) $cookies[$cookie]; |
|
961 | 961 | } |
962 | 962 | $r = $this->client->send($m, $this->timeout, $this->method); |
963 | - $this->assertEquals(0, $r->faultCode(), 'Error ' . $r->faultCode() . ' connecting to server: ' . $r->faultString()); |
|
963 | + $this->assertEquals(0, $r->faultCode(), 'Error '.$r->faultCode().' connecting to server: '.$r->faultString()); |
|
964 | 964 | if (!$r->faultCode()) { |
965 | 965 | $v = $r->value(); |
966 | 966 | $v = php_xmlrpc_decode($v); |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/ServerAwareTestCase.php'; |
|
3 | +include_once __DIR__.'/ServerAwareTestCase.php'; |
|
4 | 4 | |
5 | 5 | abstract class PhpXmlRpc_WebTestCase extends PhpXmlRpc_ServerAwareTestCase |
6 | 6 | { |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | */ |
16 | 16 | protected function request($path, $method = 'GET', $payload = '', $emptyPageOk = false) |
17 | 17 | { |
18 | - $url = $this->baseUrl . $path; |
|
18 | + $url = $this->baseUrl.$path; |
|
19 | 19 | |
20 | 20 | $ch = curl_init($url); |
21 | 21 | curl_setopt_array($ch, array( |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | { |
34 | 34 | curl_setopt($ch, CURLOPT_COOKIE, 'PHPUNIT_SELENIUM_TEST_ID='.$this->testId); |
35 | 35 | } |
36 | - if ($this->args['DEBUG'] > 0) { |
|
36 | + if ($this->args['DEBUG']>0) { |
|
37 | 37 | curl_setopt($ch, CURLOPT_VERBOSE, 1); |
38 | 38 | } |
39 | 39 | $page = curl_exec($ch); |
@@ -57,7 +57,7 @@ discard block |
||
57 | 57 | */ |
58 | 58 | protected function newClient($path) |
59 | 59 | { |
60 | - $client = new \PhpXmlRpc\Client($this->baseUrl . $path); |
|
60 | + $client = new \PhpXmlRpc\Client($this->baseUrl.$path); |
|
61 | 61 | if ($this->collectCodeCoverageInformation) { |
62 | 62 | $client->setCookie('PHPUNIT_SELENIUM_TEST_ID', $this->testId); |
63 | 63 | } |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/LogAwareTestCase.php'; |
|
3 | +include_once __DIR__.'/LogAwareTestCase.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Tests involving automatic encoding/decoding of php values into xmlrpc values (the Encoder class). |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | /// @todo it seems that old php versions can not automatically transform latin to utf8 upon xml parsing. |
76 | 76 | /// We should fix that, then re-enable this test |
77 | 77 | if (version_compare(PHP_VERSION, '5.6.0', '>=')) { |
78 | - $i = $e->decodeXml('<?xml version="1.0" encoding="ISO-8859-15" ?><value><string>' . $string . '</string></value>'); |
|
78 | + $i = $e->decodeXml('<?xml version="1.0" encoding="ISO-8859-15" ?><value><string>'.$string.'</string></value>'); |
|
79 | 79 | $this->assertEquals($string, $i->scalarVal()); |
80 | 80 | } |
81 | 81 |
@@ -1,6 +1,6 @@ |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/WebTestCase.php'; |
|
3 | +include_once __DIR__.'/WebTestCase.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Tests for the bundled debugger. |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/LogAwareTestCase.php'; |
|
3 | +include_once __DIR__.'/LogAwareTestCase.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Tests involving xml parsing. |
@@ -101,7 +101,7 @@ discard block |
||
101 | 101 | |
102 | 102 | public function testI8() |
103 | 103 | { |
104 | - if (PHP_INT_SIZE == 4 ) { |
|
104 | + if (PHP_INT_SIZE == 4) { |
|
105 | 105 | $this->markTestSkipped('Can not test i8 as php is compiled in 32 bit mode'); |
106 | 106 | return; |
107 | 107 | } |
@@ -176,7 +176,7 @@ discard block |
||
176 | 176 | |
177 | 177 | public function testUnicodeInMemberName() |
178 | 178 | { |
179 | - $str = "G" . chr(252) . "nter, El" . chr(232) . "ne"; |
|
179 | + $str = "G".chr(252)."nter, El".chr(232)."ne"; |
|
180 | 180 | $v = array($str => new xmlrpcval(1)); |
181 | 181 | $r = new xmlrpcresp(new xmlrpcval($v, 'struct')); |
182 | 182 | $r = $r->serialize(); |
@@ -192,7 +192,7 @@ discard block |
||
192 | 192 | $response = @utf8_encode( |
193 | 193 | '<?xml version="1.0"?> |
194 | 194 | <!-- covers what happens when lib receives UTF8 chars in response text and comments --> |
195 | -<!-- ' . chr(224) . chr(252) . chr(232) . 'àüè --> |
|
195 | +<!-- ' . chr(224).chr(252).chr(232).'àüè --> |
|
196 | 196 | <methodResponse> |
197 | 197 | <fault> |
198 | 198 | <value> |
@@ -203,7 +203,7 @@ discard block |
||
203 | 203 | </member> |
204 | 204 | <member> |
205 | 205 | <name>faultString</name> |
206 | -<value><string>' . chr(224) . chr(252) . chr(232) . 'àüè</string></value> |
|
206 | +<value><string>' . chr(224).chr(252).chr(232).'àüè</string></value> |
|
207 | 207 | </member> |
208 | 208 | </struct> |
209 | 209 | </value> |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | $m = $this->newRequest('dummy'); |
213 | 213 | $r = $m->parseResponse($response); |
214 | 214 | $v = $r->faultString(); |
215 | - $this->assertEquals(chr(224) . chr(252) . chr(232) . chr(224) . chr(252) . chr(232), $v); |
|
215 | + $this->assertEquals(chr(224).chr(252).chr(232).chr(224).chr(252).chr(232), $v); |
|
216 | 216 | } |
217 | 217 | |
218 | 218 | public function testBrokenRequests() |
@@ -419,8 +419,8 @@ discard block |
||
419 | 419 | $i = \PhpXmlRpc\PhpXmlRpc::$xmlrpc_reject_invalid_values; |
420 | 420 | \PhpXmlRpc\PhpXmlRpc::$xmlrpc_reject_invalid_values = true; |
421 | 421 | |
422 | - foreach($values as $value) { |
|
423 | - $f = '<?xml version="1.0"?><methodResponse><params><param><value>' . $value . '</value></param></params></methodResponse> '; |
|
422 | + foreach ($values as $value) { |
|
423 | + $f = '<?xml version="1.0"?><methodResponse><params><param><value>'.$value.'</value></param></params></methodResponse> '; |
|
424 | 424 | $r = $s->parseResponse($f); |
425 | 425 | $v = $r->faultCode(); |
426 | 426 | $this->assertEquals(2, $v, "Testing $value"); |
@@ -524,11 +524,11 @@ discard block |
||
524 | 524 | |
525 | 525 | public function testUTF8Response() |
526 | 526 | { |
527 | - $string = chr(224) . chr(252) . chr(232); |
|
527 | + $string = chr(224).chr(252).chr(232); |
|
528 | 528 | |
529 | 529 | $s = $this->newRequest('dummy'); |
530 | - $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=UTF-8\r\n\r\n" . '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
531 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string) . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
530 | + $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=UTF-8\r\n\r\n".'<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
531 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string).'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
532 | 532 | '; |
533 | 533 | $r = $s->parseResponse($f, false, 'phpvals'); |
534 | 534 | $v = $r->value(); |
@@ -536,7 +536,7 @@ discard block |
||
536 | 536 | $this->assertEquals($string, $v); |
537 | 537 | |
538 | 538 | $f = '<?xml version="1.0" encoding="UTF-8"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
539 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string) . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
539 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . @utf8_encode($string).'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
540 | 540 | '; |
541 | 541 | $r = $s->parseResponse($f, false, 'phpvals'); |
542 | 542 | $v = $r->value(); |
@@ -552,11 +552,11 @@ discard block |
||
552 | 552 | |
553 | 553 | public function testLatin1Response() |
554 | 554 | { |
555 | - $string = chr(224) . chr(252) . chr(232); |
|
555 | + $string = chr(224).chr(252).chr(232); |
|
556 | 556 | |
557 | 557 | $s = $this->newRequest('dummy'); |
558 | - $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=ISO-8859-1\r\n\r\n" . '<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
559 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
558 | + $f = "HTTP/1.1 200 OK\r\nContent-type: text/xml; charset=ISO-8859-1\r\n\r\n".'<?xml version="1.0"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
|
559 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string.'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
560 | 560 | '; |
561 | 561 | $r = $s->parseResponse($f, false, 'phpvals'); |
562 | 562 | $v = $r->value(); |
@@ -564,7 +564,7 @@ discard block |
||
564 | 564 | $this->assertEquals($string, $v); |
565 | 565 | |
566 | 566 | $f = '<?xml version="1.0" encoding="ISO-8859-1"?><methodResponse><params><param><value><struct><member><name>userid</name><value>311127</value></member> |
567 | -<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string . '</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
567 | +<member><name>dateCreated</name><value><dateTime.iso8601>20011126T09:17:52</dateTime.iso8601></value></member><member><name>content</name><value>' . $string.'</value></member><member><name>postid</name><value>7414222</value></member></struct></value></param></params></methodResponse> |
|
568 | 568 | '; |
569 | 569 | $r = $s->parseResponse($f, false, 'phpvals'); |
570 | 570 | $v = $r->value(); |
@@ -3,7 +3,7 @@ discard block |
||
3 | 3 | * @author JoakimLofgren |
4 | 4 | */ |
5 | 5 | |
6 | -include_once __DIR__ . '/PolyfillTestCase.php'; |
|
6 | +include_once __DIR__.'/PolyfillTestCase.php'; |
|
7 | 7 | |
8 | 8 | use PhpXmlRpc\Helper\Charset; |
9 | 9 | |
@@ -48,10 +48,10 @@ discard block |
||
48 | 48 | public function testUtf8ToLatin1All() |
49 | 49 | { |
50 | 50 | $latinString = "\n\r\t"; |
51 | - for($i = 32; $i < 127; $i++) { |
|
51 | + for ($i = 32; $i<127; $i++) { |
|
52 | 52 | $latinString .= chr($i); |
53 | 53 | } |
54 | - for($i = 160; $i < 256; $i++) { |
|
54 | + for ($i = 160; $i<256; $i++) { |
|
55 | 55 | $latinString .= chr($i); |
56 | 56 | } |
57 | 57 |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -include_once __DIR__ . '/08ServerTest.php'; |
|
3 | +include_once __DIR__.'/08ServerTest.php'; |
|
4 | 4 | |
5 | 5 | /** |
6 | 6 | * Tests which stress http features of the library. |
@@ -25,7 +25,7 @@ discard block |
||
25 | 25 | ); |
26 | 26 | |
27 | 27 | $methods = array(); |
28 | - foreach(get_class_methods('ServerTest') as $method) |
|
28 | + foreach (get_class_methods('ServerTest') as $method) |
|
29 | 29 | { |
30 | 30 | if (strpos($method, 'test') === 0 && !in_array($method, $unsafeMethods)) |
31 | 31 | { |
@@ -317,7 +317,7 @@ discard block |
||
317 | 317 | preg_match('/ubunutu([0-9]+)/', $output[0], $matches); |
318 | 318 | $ubuntuVersion = @$matches[1]; |
319 | 319 | } |
320 | - if ($ubuntuVersion >= 20) { |
|
320 | + if ($ubuntuVersion>=20) { |
|
321 | 321 | $this->markTestSkipped('HTTPS via Socket known to fail on php less than 7.2 on Ubuntu 20 and higher'); |
322 | 322 | return; |
323 | 323 | } |