aboutsummaryrefslogblamecommitdiffstats
path: root/test/http_SUITE_data/http_errors.erl
blob: f105c585ae2c82387e9d78a9ee273adbdefee65c (plain) (tree)
1
2
3
4
5
6
7
8
9

                                                           
                     
 
                  

                   

                                                               

                                                  
                                                     
                
                                                
                                                     
                                                               
                
%% Feel free to use, reuse and abuse the code in this file.

-module(http_errors).

-export([init/2]).

init(Req, _Opts) ->
	#{'case' := Case} = cowboy_req:match_qs(Req, ['case']),
    case_init(Case, Req).

case_init(<<"init_before_reply">> = Case, _Req) ->
	cowboy_error_h:ignore(?MODULE, case_init, 2),
    error(Case);
case_init(<<"init_after_reply">> = Case, Req) ->
	cowboy_error_h:ignore(?MODULE, case_init, 2),
    _ = cowboy_req:reply(200, [], "http_handler_crashes", Req),
    error(Case).