Christopher Faulet | aec7f76 | 2020-04-22 15:16:58 +0200 | [diff] [blame] | 1 | varnishtest "Health-checks: PostgreSQL health-check" |
| 2 | #REQUIRE_VERSION=2.2 |
| 3 | #REGTEST_TYPE=slow |
| 4 | feature ignore_unknown_macro |
| 5 | |
| 6 | # This scripts tests health-checks for PostgreSQL application, enabled using |
| 7 | # "option pgsql-check" line. A intermediate listener is used to validate |
| 8 | # the request because it is impossible with VTEST to read and match raw |
| 9 | # text. |
| 10 | |
| 11 | server s1 { |
| 12 | recv 23 |
| 13 | sendhex "520000000800000000" |
| 14 | } -start |
| 15 | |
| 16 | server s2 { |
| 17 | recv 23 |
| 18 | sendhex "450000000B53464154414C00" |
| 19 | } -start |
| 20 | |
| 21 | server s3 { |
| 22 | recv 23 |
| 23 | send "Not a PostgreSQL response" |
| 24 | } -start |
| 25 | |
| 26 | syslog S1 -level notice { |
| 27 | recv |
Christopher Faulet | aec7f76 | 2020-04-22 15:16:58 +0200 | [diff] [blame] | 28 | expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be1/srv succeeded, reason: Layer7 check passed.+info: \"PostgreSQL server is ok\".+check duration: [[:digit:]]+ms, status: 1/1 UP." |
| 29 | } -start |
| 30 | |
| 31 | syslog S2 -level notice { |
| 32 | recv |
Christopher Faulet | aec7f76 | 2020-04-22 15:16:58 +0200 | [diff] [blame] | 33 | expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be2/srv failed, reason: Layer7 invalid response.+info: \"FATAL\".+check duration: [[:digit:]]+ms, status: 0/1 DOWN." |
| 34 | } -start |
| 35 | |
| 36 | syslog S3 -level notice { |
| 37 | recv |
Christopher Faulet | aec7f76 | 2020-04-22 15:16:58 +0200 | [diff] [blame] | 38 | expect ~ "[^:\\[ ]\\[${h1_pid}\\]: Health check for server be3/srv failed, reason: Layer7 wrong status.+info: \"PostgreSQL unknown error\".+check duration: [[:digit:]]+ms, status: 0/1 DOWN." |
| 39 | } -start |
| 40 | |
| 41 | |
| 42 | haproxy h1 -conf { |
| 43 | defaults |
| 44 | mode tcp |
| 45 | timeout client 1s |
| 46 | timeout server 1s |
| 47 | timeout connect 100ms |
| 48 | |
| 49 | backend be1 |
| 50 | log ${S1_addr}:${S1_port} daemon |
| 51 | option log-health-checks |
| 52 | option pgsql-check user postgres |
| 53 | server srv ${h1_pgsql_addr}:${h1_pgsql_port} check inter 1s rise 1 fall 1 |
| 54 | |
| 55 | backend be2 |
| 56 | log ${S2_addr}:${S2_port} daemon |
| 57 | option log-health-checks |
| 58 | option pgsql-check user postgres |
| 59 | server srv ${s2_addr}:${s2_port} check inter 1s rise 1 fall 1 |
| 60 | |
| 61 | backend be3 |
| 62 | log ${S3_addr}:${S3_port} daemon |
| 63 | option log-health-checks |
| 64 | option pgsql-check user postgres |
| 65 | server srv ${s3_addr}:${s3_port} check inter 1s rise 1 fall 1 |
| 66 | |
| 67 | listen pgsql1 |
| 68 | bind "fd@${pgsql}" |
| 69 | tcp-request inspect-delay 100ms |
| 70 | tcp-request content accept if { req.len eq 23 } { req.payload(0,23) -m bin "00000017000300007573657200706f7374677265730000" } |
| 71 | tcp-request content reject |
| 72 | server srv ${s1_addr}:${s1_port} |
| 73 | } -start |
| 74 | |
| 75 | syslog S1 -wait |
| 76 | syslog S2 -wait |
| 77 | syslog S3 -wait |