aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2017-04-27 15:23:57 +0200
committerLoïc Hoguin <[email protected]>2017-04-27 15:23:57 +0200
commit32db544782f2528ed0916eecb200f75924dcc407 (patch)
treeef8746ab021a8172ac84e9f72062922ec4263619 /test
parente8c08c95b896bf9d2dd299e5fdbff50f714e8749 (diff)
downloadgun-32db544782f2528ed0916eecb200f75924dcc407.tar.gz
gun-32db544782f2528ed0916eecb200f75924dcc407.tar.bz2
gun-32db544782f2528ed0916eecb200f75924dcc407.zip
Add content handlers and built-in SSE support
Content handlers are a chain of modules implementing callbacks that receive the body of responses and may modify it (for example for decompressing the content) or act upon it (like sending a message to the owner process. The gun_sse content handler module can be used to translate text/event-stream events on the fly and deliver them to the owner process as a {gun_sse...} message. This feature is currently not documented and is only tested against a public server. It requires an up to date Cowlib.
Diffstat (limited to 'test')
-rw-r--r--test/sse_SUITE.erl59
1 files changed, 59 insertions, 0 deletions
diff --git a/test/sse_SUITE.erl b/test/sse_SUITE.erl
new file mode 100644
index 0000000..a036552
--- /dev/null
+++ b/test/sse_SUITE.erl
@@ -0,0 +1,59 @@
+%% Copyright (c) 2017, Loïc Hoguin <[email protected]>
+%%
+%% Permission to use, copy, modify, and/or distribute this software for any
+%% purpose with or without fee is hereby granted, provided that the above
+%% copyright notice and this permission notice appear in all copies.
+%%
+%% THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+%% WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+%% MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+%% ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+%% WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+%% ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+%% OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+
+-module(sse_SUITE).
+-compile(export_all).
+
+all() ->
+ [http, http2].
+
+http(_) ->
+ {ok, Pid} = gun:open("sse.now.sh", 443, #{
+ protocols => [http],
+ http_opts => #{content_handlers => [gun_sse, gun_data]}
+ }),
+ {ok, http} = gun:await_up(Pid),
+ common(Pid).
+
+http2(_) ->
+ {ok, Pid} = gun:open("sse.now.sh", 443, #{
+ protocols => [http2],
+ http2_opts => #{content_handlers => [gun_sse, gun_data]}
+ }),
+ {ok, http2} = gun:await_up(Pid),
+ common(Pid).
+
+common(Pid) ->
+ Ref = gun:get(Pid, "/", [
+ {<<"host">>, <<"sse.now.sh">>},
+ {<<"accept">>, <<"text/event-stream">>}
+ ]),
+ receive
+ {gun_response, Pid, Ref, nofin, Status, Headers} ->
+ ct:print("response ~p ~p", [Status, Headers]),
+ event_loop(Pid, Ref, 3)
+ after 5000 ->
+ error(timeout)
+ end.
+
+event_loop(_, _, 0) ->
+ ok;
+event_loop(Pid, Ref, N) ->
+ receive
+ {gun_sse, Pid, Ref, Event} ->
+ ct:print("event ~p", [Event]),
+ event_loop(Pid, Ref, N - 1)
+ after 10000 ->
+ error(timeout)
+ end.