unicorn.git  about / heads / tags
Rack HTTP server for Unix and fast clients
blob fee07918d248fde7cf69f85b171248711fd0a0a3 1250 bytes (raw)
$ git show no-kgio-wip:t/t0200-rack-hijack.sh	# shows this blob on the CLI

 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
 
#!/bin/sh
. ./test-lib.sh
t_plan 9 "rack.hijack tests (Rack 1.5+ (Rack::VERSION >= [ 1,2]))"

t_begin "setup and start" && {
	unicorn_setup
	unicorn -D -c $unicorn_config hijack.ru
	unicorn_wait_start
}

t_begin "normal env reused between requests" && {
	env_a="$(curl -sSf http://$listen/normal_env_id)"
	b="$(curl -sSf http://$listen/normal_env_id)"
	test x"$env_a" = x"$b"
}

t_begin "check request hijack" && {
	test "xrequest.hijacked" = x"$(curl -sSfv http://$listen/hijack_req)"
}

t_begin "env changed after request hijack" && {
	env_b="$(curl -sSf http://$listen/normal_env_id)"
	test x"$env_a" != x"$env_b"
}

t_begin "check response hijack" && {
	test "xresponse.hijacked" = x"$(curl -sSfv http://$listen/hijack_res)"
}

t_begin "env changed after response hijack" && {
	env_c="$(curl -sSf http://$listen/normal_env_id)"
	test x"$env_b" != x"$env_c"
}

t_begin "env continues to be reused between requests" && {
	b="$(curl -sSf http://$listen/normal_env_id)"
	test x"$env_c" = x"$b"
}

t_begin "killing succeeds after hijack" && {
	kill $unicorn_pid
}

t_begin "check stderr for hijacked body close" && {
	check_stderr
	grep 'closed DieIfUsed 1\>' $r_err
	grep 'closed DieIfUsed 2\>' $r_err
	! grep 'closed DieIfUsed 3\>' $r_err
}

t_done

git clone https://yhbt.net/unicorn.git