From ec81775b3c1dab536ef2ef5b13e337313638be3f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Sun, 12 Apr 2015 19:34:04 +0300 Subject: Add more SPDY tests --- test/spdy_SUITE.erl | 34 +++++++++++++++++++++++++++++++++- 1 file changed, 33 insertions(+), 1 deletion(-) diff --git a/test/spdy_SUITE.erl b/test/spdy_SUITE.erl index b9bebfc..a8c0c12 100644 --- a/test/spdy_SUITE.erl +++ b/test/spdy_SUITE.erl @@ -67,7 +67,7 @@ streamid_is_odd(_) -> {ok, ServerPid, Port} = spdy_server:start_link(), {ok, ConnPid} = gun:open("localhost", Port, #{transport=>ssl}), {ok, spdy} = gun:await_up(ConnPid), - [do_req_resp(ConnPid, ServerPid, N * 2 - 1) || N <- lists:seq(1, 5)], + [do_req_resp(ConnPid, ServerPid, N) || N <- lists:seq(1, 5, 2)], Rec = spdy_server:stop(ServerPid), true = length(Rec) =:= length([ok || {syn_stream, StreamID, _, _, _, _, _, _, _, _, _, _} <- Rec, StreamID rem 2 =:= 1]). @@ -94,6 +94,23 @@ streamid_increases_monotonically(_) -> Rec = spdy_server:stop(ServerPid), Expected = [StreamID || {syn_stream, StreamID, _, _, _, _, _, _, _, _, _, _} <- Rec]. +streamid_does_not_wrap(_) -> + doc("Stream-ID must not wrap. Reconnect when all Stream-IDs are exhausted. (spdy-protocol-draft3-1 2.3.2)"), + {ok, ServerPid, Port} = spdy_server:start_link(), + {ok, ConnPid} = gun:open("localhost", Port, #{transport=>ssl}), + {ok, spdy} = gun:await_up(ConnPid), + MaxClientStreamID = 2147483647, + sys:replace_state(ConnPid, fun({loop, State}) -> + %% Replace the next stream_id value to the maximum allowed value. + {loop, setelement(11, State, setelement(9, element(11, State), MaxClientStreamID))} + end), + do_req_resp(ConnPid, ServerPid, MaxClientStreamID), + %% Gun has exhausted all Stream-IDs and should now reconnect. + {ok, spdy} = gun:await_up(ConnPid), + %% Check that the next request is on a new connection. + _ = gun:get(ConnPid, "/"), + [{syn_stream, 1, _, _, _, _, _, _, _, _, _, _}] = spdy_server:stop(ServerPid). + syn_stream_decreasing_streamid(_) -> doc("Reject a decreasing Stream-ID with a PROTOCOL_ERROR session error. (spdy-protocol-draft3-1 2.3.2)"), {ok, ServerPid, Port} = spdy_server:start_link(), @@ -109,3 +126,18 @@ syn_stream_decreasing_streamid(_) -> ]), wait(), [_, {goaway, 1, protocol_error}] = spdy_server:stop(ServerPid). + +stream_duplicate_streamid(_) -> + doc("Reject duplicate Stream-ID with a PROTOCOL_ERROR session error. (spdy-protocol-draft3-1 2.3.2)"), + {ok, ServerPid, Port} = spdy_server:start_link(), + {ok, ConnPid} = gun:open("localhost", Port, #{transport=>ssl}), + {ok, spdy} = gun:await_up(ConnPid), + _ = gun:get(ConnPid, "/"), + Host = ["localhost:", integer_to_binary(Port)], + spdy_server:send(ServerPid, [ + {syn_stream, 2, 1, true, true, 0, <<"GET">>, <<"https">>, Host, "/a", <<"HTTP/1.1">>, []}, + {syn_stream, 2, 1, true, true, 0, <<"GET">>, <<"https">>, Host, "/b", <<"HTTP/1.1">>, []}, + {syn_reply, 1, true, <<"200">>, <<"HTTP/1.1">>, []} + ]), + wait(), + [_, {goaway, 1, protocol_error}] = spdy_server:stop(ServerPid). -- cgit v1.2.3