2023-04-16 10:11:35 +00:00
|
|
|
#!/bin/bash
|
2023-07-19 20:15:23 +00:00
|
|
|
|
2023-04-16 10:11:35 +00:00
|
|
|
set -exu
|
|
|
|
trap "exit" INT TERM
|
|
|
|
|
|
|
|
echo "ENV"
|
|
|
|
env
|
|
|
|
|
|
|
|
# fail on errors, verbose and export all env variables
|
|
|
|
set -e -x -a
|
|
|
|
|
|
|
|
echo "Current directory"
|
|
|
|
pwd
|
|
|
|
echo "Files in current directory"
|
|
|
|
ls -la ./
|
|
|
|
echo "Files in root directory"
|
|
|
|
ls -la /
|
2024-08-21 13:47:08 +00:00
|
|
|
echo "Files in /repo/tests directory"
|
|
|
|
ls -la /repo/tests
|
|
|
|
echo "Files in /repo/tests/sqllogic directory"
|
|
|
|
ls -la /repo/tests/sqllogic
|
2023-04-16 10:11:35 +00:00
|
|
|
echo "Files in /package_folder directory"
|
|
|
|
ls -la /package_folder
|
|
|
|
echo "Files in /test_output"
|
|
|
|
ls -la /test_output
|
|
|
|
echo "File in /sqllogictest"
|
|
|
|
ls -la /sqllogictest
|
|
|
|
|
|
|
|
dpkg -i package_folder/clickhouse-common-static_*.deb
|
|
|
|
dpkg -i package_folder/clickhouse-common-static-dbg_*.deb
|
|
|
|
dpkg -i package_folder/clickhouse-server_*.deb
|
|
|
|
dpkg -i package_folder/clickhouse-client_*.deb
|
|
|
|
|
|
|
|
# install test configs
|
|
|
|
# /clickhouse-tests/config/install.sh
|
|
|
|
|
|
|
|
sudo clickhouse start
|
|
|
|
|
|
|
|
sleep 5
|
|
|
|
for _ in $(seq 1 60); do if [[ $(wget --timeout=1 -q 'localhost:8123' -O-) == 'Ok.' ]]; then break ; else sleep 1; fi ; done
|
|
|
|
|
|
|
|
function run_tests()
|
|
|
|
{
|
|
|
|
set -x
|
|
|
|
|
|
|
|
cd /test_output
|
|
|
|
|
2024-08-21 13:47:08 +00:00
|
|
|
/repo/tests/sqllogic/runner.py --help 2>&1 \
|
2023-04-16 10:11:35 +00:00
|
|
|
| ts '%Y-%m-%d %H:%M:%S'
|
|
|
|
|
|
|
|
mkdir -p /test_output/self-test
|
2024-08-21 13:47:08 +00:00
|
|
|
/repo/tests/sqllogic/runner.py --log-file /test_output/runner-self-test.log \
|
2023-04-16 10:11:35 +00:00
|
|
|
self-test \
|
2024-08-21 13:47:08 +00:00
|
|
|
--self-test-dir /repo/tests/sqllogic/self-test \
|
2023-04-16 10:11:35 +00:00
|
|
|
--out-dir /test_output/self-test \
|
|
|
|
2>&1 \
|
|
|
|
| ts '%Y-%m-%d %H:%M:%S'
|
|
|
|
|
|
|
|
cat /test_output/self-test/check_status.tsv >> /test_output/check_status.tsv
|
|
|
|
cat /test_output/self-test/test_results.tsv >> /test_output/test_results.tsv ||:
|
|
|
|
tar -zcvf self-test.tar.gz self-test 1>/dev/null
|
|
|
|
|
|
|
|
if [ -d /sqllogictest ]
|
|
|
|
then
|
|
|
|
mkdir -p /test_output/statements-test
|
2024-08-21 13:47:08 +00:00
|
|
|
/repo/tests/sqllogic/runner.py \
|
2023-04-16 10:11:35 +00:00
|
|
|
--log-file /test_output/runner-statements-test.log \
|
|
|
|
--log-level info \
|
|
|
|
statements-test \
|
|
|
|
--input-dir /sqllogictest \
|
|
|
|
--out-dir /test_output/statements-test \
|
|
|
|
2>&1 \
|
|
|
|
| ts '%Y-%m-%d %H:%M:%S'
|
|
|
|
|
|
|
|
cat /test_output/statements-test/check_status.tsv >> /test_output/check_status.tsv
|
|
|
|
cat /test_output/statements-test/test_results.tsv >> /test_output/test_results.tsv
|
|
|
|
tar -zcvf statements-check.tar.gz statements-test 1>/dev/null
|
2023-10-27 13:05:37 +00:00
|
|
|
|
|
|
|
mkdir -p /test_output/complete-test
|
2024-08-21 13:47:08 +00:00
|
|
|
/repo/tests/sqllogic/runner.py \
|
2023-10-27 13:05:37 +00:00
|
|
|
--log-file /test_output/runner-complete-test.log \
|
|
|
|
--log-level info \
|
|
|
|
complete-test \
|
|
|
|
--input-dir /sqllogictest \
|
|
|
|
--out-dir /test_output/complete-test \
|
|
|
|
2>&1 \
|
|
|
|
| ts '%Y-%m-%d %H:%M:%S'
|
|
|
|
|
|
|
|
cat /test_output/complete-test/check_status.tsv >> /test_output/check_status.tsv
|
|
|
|
cat /test_output/complete-test/test_results.tsv >> /test_output/test_results.tsv
|
|
|
|
tar -zcvf complete-check.tar.gz complete-test 1>/dev/null
|
2023-04-16 10:11:35 +00:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
export -f run_tests
|
|
|
|
|
2024-08-06 19:39:41 +00:00
|
|
|
run_tests
|
2023-04-16 10:11:35 +00:00
|
|
|
|
|
|
|
#/process_functional_tests_result.py || echo -e "failure\tCannot parse results" > /test_output/check_status.tsv
|
|
|
|
|
|
|
|
clickhouse-client -q "system flush logs" ||:
|
|
|
|
|
|
|
|
# Stop server so we can safely read data with clickhouse-local.
|
|
|
|
# Why do we read data with clickhouse-local?
|
|
|
|
# Because it's the simplest way to read it when server has crashed.
|
|
|
|
sudo clickhouse stop ||:
|
|
|
|
|
|
|
|
for _ in $(seq 1 60); do if [[ $(wget --timeout=1 -q 'localhost:8123' -O-) == 'Ok.' ]]; then sleep 1 ; else break; fi ; done
|
|
|
|
|
2023-07-05 23:49:53 +00:00
|
|
|
rg -Fa "Fatal" /var/log/clickhouse-server/clickhouse-server.log ||:
|
|
|
|
zstd < /var/log/clickhouse-server/clickhouse-server.log > /test_output/clickhouse-server.log.zst &
|
2023-04-16 10:11:35 +00:00
|
|
|
|
|
|
|
# Compressed (FIXME: remove once only github actions will be left)
|
|
|
|
mv /var/log/clickhouse-server/stderr.log /test_output/ ||:
|