Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15383461
D19631.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D19631.diff
View Options
diff --git a/src/parser/http/PhutilHTTPResponseParser.php b/src/parser/http/PhutilHTTPResponseParser.php
--- a/src/parser/http/PhutilHTTPResponseParser.php
+++ b/src/parser/http/PhutilHTTPResponseParser.php
@@ -48,7 +48,7 @@
$matches = null;
$ok = preg_match(
- '(^HTTP/\S+\s+(\d+)\s+(.*)$)i',
+ '(^HTTP/\S+\s+(\d+)(?:\s+(.*))?$)i',
$first_line,
$matches);
diff --git a/src/parser/http/__tests__/PhutilHTTPResponseParserTestCase.php b/src/parser/http/__tests__/PhutilHTTPResponseParserTestCase.php
--- a/src/parser/http/__tests__/PhutilHTTPResponseParserTestCase.php
+++ b/src/parser/http/__tests__/PhutilHTTPResponseParserTestCase.php
@@ -69,6 +69,27 @@
$input,
id(new PhutilHTTPResponseParser())
->setFollowLocationHeaders(true));
+
+ $input = <<<EORESPONSE
+HTTP/1.0 200
+Reason: none
+
+This response has no "reason-phrase", which is unusual but valid.
+EORESPONSE;
+
+ $this->assertParse(
+ array(
+ array(
+ 'code' => 200,
+ 'headers' => array(
+ array('Reason', 'none'),
+ ),
+ 'body' =>
+ 'This response has no "reason-phrase", which is unusual but valid.',
+ ),
+ ),
+ $input,
+ id(new PhutilHTTPResponseParser()));
}
private function assertParse(array $expect, $input, $parser = null) {
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Mar 15, 4:48 PM (2 w, 6 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7698274
Default Alt Text
D19631.diff (1 KB)
Attached To
Mode
D19631: Parse HTTP responses with empty "reason-phrase" properly in PhutilHTTPResponseParser
Attached
Detach File
Event Timeline
Log In to Comment