blob: 908a4f9af32f708149660a681ed8c83ecd596bed (
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
|
vtest "Test for balance roundrobin"
feature ignore_unknown_macro
server s1 {
rxreq
txresp -hdr "Server: s1"
} -repeat 2 -start
server s2 {
rxreq
txresp -hdr "Server: s2"
} -repeat 2 -start
server s3 {
rxreq
txresp -hdr "Server: s3"
} -repeat 2 -start
server s4 {
rxreq
txresp -hdr "Server: s4"
} -repeat 2 -start
haproxy h1 -arg "-L A" -conf {
defaults
mode http
timeout server "${HAPROXY_TEST_TIMEOUT-5s}"
timeout connect "${HAPROXY_TEST_TIMEOUT-5s}"
timeout client "${HAPROXY_TEST_TIMEOUT-5s}"
listen px
bind "fd@${px}"
balance roundrobin
server srv1 ${s1_addr}:${s1_port}
server srv2 ${s2_addr}:${s2_port}
server srv3 ${s3_addr}:${s3_port}
server srv4 ${s4_addr}:${s4_port}
} -start
client c1 -connect ${h1_px_sock} {
txreq -url "/url1"
rxresp
expect resp.status == 200
expect resp.http.Server ~ s1
} -run
client c2 -connect ${h1_px_sock} {
txreq -url "/url1"
rxresp
expect resp.status == 200
expect resp.http.Server ~ s2
} -run
client c3 -connect ${h1_px_sock} {
txreq -url "/url1"
rxresp
expect resp.status == 200
expect resp.http.Server ~ s3
} -run
client c4 -connect ${h1_px_sock} {
txreq -url "/url1"
rxresp
expect resp.status == 200
expect resp.http.Server ~ s4
} -run
client c5 -connect ${h1_px_sock} {
txreq -url "/url1"
rxresp
expect resp.status == 200
expect resp.http.Server ~ s1
} -run
|