From a943324efff332c76a9738561b42c086fd910552 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Fri, 26 Apr 2019 13:35:33 +0200 Subject: No longer error out when the owner exits No need to have the error repeated in the logs by the Gun process. --- test/gun_SUITE.erl | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'test') diff --git a/test/gun_SUITE.erl b/test/gun_SUITE.erl index 9f5aa3a..166089b 100644 --- a/test/gun_SUITE.erl +++ b/test/gun_SUITE.erl @@ -100,6 +100,33 @@ detect_owner_gone(_) -> error(timeout) end. +detect_owner_gone_unexpected(_) -> + {ok, ListenSocket} = gen_tcp:listen(0, [binary, {active, false}]), + {ok, {_, Port}} = inet:sockname(ListenSocket), + Self = self(), + spawn(fun() -> + {ok, ConnPid} = gun:open("localhost", Port), + Self ! {conn, ConnPid}, + gun:await_up(ConnPid), + timer:sleep(100), + exit(unexpected) + end), + {ok, _} = gen_tcp:accept(ListenSocket, 5000), + Pid = receive + {conn, C} -> + C + after 1000 -> + error(timeout) + end, + Ref = monitor(process, Pid), + receive + {'DOWN', Ref, process, Pid, {shutdown, {owner_gone, unexpected}}} -> + ok + after 1000 -> + true = erlang:is_process_alive(Pid), + error(timeout) + end. + detect_owner_gone_ws(_) -> Name = name(), {ok, _} = cowboy:start_clear(Name, [], #{env => #{ -- cgit v1.2.3