|
| 1 | +#!/usr/bin/env bats |
| 2 | +# |
| 3 | +# Copyright 2023 HAProxy Technologies |
| 4 | +# |
| 5 | +# Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | +# you may not use this file except in compliance with the License. |
| 7 | +# You may obtain a copy of the License at |
| 8 | +# |
| 9 | +# http:#www.apache.org/licenses/LICENSE-2.0 |
| 10 | +# |
| 11 | +# Unless required by applicable law or agreed to in writing, software |
| 12 | +# distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | +# See the License for the specific language governing permissions and |
| 15 | +# limitations under the License. |
| 16 | +# |
| 17 | + |
| 18 | +load '../../libs/dataplaneapi' |
| 19 | +load '../../libs/get_json_path' |
| 20 | +load '../../libs/haproxy_config_setup' |
| 21 | +load '../../libs/resource_client' |
| 22 | +load '../../libs/version' |
| 23 | + |
| 24 | +load 'utils/_helpers' |
| 25 | + |
| 26 | +@test "table: Return an array of all tables from peers" { |
| 27 | + resource_get "$_REQ_RULES_BASE_PATH" "peer_section=mycluster" |
| 28 | + assert_equal "$SC" 200 |
| 29 | + assert_equal "$(get_json_path "$BODY" ".data[0].name")" "t1" |
| 30 | + assert_equal "$(get_json_path "$BODY" ".data[0].type")" "string" |
| 31 | + assert_equal "$(get_json_path "$BODY" ".data[0].type_len")" "1000" |
| 32 | + assert_equal "$(get_json_path "$BODY" ".data[0].size")" "200k" |
| 33 | + assert_equal "$(get_json_path "$BODY" ".data[0].expire")" "5m" |
| 34 | + assert_equal "$(get_json_path "$BODY" ".data[0].no_purge")" "true" |
| 35 | + assert_equal "$(get_json_path "$BODY" ".data[0].store")" "gpc0,conn_rate(30s)" |
| 36 | +} |
| 37 | + |
0 commit comments