Commit 2afa1134 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

A couple more corner cases

parent 7a03bef9
varnishtest "Test std.querysort"
server s1 -repeat 5 {
server s1 -repeat 6 {
rxreq
txresp
} -start
......@@ -18,18 +18,30 @@ client c1 {
rxresp
expect resp.http.url == "/foo/bar?b=0&c=5&p=0&t=0"
delay .1
txreq -url "/foo/bar?coa=0&co=0"
rxresp
expect resp.http.url == "/foo/bar?co=0&coa=0"
delay .1
txreq -url "/foo/bar?a=0&&&&&"
rxresp
expect resp.http.url == "/foo/bar?a=0"
txreq -url "/foo/bar?&a=0&&&&&z&w&x&"
rxresp
expect resp.http.url == "/foo/bar?a=0&w&x&z"
delay .1
txreq -url "/foo/bar?&"
rxresp
expect resp.http.url == "/foo/bar?"
delay .1
txreq -url "/foo/bar"
rxresp
expect resp.http.url == "/foo/bar"
......
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