mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00

Adds a loop_handler test suite that runs all tests under HTTP, HTTPS, SPDY each with and without the compress option enabled. Fixes output filtering that used to filter more than it should have. This forces us to parse the string sent by the emulator, which means it's probably not perfect yet. But it should at least not hide errors we want to see. Fix a crash in the output filtering code that entirely disabled output. Now when there is a crash the normal tty output is restored. Handlers are now in test/handlers/ as they can be reused between suites. Only generate a single certificate for the whole ct run to speed things up when we got many different test groups each needing certificates.
23 lines
631 B
Erlang
23 lines
631 B
Erlang
%% This module implements a loop handler that sends
|
|
%% itself a timeout that will intentionally arrive
|
|
%% too late, as it configures itself to only wait
|
|
%% 200ms before closing the connection in init/3.
|
|
%% This results in a 204 reply being sent back by Cowboy.
|
|
|
|
-module(loop_handler_timeout_h).
|
|
-behaviour(cowboy_loop_handler).
|
|
|
|
-export([init/3]).
|
|
-export([info/3]).
|
|
-export([terminate/3]).
|
|
|
|
init(_, Req, _) ->
|
|
erlang:send_after(1000, self(), timeout),
|
|
{loop, Req, undefined, 200, hibernate}.
|
|
|
|
info(timeout, Req, State) ->
|
|
{ok, Req2} = cowboy_req:reply(500, Req),
|
|
{ok, Req2, State}.
|
|
|
|
terminate({normal, timeout}, _, _) ->
|
|
ok.
|