| 1234567891011121314151617181920212223242526272829303132 |
- #!/bin/sh
- ## This script is to run emqx cluster smoke tests (fvt) in github action
- ## This script is executed in paho_client
- set -x
- set +e
- EMQX_TEST_DB_BACKEND=$1
- if [ "$EMQX_TEST_DB_BACKEND" = "rlog" ]
- then
- # target only replica to avoid replication races
- TARGET_HOST="node2.emqx.io"
- else
- # use loadbalancer
- TARGET_HOST="haproxy"
- fi
- apk update && apk add git curl
- git clone -b develop-4.0 https://github.com/emqx/paho.mqtt.testing.git /paho.mqtt.testing
- pip install pytest
- pytest -v /paho.mqtt.testing/interoperability/test_client/V5/test_connect.py -k test_basic --host "$TARGET_HOST"
- RESULT=$?
- pytest -v /paho.mqtt.testing/interoperability/test_client --host "$TARGET_HOST"
- RESULT=$(( RESULT + $? ))
- # pytest -v /paho.mqtt.testing/interoperability/test_cluster --host1 "node1.emqx.io" --host2 "node2.emqx.io"
- # RESULT=$(( RESULT + $? ))
- exit $RESULT
|