summaryrefslogtreecommitdiffstats
path: root/reg-tests/lua/set_var.vtc
blob: 0c8a4b162f8fdf1ccfbcbf62ec4a9952d6912865 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
varnishtest "Lua: set_var"
#REQUIRE_VERSION=2.2
#REQUIRE_OPTIONS=LUA

feature ignore_unknown_macro

haproxy h1 -conf {
    global
        # WT: limit false-positives causing "HTTP header incomplete" due to
        # idle server connections being randomly used and randomly expiring
        # under us.
        tune.idle-pool.shared off

    global
        lua-load ${testdir}/set_var.lua

    frontend fe1
        mode http
        bind "fd@${fe1}"

        http-request use-service lua.set_var

    frontend fe2
        mode http
        bind "fd@${fe2}"
        # just make sure the variable exists
        http-request set-header Dummy %[var(proc.fe2_foo)]

        http-request use-service lua.set_var_ifexist
} -start

client c0 -connect ${h1_fe1_sock} {
    # create var
    txreq -url "/" \
        -hdr "Var: txn.fe1_foo"
    rxresp
    expect resp.status == 202
    expect resp.http.echo == "value"

    # rewrite var
    txreq -url "/" \
        -hdr "Var: txn.fe1_foo"
    rxresp
    expect resp.status == 202
    expect resp.http.echo == "value"

    # create var under scope "proc"
    txreq -url "/" \
        -hdr "Var: proc.fe1_foo"
    rxresp
    expect resp.status == 202
    expect resp.http.echo == "value"

    # fail to create bad scope
    txreq -url "/" \
        -hdr "Var: invalid.var"
    rxresp
    expect resp.status == 400
    expect resp.http.echo == "(nil)"
} -run

client c1 -connect ${h1_fe2_sock} {
    # this one exists in the conf, it must succeed
    txreq -url "/" \
        -hdr "Var: proc.fe2_foo"
    rxresp
    expect resp.status == 202
    expect resp.http.echo == "value"

    # this one does not exist in the conf, it must fail
    txreq -url "/" \
        -hdr "Var: proc.fe2_bar"
    rxresp
    expect resp.status == 400
    expect resp.http.echo == "(nil)"

    # this one is under txn, it must succeed
    txreq -url "/" \
        -hdr "Var: txn.fe2_foo"
    rxresp
    expect resp.status == 202
    expect resp.http.echo == "value"
} -run