-
Notifications
You must be signed in to change notification settings - Fork 434
/
Copy pathtest.ebin
executable file
·60 lines (47 loc) · 2.29 KB
/
test.ebin
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#!/usr/bin/env escript
%% -*- erlang -*-
%%! -pa ../_build/default/lib/hackney/ebin -pa ../_build/default/lib/*/ebin -pa ../_build/default/lib/certifi/ebin -pa ../_build/default/lib/idna/ebin -pa ../_build/default/lib/metrics/ebin -pa ../_build/default/lib/mimerl/ebin -pa ../_build/default/lib/ssl_verify_fun/ebin -pa ../_build/default/lib/unicode_util_compat/ebin
-module(test).
display_request_info(Ref) ->
Info = hackney:request_info(Ref),
io:format("socket is ~p~n", [Info]).
main(_) ->
application:ensure_all_started(hackney),
application:set_env(hackney, use_default_pool, false),
io:format("step 1~n", []),
{ok, Ref} = hackney:connect(<<"https://friendpaste.com">>),
display_request_info(Ref),
{ok, _, _Headers, Ref} = hackney:send_request(Ref, {get, <<"/">>, [],
<<>>}),
{ok, Body} = hackney:body(Ref),
io:format("body: ~p~n~n", [Body]),
io:format("step 2~n", []),
display_request_info(Ref),
{ok, _, _, Ref} = hackney:send_request(Ref, {get,
<<"/_all_languages">>,
[],
<<>>}),
{ok, Body1} = hackney:body(Ref),
io:format("body: ~p~n~n", [Body1]),
display_request_info(Ref),
io:format("step 3~n", []),
ReqBody = << "{\"snippet\": \"test.ebin\" }" >>,
ReqHeaders = [{<<"Content-Type">>, <<"application/json">>}],
{ok, _, _, Ref} = hackney:send_request(Ref, {post, <<"/">>,
ReqHeaders,
ReqBody}),
{ok, Body2} = hackney:body(Ref),
io:format("body: ~p~n~n", [Body2]),
display_request_info(Ref),
io:format("step 4~n", []),
ReqBody1 = {file, "./examples/test.json"},
{ok, _, _, Ref} = hackney:send_request(Ref, {post, <<"/">>,
ReqHeaders,
ReqBody1}),
{ok, Body3} = hackney:body(Ref),
io:format("body: ~p~n~n", [Body3]),
display_request_info(Ref),
hackney:close(Ref),
IsClosed = hackney_manager:get_state(Ref) =:= req_not_found,
io:format("has been closed: ~p~n", [IsClosed]),
display_request_info(Ref).