File: proxy_protocol_send_unique_id.vtc

package info (click to toggle)
haproxy 3.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 24,584 kB
  • sloc: ansic: 275,085; sh: 3,607; xml: 1,756; python: 1,345; makefile: 1,162; perl: 168; cpp: 21
file content (48 lines) | stat: -rw-r--r-- 1,322 bytes parent folder | download
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
varnishtest "Check that the unique ID TLV is properly sent"

feature ignore_unknown_macro

haproxy h1 -conf {
    global
    .if feature(THREAD)
        thread-groups 1
    .endif

    defaults
	timeout client 30s
	timeout server 30s
	timeout connect 30s
        mode http
        log global
        unique-id-format %{+X}o\ TEST-%[req.hdr(in)]

    listen sender
        bind "fd@${feS}"

        unique-id-header unique_id

        server example ${h1_feR_addr}:${h1_feR_port} send-proxy-v2 proxy-v2-options unique-id

    listen receiver
        bind "fd@${feR}" accept-proxy

        http-request set-var(txn.http_unique_id) req.hdr(unique_id)
        http-request set-var(txn.proxy_unique_id) fc_pp_unique_id
        http-after-response set-header http_unique_id %[var(txn.http_unique_id)]
        http-after-response set-header proxy_unique_id %[var(txn.proxy_unique_id)]
        http-request return status 200
} -start

# Validate that a correct header passes
client c1 -connect ${h1_feS_sock} {
    txreq -url "/" \
        -hdr "in: foo"
    rxresp
    expect resp.http.http_unique_id == "TEST-foo"
    expect resp.http.proxy_unique_id == "TEST-foo"
    txreq -url "/" \
        -hdr "in: bar"
    rxresp
    expect resp.http.http_unique_id == "TEST-bar"
    expect resp.http.proxy_unique_id == "TEST-bar"
} -run