File: unique-id.vtc

package info (click to toggle)
haproxy 3.2.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 23,928 kB
  • sloc: ansic: 268,119; sh: 3,466; xml: 1,756; python: 1,345; makefile: 1,155; perl: 168; cpp: 21
file content (47 lines) | stat: -rw-r--r-- 1,092 bytes parent folder | download | duplicates (2)
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
varnishtest "unique-id test"

feature ignore_unknown_macro

server s1 {
    rxreq
    txresp
} -repeat 2 -start

haproxy h1 -conf {
    defaults
        mode http
        timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
        timeout client  "${HAPROXY_TEST_TIMEOUT-5s}"
        timeout server  "${HAPROXY_TEST_TIMEOUT-5s}"

    frontend stable
        bind "fd@${fe1}"
        unique-id-format TEST-%[uuid]
        http-response set-header A %[unique-id]
        http-response set-header B %[unique-id]
        default_backend be

    frontend request_data
        bind "fd@${fe2}"
        unique-id-format TEST-%[req.hdr(in)]
        http-response set-header out %[unique-id]
        default_backend be

    backend be
        server srv1 ${s1_addr}:${s1_port}
} -start

client c1 -connect ${h1_fe1_sock} {
    txreq -url "/"
    rxresp
    expect resp.status == 200
    expect resp.http.a == resp.http.b
} -run

client c2 -connect ${h1_fe2_sock} {
    txreq -url "/" \
          -hdr "in: 12345678"
    rxresp
    expect resp.status == 200
    expect resp.http.out == "TEST-12345678"
} -run