github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/new_ci_collation/run.sh (about)

     1  #!/bin/bash
     2  
     3  set -eu
     4  
     5  CUR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
     6  source $CUR/../_utils/test_prepare
     7  WORK_DIR=$OUT_DIR/$TEST_NAME
     8  CDC_BINARY=cdc.test
     9  SINK_TYPE=$1
    10  
    11  function run() {
    12  	# storage is not supported yet.
    13  	if [ "$SINK_TYPE" == "storage" ]; then
    14  		return
    15  	fi
    16  
    17  	# TODO(dongmen): enable pulsar in the future.
    18  	if [ "$SINK_TYPE" == "pulsar" ]; then
    19  		exit 0
    20  	fi
    21  	rm -rf $WORK_DIR && mkdir -p $WORK_DIR
    22  
    23  	start_tidb_cluster --workdir $WORK_DIR --tidb-config $CUR/conf/tidb_config.toml
    24  
    25  	cd $WORK_DIR
    26  
    27  	# record tso before we create tables to skip the system table DDLs
    28  	start_ts=$(cdc cli tso query --pd=http://$UP_PD_HOST_1:$UP_PD_PORT_1)
    29  
    30  	run_cdc_server --workdir $WORK_DIR --binary $CDC_BINARY
    31  
    32  	TOPIC_NAME="ticdc-new_ci_collation-test-$RANDOM"
    33  	case $SINK_TYPE in
    34  	kafka) SINK_URI="kafka://127.0.0.1:9092/$TOPIC_NAME?protocol=open-protocol&partition-num=4&kafka-version=${KAFKA_VERSION}&max-message-bytes=10485760" ;;
    35  	storage) SINK_URI="file://$WORK_DIR/storage_test/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true" ;;
    36  	pulsar)
    37  		run_pulsar_cluster $WORK_DIR normal
    38  		SINK_URI="pulsar://127.0.0.1:6650/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true"
    39  		;;
    40  	*) SINK_URI="mysql://normal:123456@127.0.0.1:3306/?safe-mode=true" ;;
    41  	esac
    42  
    43  	cdc cli changefeed create --start-ts=$start_ts --sink-uri="$SINK_URI"
    44  
    45  	case $SINK_TYPE in
    46  	kafka) run_kafka_consumer $WORK_DIR "kafka://127.0.0.1:9092/$TOPIC_NAME?protocol=open-protocol&partition-num=4&version=${KAFKA_VERSION}&max-message-bytes=10485760" ;;
    47  	storage) run_storage_consumer $WORK_DIR $SINK_URI "" ;;
    48  	pulsar) run_pulsar_consumer --upstream-uri $SINK_URI ;;
    49  	esac
    50  
    51  	run_sql_file $CUR/data/test1.sql ${UP_TIDB_HOST} ${UP_TIDB_PORT}
    52  	for i in $(seq 1 5); do
    53  		table="new_ci_collation_test.t$i"
    54  		check_table_exists $table ${DOWN_TIDB_HOST} ${DOWN_TIDB_PORT}
    55  	done
    56  	check_sync_diff $WORK_DIR $CUR/conf/diff_config.toml
    57  	run_sql_file $CUR/data/test2.sql ${UP_TIDB_HOST} ${UP_TIDB_PORT}
    58  	check_sync_diff $WORK_DIR $CUR/conf/diff_config.toml
    59  
    60  	cleanup_process $CDC_BINARY
    61  }
    62  
    63  trap stop_tidb_cluster EXIT
    64  run $*
    65  check_logs $WORK_DIR
    66  echo "[$(date)] <<<<<< run test case $TEST_NAME success! >>>>>>"