aboutsummaryrefslogtreecommitdiffstats
path: root/test/handlers/proxied_h.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2020-09-25 13:52:31 +0200
committerLoïc Hoguin <[email protected]>2020-10-03 17:30:36 +0200
commit2f42047d6cec210186d703e31e5fd970b1ea4e33 (patch)
tree30c529955a79df3cb0cb13021c951ce655617f95 /test/handlers/proxied_h.erl
parent3ce70c5d96902e0e2718447383992dc7d6232e3a (diff)
downloadgun-2f42047d6cec210186d703e31e5fd970b1ea4e33.tar.gz
gun-2f42047d6cec210186d703e31e5fd970b1ea4e33.tar.bz2
gun-2f42047d6cec210186d703e31e5fd970b1ea4e33.zip
Add tunnel_SUITE testing all 3-layer combinations
The test suite is 216 tests with a tunnel created via two proxies leading to one origin server. The tests are for example socks5_h2_https where socks5 identifies the first SOCKS5 proxy, h2 the second HTTP/2 CONNECT proxy and https the secure HTTP/1.1 origin server. The test not only sets up the tunnel and does a request (or sends/receives data in the case of raw origin servers) but also confirms that the stream_info and info data is correct.
Diffstat (limited to 'test/handlers/proxied_h.erl')
-rw-r--r--test/handlers/proxied_h.erl10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/handlers/proxied_h.erl b/test/handlers/proxied_h.erl
index d5d4690..818823c 100644
--- a/test/handlers/proxied_h.erl
+++ b/test/handlers/proxied_h.erl
@@ -4,8 +4,8 @@
-export([init/2]).
-init(Req, State) ->
- {ok, cowboy_req:reply(200,
- #{<<"content-type">> => <<"text/plain">>},
- <<"TODO">>,
- Req), State}.
+-spec init(cowboy_req:req(), _) -> no_return().
+init(Req, _) ->
+ _ = cowboy_req:stream_reply(200, #{<<"content-type">> => <<"text/plain">>}, Req),
+ %% We never return to allow querying the stream_info.
+ receive after infinity -> ok end.