github.com/pingcap/tiflow@v0.0.0-20240520035814-5bf52d54e205/tests/integration_tests/cdc/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 prepare() {
    12  	rm -rf $WORK_DIR && mkdir -p $WORK_DIR
    13  	stop_tidb_cluster
    14  
    15  	start_tidb_cluster --workdir $WORK_DIR
    16  
    17  	cd $WORK_DIR
    18  
    19  	run_cdc_server --workdir $WORK_DIR --binary $CDC_BINARY
    20  
    21  	TOPIC_NAME="ticdc-cdc-test-$RANDOM"
    22  	case $SINK_TYPE in
    23  	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" ;;
    24  	storage) SINK_URI="file://$WORK_DIR/storage_test/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true" ;;
    25  	pulsar)
    26  		run_pulsar_cluster $WORK_DIR oauth
    27  		SINK_URI="pulsar://127.0.0.1:6650/$TOPIC_NAME?protocol=canal-json&enable-tidb-extension=true"
    28  		;;
    29  	*) SINK_URI="mysql://normal:123456@127.0.0.1:3306/" ;;
    30  	esac
    31  	if [ "$SINK_TYPE" == "pulsar" ]; then
    32  		cat <<EOF >>$WORK_DIR/pulsar_test.toml
    33                [sink.pulsar-config.oauth2]
    34                oauth2-issuer-url="http://localhost:9096"
    35                oauth2-audience="cdc-api-uri"
    36                oauth2-client-id="1234"
    37                oauth2-private-key="${WORK_DIR}/credential.json"
    38  EOF
    39  	else
    40  		echo "" >$WORK_DIR/pulsar_test.toml
    41  	fi
    42  	run_cdc_cli changefeed create --sink-uri="$SINK_URI" --config $WORK_DIR/pulsar_test.toml
    43  	case $SINK_TYPE in
    44  	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" ;;
    45  	storage) run_storage_consumer $WORK_DIR $SINK_URI "" "" ;;
    46  	pulsar) run_pulsar_consumer --upstream-uri $SINK_URI --oauth2-private-key ${WORK_DIR}/credential.json --oauth2-issuer-url "http://localhost:9096" -- oauth2-client-id "1234" ;;
    47  	esac
    48  }
    49  
    50  trap stop_tidb_cluster EXIT
    51  # storage and pulsar is not supported yet.
    52  # TODO(dongmen): enable pulsar in the future.
    53  if [ "$SINK_TYPE" != "storage" ]; then
    54  	# TODO(dongmen): enable pulsar in the future.
    55  	if [ "$SINK_TYPE" == "pulsar" ]; then
    56  		exit 0
    57  	fi
    58  
    59  	prepare $*
    60  	cd "$(dirname "$0")"
    61  	set -o pipefail
    62  	GO111MODULE=on go run cdc.go -config ./config.toml 2>&1 | tee $WORK_DIR/tester.log
    63  	cleanup_process $CDC_BINARY
    64  	check_logs $WORK_DIR
    65  fi
    66  echo "[$(date)] <<<<<< run test case $TEST_NAME success! >>>>>>"