mirror of
https://github.com/mariadb-corporation/mariadb-connector-cpp.git
synced 2025-07-20 16:35:25 +00:00

Statement::addBatch was omitted in previous commit. Here it is optimized as well(in similar way). Previous commit did not restore the autocommit in the stored server status, so next query could thing it still off. Fixed testcases for maxscale and fixing testing with mysql servers.
111 lines
3.5 KiB
Bash
Executable File
111 lines
3.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
#if [ -n "$BENCH" ] ; then
|
|
# sudo benchmark/build.sh
|
|
# cd benchmark
|
|
# sudo ./installation.sh
|
|
# sudo ./launch.sh
|
|
# exit
|
|
#fi
|
|
|
|
# Setting test environment before building connector to configure tests default credentials
|
|
if [ "$TRAVIS_OS_NAME" = "windows" ] ; then
|
|
echo "build from windows"
|
|
ls -l
|
|
if [ -e ./settestenv.sh ] ; then
|
|
source ./settestenv.sh
|
|
fi
|
|
else
|
|
echo "build from linux"
|
|
export SSLCERT=$TEST_DB_SERVER_CERT
|
|
export MARIADB_PLUGIN_DIR=$PWD
|
|
|
|
export SSLCERT=$TEST_DB_SERVER_CERT
|
|
if [ -n "$MYSQL_TEST_SSL_PORT" ] ; then
|
|
export TEST_SSL_PORT=$MYSQL_TEST_SSL_PORT
|
|
fi
|
|
if ! [ "$TRAVIS_OS_NAME" = "osx" ] ; then
|
|
sudo apt install cmake
|
|
fi
|
|
fi
|
|
|
|
export CCPP_DIR=/home/travis/build/mariadb-corporation/mariadb-connector-cpp
|
|
export TEST_UID=$TEST_DB_USER
|
|
export TEST_SERVER=$TEST_DB_HOST
|
|
set +x
|
|
export TEST_PASSWORD=$TEST_DB_PASSWORD
|
|
# Just to see in log that this was done
|
|
echo "export TEST_PASSWORD=******************"
|
|
set -ex
|
|
export TEST_PORT=$TEST_DB_PORT
|
|
export TEST_SCHEMA=testcpp
|
|
export TEST_VERBOSE=true
|
|
if [ "${TEST_REQUIRE_TLS}" = "1" ] ; then
|
|
export TEST_USETLS=true
|
|
fi
|
|
|
|
if [ "$TRAVIS_OS_NAME" = "windows" ] ; then
|
|
cmake -DCONC_WITH_MSI=OFF -DCONC_WITH_UNIT_TESTS=OFF -DWITH_MSI=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWITH_SSL=SCHANNEL -DTEST_HOST="jdbc:mariadb://$TEST_DB_HOST:$TEST_DB_PORT" .
|
|
else
|
|
if [ "$TRAVIS_OS_NAME" = "osx" ] ; then
|
|
cmake -G Xcode -DCONC_WITH_MSI=OFF -DCONC_WITH_UNIT_TESTS=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWITH_SSL=OPENSSL -DOPENSSL_ROOT_DIR=/usr/local/opt/openssl -DOPENSSL_LIBRARIES=/usr/local/opt/openssl/lib -DTEST_HOST="jdbc:mariadb://$TEST_SERVER:$TEST_PORT" -DWITH_EXTERNAL_ZLIB=On .
|
|
else
|
|
cmake -DCONC_WITH_MSI=OFF -DCONC_WITH_UNIT_TESTS=OFF -DCMAKE_BUILD_TYPE=RelWithDebInfo -DWITH_SSL=OPENSSL -DTEST_HOST="jdbc:mariadb://$TEST_SERVER:$TEST_PORT" .
|
|
fi
|
|
fi
|
|
|
|
set -x
|
|
cmake --build . --config RelWithDebInfo
|
|
|
|
if [ -n "$server_branch" ] ; then
|
|
|
|
###################################################################################################################
|
|
# Building server for testing
|
|
###################################################################################################################
|
|
echo "Testing against built from the source server is not supported at the moment"
|
|
exit 1
|
|
|
|
# change travis localhost to use only 127.0.0.1
|
|
sudo sed -i 's/127\.0\.1\.1 localhost/127.0.0.1 localhost/' /etc/hosts
|
|
sudo tail /etc/hosts
|
|
|
|
# get latest server
|
|
git clone -b ${server_branch} https://github.com/mariadb/server ../workdir-server --depth=1
|
|
|
|
cd ../workdir-server
|
|
export SERVER_DIR=$PWD
|
|
|
|
# don't pull in submodules. We want the latest C/C as libmariadb
|
|
# build latest server with latest C/C as libmariadb
|
|
# skip to build some storage engines to speed up the build
|
|
|
|
mkdir bld
|
|
cd bld
|
|
cmake .. -DPLUGIN_MROONGA=NO -DPLUGIN_ROCKSDB=NO -DPLUGIN_SPIDER=NO -DPLUGIN_TOKUDB=NO
|
|
echo "PR:${TRAVIS_PULL_REQUEST} TRAVIS_COMMIT:${TRAVIS_COMMIT}"
|
|
if [ -n "$TRAVIS_PULL_REQUEST" ] && [ "$TRAVIS_PULL_REQUEST" != "false" ] ; then
|
|
# fetching pull request
|
|
echo "fetching PR"
|
|
else
|
|
echo "checkout commit"
|
|
fi
|
|
|
|
cd $SERVER_DIR/bld
|
|
make -j9
|
|
|
|
fi
|
|
###################################################################################################################
|
|
# run connector test suite
|
|
###################################################################################################################
|
|
echo "run connector test suite"
|
|
|
|
cd ./test
|
|
if [ "$srv" = "mysql" ] ; then
|
|
cp caching_sha2_password.* ../
|
|
fi
|
|
|
|
ctest --output-on-failure
|
|
|