blob: 9aff5e33f3e44dc798cd62f0f8ee478ecd97355a [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# game
array+=("game/go-server-game")
array+=("game/go-server-gate")
# config-api
array=("config-api/rpc/triple")
array+=("config-api/configcenter/nacos")
array+=("config-api/configcenter/zookeeper")
array+=("config-api/config-merge")
# error
array+=("error/triple/hessian2")
array+=("error/triple/pb")
# metrics
array+=("metrics")
# helloworld
array+=("helloworld")
# direct
array+=("direct")
# filer
array+=("filter/custom")
array+=("filter/token")
# context
array+=("context/dubbo")
array+=("context/triple")
# registry
array+=("registry/zookeeper")
array+=("registry/nacos")
array+=("registry/etcd")
array+=("registry/servicediscovery/zookeeper")
array+=("registry/servicediscovery/nacos")
array+=("registry/all/zookeeper")
array+=("registry/all/nacos")
# generic
array+=("generic/default")
# rpc
array+=("rpc/dubbo")
array+=("rpc/triple/codec-extension")
array+=("rpc/triple/hessian2")
array+=("rpc/triple/msgpack")
array+=("rpc/triple/pb/dubbogo-grpc")
array+=("rpc/grpc")
array+=("rpc/jsonrpc")
array+=("rpc/triple/pb2")
# tls
array+=("tls/dubbo")
array+=("tls/triple")
array+=("tls/grpc")
# async
array+=("async")
# polaris
array+=("polaris/registry")
array+=("polaris/limit")
# replace tls config
echo "The prefix of certificate path of the following files were replaced to \"$(pwd)/tls\"."
find $(pwd)/tls -type f -name '*.yml' -print0 | xargs -0 -n1
find $(pwd)/tls -type f -name '*.yml' -print0 | xargs -0 sed -i 's#\.\.\/\.\.\/\.\.#'"$(pwd)/tls"'#g'
DOCKER_DIR=$(pwd)/integrate_test/dockercompose
docker-compose -f $DOCKER_DIR/docker-compose.yml up -d
bash -f $DOCKER_DIR/docker-health-check.sh
for((i=0;i<${#array[*]};i++))
do
./integrate_test.sh "${array[i]}"
result=$?
if [ $result -gt 0 ]; then
docker-compose -f $DOCKER_DIR/docker-compose.yml down
exit $result
fi
done
docker-compose -f $DOCKER_DIR/docker-compose.yml down