Commit 504c8858 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Stabilize a race in this test with some small delay

parent afe89d55
...@@ -3,7 +3,7 @@ varnishtest "Test -h critbit a bit" ...@@ -3,7 +3,7 @@ varnishtest "Test -h critbit a bit"
server s1 { server s1 {
rxreq rxreq
expect req.url == "/" expect req.url == "/"
txresp -hdr "Connection: close" -body "012345\n" txresp -hdr "ID: slash" -hdr "Connection: close" -body "012345\n"
} -start } -start
varnish v1 -arg "-hcritbit" -vcl+backend { } -start varnish v1 -arg "-hcritbit" -vcl+backend { } -start
...@@ -13,41 +13,55 @@ client c1 { ...@@ -13,41 +13,55 @@ client c1 {
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.http.X-Varnish == "1001" expect resp.http.X-Varnish == "1001"
expect resp.http.ID == "slash"
} -run } -run
delay .1
client c2 { client c2 {
txreq -url "/" txreq -url "/"
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.http.X-Varnish == "1004 1002" expect resp.http.X-Varnish == "1004 1002"
expect resp.http.ID == "slash"
} -run } -run
delay .1
server s1 { server s1 {
rxreq rxreq
expect req.url == "/foo" expect req.url == "/foo"
txresp -body "012345\n" txresp -hdr "ID: foo" -body "012345\n"
rxreq rxreq
expect req.url == "/bar" expect req.url == "/bar"
txresp -body "012345\n" txresp -hdr "ID: bar" -body "012345\n"
} -start } -start
client c2 { client c1 {
txreq -url "/foo" txreq -url "/foo"
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.http.X-Varnish == "1006" expect resp.http.X-Varnish == "1006"
expect resp.http.ID == "foo"
delay .1
txreq -url "/" txreq -url "/"
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.http.X-Varnish == "1008 1002" expect resp.http.X-Varnish == "1008 1002"
expect resp.http.ID == "slash"
delay .1
txreq -url "/bar" txreq -url "/bar"
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.http.X-Varnish == "1009" expect resp.http.X-Varnish == "1009"
expect resp.http.ID == "bar"
delay .1
txreq -url "/foo" txreq -url "/foo"
rxresp rxresp
expect resp.status == 200 expect resp.status == 200
expect resp.http.X-Varnish == "1011 1007" expect resp.http.X-Varnish == "1011 1007"
expect resp.http.ID == "foo"
} -run } -run
varnish v1 -expect sess_conn == 3 varnish v1 -expect sess_conn == 3
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment