From 018e392f3a47a82bb41eb345933ec5cfa2490d38 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Hoguin?= Date: Thu, 22 Aug 2013 10:39:50 +0200 Subject: Initial commit with working SPDY client --- test/twitter_SUITE.erl | 70 ++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 test/twitter_SUITE.erl (limited to 'test/twitter_SUITE.erl') diff --git a/test/twitter_SUITE.erl b/test/twitter_SUITE.erl new file mode 100644 index 0000000..26afdc3 --- /dev/null +++ b/test/twitter_SUITE.erl @@ -0,0 +1,70 @@ +%% Copyright (c) 2013, Loïc Hoguin +%% +%% 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(twitter_SUITE). + +-include_lib("common_test/include/ct.hrl"). + +%% ct. +-export([all/0]). +-export([init_per_suite/1]). +-export([end_per_suite/1]). + +%% Tests. +-export([spdy/1]). + +%% ct. + +all() -> + [spdy]. + +init_per_suite(Config) -> + ok = application:start(ranch), + ok = application:start(crypto), + ok = application:start(asn1), + ok = application:start(public_key), + ok = application:start(ssl), + ok = application:start(gun), + Config. + +end_per_suite(_) -> + ok = application:stop(gun), + ok = application:stop(ssl), + ok = application:stop(public_key), + ok = application:stop(asn1), + ok = application:stop(crypto), + ok = application:stop(ranch), + ok. + +spdy(_) -> + {ok, Pid} = gun:open("twitter.com", 443, []), + Ref = gun:get(Pid, "/"), + receive + {gun, response, Pid, Ref, Status, Headers} -> + ct:print("response ~p ~p", [Status, Headers]), + data_loop(Pid, Ref) + after 5000 -> + error(timeout) + end. + +data_loop(Pid, Ref) -> + receive + {gun, data, Pid, Ref, nofin, Data} -> + ct:print("data ~p", [Data]), + data_loop(Pid, Ref); + {gun, data, Pid, Ref, fin, Data} -> + ct:print("data ~p~nend", [Data]) + after 5000 -> + error(timeout) + end. -- cgit v1.2.3