mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 12:14:18 +00:00
32 lines
884 B
Bash
Executable File
32 lines
884 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
CUR_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
# shellcheck source=../shell_config.sh
|
|
. "$CUR_DIR"/../shell_config.sh
|
|
|
|
(
|
|
echo 'Ensure that not existing file still write an error to stderr'
|
|
|
|
test_dir=$(mktemp -d -t clickhouse.XXXXXX)
|
|
mkdir -p "$test_dir"
|
|
cd "$test_dir" || exit 1
|
|
$CLICKHOUSE_SERVER_BINARY -- --logger.stderr=/no/such/file |& grep -o 'File /no/such/file (logger.stderr) is not writable'
|
|
rm -fr "${test_dir:?}"
|
|
)
|
|
|
|
(
|
|
echo 'Ensure that the file will be created'
|
|
|
|
test_dir=$(mktemp -d -t clickhouse.XXXXXX)
|
|
mkdir -p "$test_dir"
|
|
cd "$test_dir" || exit 1
|
|
|
|
stderr=$(mktemp -t clickhouse.XXXXXX)
|
|
$CLICKHOUSE_SERVER_BINARY -- --logger.stderr="$stderr" 2>/dev/null
|
|
# -s -- check that stderr was created and is not empty
|
|
test -s "$stderr" || exit 2
|
|
rm "$stderr"
|
|
|
|
rm -fr "${test_dir:?}"
|
|
)
|