mirror of
http://git.haproxy.org/git/haproxy.git/
synced 2025-01-24 22:43:02 +00:00
9d511b3c27
Now that warnings were almost all removed, let's enable zero-warning via -dW. All tests were adjusted, but two: - mcli/mcli_start_progs.vtc: the programs section currently cannot be silenced - stats/stats-file.vtc: the warning comes from the stats file itself on comment lines. All other ones are now OK.
47 lines
1.6 KiB
Plaintext
47 lines
1.6 KiB
Plaintext
varnishtest "Ensure mapfile ordering is preserved when loading the file"
|
|
feature cmd "$HAPROXY_PROGRAM -cc 'version_atleast(2.5-dev0)'"
|
|
feature ignore_unknown_macro
|
|
|
|
haproxy h1 -arg '-dW' -conf {
|
|
defaults
|
|
mode http
|
|
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
|
|
|
|
frontend fe1
|
|
bind "fd@${fe1}"
|
|
|
|
# check list ordering using map_dom (list-based match)
|
|
http-request return hdr dom %[req.hdr(Host),lower,map_dom(${testdir}/map_ordering.map)] if { url_beg /dom }
|
|
|
|
# check tree ordering using map_str (tree-based match) and duplicated keys
|
|
http-request return hdr str %[req.hdr(Host),lower,map_str(${testdir}/map_ordering.map)] if { url_beg /str }
|
|
|
|
} -start
|
|
|
|
# Check map ordering for list-based matching types
|
|
client c1 -connect ${h1_fe1_sock} {
|
|
# first.domain.tld is above domain.tld so it should match first
|
|
txreq -url "/dom" -hdr "Host: first.domain.tld"
|
|
rxresp
|
|
expect resp.status == 200
|
|
expect resp.http.dom == "first"
|
|
|
|
# second.domain.tld is below domain.tld so domain.tld should match first
|
|
txreq -url "/dom" -hdr "Host: second.domain.tld"
|
|
rxresp
|
|
expect resp.status == 200
|
|
expect resp.http.dom == "domain"
|
|
} -run
|
|
|
|
# Check map ordering for tree-based matching types (check that the matching
|
|
# key is the first one seen in the file)
|
|
client c2 -connect ${h1_fe1_sock} {
|
|
# first.domain.tld is first mapped to "first" in the mapfile
|
|
txreq -url "/str" -hdr "Host: first.domain.tld"
|
|
rxresp
|
|
expect resp.status == 200
|
|
expect resp.http.str == "first"
|
|
} -run
|