Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

server_connection: fix regression which caused wakeup_writer #37

Merged
merged 2 commits into from
Jan 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,11 @@ Unreleased
[inhabitedtype/httpaf#162](https://github.com/inhabitedtype/httpaf/issues/162)
- httpaf-async: Add HTTPS support for the Async bindings
([#35](https://github.com/anmonteiro/httpaf/pull/35)).
- httpaf: Fix upstream regression introduced in
[inhabitedtype/httpaf#161](https://github.com/inhabitedtype/httpaf/pull/161)
that caused `wake_up_writer` callback bookkeeping to be slightly wrong due to
physical equality, producing runtime errors in cases where it shouldn't
([#37](https://github.com/anmonteiro/httpaf/pull/37)).

httpaf (upstream) 0.6.5
--------------
Expand Down
14 changes: 11 additions & 3 deletions lib/server_connection.ml
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,17 @@ let wakeup_writer t =
;;

let transfer_writer_callback t reqd =
let f = t.wakeup_writer in
t.wakeup_writer <- default_wakeup;
Reqd.on_more_output_available reqd f
(* Note: it's important that we don't call `Reqd.on_more_output_available` if
* no `wakeup_writer` callback has been registered. In the current
* implementation, `Reqd` performs its own bookkeeping by performing its own
* physical equality check. If `Server_connection` registers its dummy
* callback, `Reqd`'s physical equality check with _its own_ dummy callback
* will fail and cause weird bugs. *)
if not (t.wakeup_writer == default_wakeup) then begin
let f = t.wakeup_writer in
t.wakeup_writer <- default_wakeup;
Reqd.on_more_output_available reqd f
end
;;

let default_error_handler ?request:_ error handle =
Expand Down
29 changes: 26 additions & 3 deletions lib_test/test_httpaf.ml
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ Accept-Language: en-US,en;q=0.5\r\n\r\n";
`Close (next_read_operation t);
!continue_response ();
writer_closed t;
;;
;;

let test_immediate_flush_empty_body () =
let reader_woken_up = ref false in
Expand All @@ -854,7 +854,7 @@ Accept-Language: en-US,en;q=0.5\r\n\r\n";
writer_yielded t;
Alcotest.(check bool) "Reader woken up"
true !reader_woken_up;
;;
;;

let test_empty_body_no_immediate_flush () =
let reader_woken_up = ref false in
Expand All @@ -874,7 +874,29 @@ Accept-Language: en-US,en;q=0.5\r\n\r\n";
writer_yielded t;
Alcotest.(check bool) "Reader woken up"
true !reader_woken_up;
;;
;;

let test_yield_before_starting_a_response () =
let reader_woken_up = ref false in
let response = Response.create `OK in
let continue_response = ref (fun () -> ()) in
let request_handler reqd =
continue_response := (fun () ->
let resp_body = Reqd.respond_with_streaming reqd response in
Body.close_writer resp_body)
in
let t = create ~error_handler request_handler in
reader_ready t;
writer_yielded t;
read_request t (Request.create `GET "/");
yield_reader t (fun () -> reader_woken_up := true);
yield_writer t ignore;
!continue_response ();
write_response t ~body:"" response;
writer_yielded t;
Alcotest.(check bool) "Reader woken up"
true !reader_woken_up;
;;

let tests =
[ "initial reader state" , `Quick, test_initial_reader_state
Expand All @@ -901,6 +923,7 @@ Accept-Language: en-US,en;q=0.5\r\n\r\n";
; "input shrunk", `Quick, test_input_shrunk
; "`flush_headers_immediately` with empty body", `Quick, test_immediate_flush_empty_body
; "empty body with no immediate flush", `Quick, test_empty_body_no_immediate_flush
; "yield before starting a response", `Quick, test_yield_before_starting_a_response
]
end

Expand Down