aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-06-16 22:17:14 +0200
committerLoïc Hoguin <[email protected]>2016-06-16 22:17:14 +0200
commit57901a71160e2592d999efb564bef4a50876d6b1 (patch)
tree0c7debee50980664f35d139504b66f9fb33e83f1 /test
parent44f16f3b1e431b1b270d75b082bff3657c1e7788 (diff)
downloadcowboy-57901a71160e2592d999efb564bef4a50876d6b1.tar.gz
cowboy-57901a71160e2592d999efb564bef4a50876d6b1.tar.bz2
cowboy-57901a71160e2592d999efb564bef4a50876d6b1.zip
Fix upload example
Diffstat (limited to 'test')
-rw-r--r--test/examples_SUITE.erl28
1 files changed, 28 insertions, 0 deletions
diff --git a/test/examples_SUITE.erl b/test/examples_SUITE.erl
index 7092701..5263a6a 100644
--- a/test/examples_SUITE.erl
+++ b/test/examples_SUITE.erl
@@ -348,6 +348,34 @@ do_markdown_middleware(Transport, Protocol, Config) ->
{_, <<"text/html">>} = lists:keyfind(<<"content-type">>, 1, Headers),
ok.
+%% Upload.
+
+upload(Config) ->
+ doc("Upload example."),
+ try
+ do_compile_and_start(upload),
+ do_upload(tcp, http, Config),
+ do_upload(tcp, http2, Config)
+ after
+ do_stop(upload)
+ end.
+
+do_upload(Transport, Protocol, Config) ->
+ {200, _, << "<html>", _/bits >>} = do_get(Transport, Protocol, "/", Config),
+ %% Use POST to upload a file using multipart.
+ ConnPid = gun_open([{port, 8080}, {type, Transport}, {protocol, Protocol}|Config]),
+ Ref = gun:post(ConnPid, "/upload", [
+ {<<"content-type">>, <<"multipart/form-data;boundary=deadbeef">>}
+ ], <<
+ "--deadbeef\r\n"
+ "Content-Disposition: form-data; name=\"inputfile\"; filename=\"test.txt\"\r\n"
+ "Content-Type: text/plain\r\n"
+ "\r\n"
+ "Cowboy upload example!\r\n"
+ "--deadbeef--">>),
+ {response, fin, 204, _} = gun:await(ConnPid, Ref),
+ ok.
+
%% Websocket.
websocket(_) ->