felixalias (Felix Jodoin)
- Login: felixalias
- Registered on: 07/13/2011
- Last sign in: 07/27/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/14/2011
-
02:40 AM Ruby Bug #5022: WEBrick returns improper response for malformed HTTP Request
- Nobuyoshi Nakada wrote:
> assert(hash) does not seem nice.
> ...
Has to be assert_nothing_raised { } at least, since meta_vars won't be empty with no headers.
Improved test case:
def test_simple_request
msg = <<-_end_of_me...
07/13/2011
-
04:56 PM Ruby Bug #5022: WEBrick returns improper response for malformed HTTP Request
- Aaron Patterson wrote:
> Can you add a test?
> ...
Hi, yes, this should not be a 400 bad request at all (I was incorrect in labeling it as a malformed HTTP request) - however, it is still broken without my patch since it returns a 500 ... -
03:25 PM Ruby Bug #5022 (Closed): WEBrick returns improper response for malformed HTTP Request
- =begin
When sending an improper HTTP request in the form of:
GET /\n
(with any valid or invalid HTTP verb), WEBrick returns:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML>
<HEAD><TITLE>Internal Server Error</...