From 2b65b575c65ed097220d58116e246a16cee500b1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Wed, 1 Apr 2020 21:11:59 +0200 Subject: Change a few flaky tests to use timetrap and infinity timeouts The experiment was successful in Gun, let's see if it helps with Cowboy as well. --- test/req_SUITE.erl | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) (limited to 'test/req_SUITE.erl') diff --git a/test/req_SUITE.erl b/test/req_SUITE.erl index f71883f..b7ffbc9 100644 --- a/test/req_SUITE.erl +++ b/test/req_SUITE.erl @@ -22,6 +22,9 @@ %% ct. +suite() -> + [{timetrap, 30000}]. + all() -> cowboy_test:common_all(). @@ -532,11 +535,11 @@ do_read_body_expect_100_continue(Path, Config) -> {<<"content-length">>, integer_to_binary(byte_size(Body))} ], Ref = gun:post(ConnPid, Path, Headers), - {inform, 100, []} = gun:await(ConnPid, Ref), + {inform, 100, []} = gun:await(ConnPid, Ref, infinity), gun:data(ConnPid, Ref, fin, Body), - {response, IsFin, 200, RespHeaders} = gun:await(ConnPid, Ref), + {response, IsFin, 200, RespHeaders} = gun:await(ConnPid, Ref, infinity), {ok, RespBody} = case IsFin of - nofin -> gun:await_body(ConnPid, Ref); + nofin -> gun:await_body(ConnPid, Ref, infinity); fin -> {ok, <<>>} end, gun:close(ConnPid), -- cgit v1.2.3