Skip to content

Commit 0e7d44c

Browse files
committed
Fixed deploy tests and add them to CI.
1 parent 1841a2b commit 0e7d44c

File tree

4 files changed

+17
-4
lines changed

4 files changed

+17
-4
lines changed

Makefile.test

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ test_deploy_env_build: image test_deploy_image
7272
docker run -d --name ${TEST_DEPLOY_NODE} --tmpfs /tmp --tmpfs /run --tmpfs /run/lock \
7373
-v /sys/fs/cgroup:/sys/fs/cgroup:ro --network ${LOCALNET_DOCKER_NETWORK} ${TEST_DEPLOY_IMAGE_NAME}
7474

75-
test_deploy_env_clean: localnet_reset
75+
test_deploy_env_clean:
7676
docker rm -f ${TEST_DEPLOY_NODE}
7777

7878
.PHONY: localnet_init localnet_start localnet_stop localnet_clean localnet_export \

integration_tests/deploy/test_deploy.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ TEST_NODE="test_deploy_node"
2727
random_string account
2828

2929
cleanup() {
30+
make test_deploy_env_clean
3031
make localnet_clean
3132
}
3233
trap cleanup EXIT
@@ -35,7 +36,7 @@ trap cleanup EXIT
3536
test_divider
3637

3738
echo "Prepare the environment"
38-
make localnet_rebuild localnet_start
39+
make build install localnet_rebuild localnet_start
3940
make test_deploy_env_build
4041
# ensure that the pool is ready
4142
wait_for_height 2 20
@@ -71,7 +72,7 @@ docker exec -u "$DCL_USER" "$TEST_NODE" dcld tx validator add-node --pubkey="$vp
7172

7273
echo "Check node \"$TEST_NODE\" is in the validator set"
7374
result=$(dcld query validator all-nodes)
74-
check_response "$result" "\"name\": \"$TEST_NODE\""
75+
check_response "$result" "\"moniker\": \"$TEST_NODE\""
7576
check_response "$result" "\"pubKey\":$vpubkey" raw
7677

7778
echo "PASSED"

integration_tests/run-all.sh

+12-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# See the License for the specific language governing permissions and
1414
# limitations under the License.
1515

16-
# Possible values: all (default) | cli | light | rest | cli,light | cli,rest | light, rest | cli,light,rest
16+
# Possible values: all (default) | cli | light | rest | deploy | cli,light | cli,rest | light, rest | cli,light,rest | etc.
1717
TESTS_TO_RUN=${1:-all}
1818

1919
DETAILED_OUTPUT=true
@@ -170,4 +170,15 @@ if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "rest" ]]; then
170170

171171
cleanup_pool
172172
done
173+
fi
174+
175+
# Deploy tests
176+
if [[ $TESTS_TO_RUN =~ "all" || $TESTS_TO_RUN =~ "deploy" ]]; then
177+
DEPLOY_SHELL_TEST="./integration_tests/deploy/test_deploy.sh"
178+
if bash "$DEPLOY_SHELL_TEST" &>${DETAILED_OUTPUT_TARGET}; then
179+
log "$DEPLOY_SHELL_TEST finished successfully"
180+
else
181+
log "$DEPLOY_SHELL_TEST failed"
182+
exit 1
183+
fi
173184
fi

scripts/cosmos-base-swagger-gen.sh

+1
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,5 @@ mv "$out_file/apidocs.swagger.json" "$out_file/$DEST_FILE"
4545
sed -i "s/\"version\": \"version not set\"/\"version\": \"$COSMOS_SDK_VERSION\",\"description\": \"$DESC\"/g" "$out_file/$DEST_FILE"
4646

4747
# clean swagger files
48+
cd ../..
4849
rm -rf ./tmp-swagger-gen

0 commit comments

Comments
 (0)