pai/tests/jenkins/test_rest_server_js_sdk.sh

61 строка
1.5 KiB
Bash

#!/bin/bash
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
cluster_type="$1"
rest_server_uri="$2"
case ${cluster_type} in
"yarn")
echo "Skip the API tests for yarn version"
;;
"k8s")
# install nodejs 12.x
sudo apt update || true
sudo apt -y install curl dirmngr apt-transport-https lsb-release ca-certificates || true
curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - || true
sudo apt install nodejs -y || true
node --version
# install openpai-js-sdk
rm -rf openpaisdk
git clone https://github.com/microsoft/openpaisdk
cd openpaisdk
npm install
npm run build
cd lib
# get token
token=""
until [ ! -z ${token} ]; do
token=$(curl -sS -X POST -d "username=admin" -d "password=admin-password" -d "expiration=36000" ${rest_server_uri}/api/v2/authn/basic/login | jq -r ".token")
sleep 10s
done
cat <<EOT >.tests/clusters.json
[
{
"alias": "test",
"rest_server_uri": "${rest_server_uri}",
"username": "admin",
"password": "admin-password",
"token": "${token}",
"https": false
}
]
EOT
cp ${WORKSPACE}/src/rest-server/docs/swagger.yaml .
node tests/common/apiTestCaseGenerator.js -- "swagger.yaml" ".tests/apiTestCase.json"
sudo npm install -g mocha
mocha tests/api_tests/**/*.spec.js -t 1800000
cd ../..
;;
*)
echo "Unknown cluster type ${cluster_type}"
exit 1
;;
esac