ClickHouse/tests/queries/0_stateless/00505_secure.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
924 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2022-03-21 18:01:55 +00:00
# Tags: no-fasttest, no-random-settings
2018-06-18 21:13:11 +00:00
# set -x
CURDIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
2020-12-28 11:46:53 +00:00
# shellcheck source=../shell_config.sh
2020-08-01 00:51:12 +00:00
. "$CURDIR"/../shell_config.sh
2024-03-18 15:23:07 +00:00
$CLICKHOUSE_CLIENT --no-secure -q "SELECT 0;"
# Use $CLICKHOUSE_CLIENT_SECURE, but replace `--secure` by `-s` to test it
CLICKHOUSE_CLIENT_S=${CLICKHOUSE_CLIENT_SECURE/ --secure / -s }
$CLICKHOUSE_CLIENT_S -q "SELECT 1;"
$CLICKHOUSE_CLIENT_SECURE -q "SELECT 2;"
2020-02-22 01:35:28 +00:00
#disable test
#$CLICKHOUSE_CURL -sS --insecure ${CLICKHOUSE_URL_HTTPS}?query=SELECT%203
echo 3
$CLICKHOUSE_CLIENT_SECURE -q "SELECT 4;"
# TODO: can test only on unchanged port. Possible solutions: generate config or pass shard port via command line
if [[ "$CLICKHOUSE_PORT_TCP_SECURE" = "$CLICKHOUSE_PORT_TCP_SECURE" ]]; then
2024-09-07 16:21:06 +00:00
cat "$CURDIR"/00505_distributed_secure.data | $CLICKHOUSE_CLIENT_SECURE -m
else
2020-08-01 00:52:41 +00:00
tail -n 13 "$CURDIR"/00505_secure.reference
fi