Added testing to the generated OpenAPI. #26
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Spec | |
on: [push, pull_request] | |
env: | |
OPENSEARCH_INITIAL_ADMIN_PASSWORD: BobgG7YrtsdKf9M | |
jobs: | |
integ-tests: | |
name: Build and Test | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- name: Checkout the repo | |
uses: actions/checkout@v3 | |
- name: Setup Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: '20' | |
- name: Build | |
working-directory: ./tools | |
run: |- | |
mkdir -p ../build | |
npm install | |
npm run merge -- --source ../spec --output ../build/opensearch-openapi.yaml | |
npm run merge -- --source ../spec --output ../build/opensearch-openapi-tested.yaml --x-include=x-tested | |
- name: Build and Run Docker Container | |
run: | | |
docker build coverage --tag opensearch-with-api-plugin | |
docker run -d -p 9200:9200 -p 9600:9600 -e "discovery.type=single-node" -e OPENSEARCH_INITIAL_ADMIN_PASSWORD="$OPENSEARCH_INITIAL_ADMIN_PASSWORD" opensearch-with-api-plugin | |
sleep 15 | |
- name: Display OpenSearch Info | |
run: | | |
curl -ks -u "admin:$OPENSEARCH_INITIAL_ADMIN_PASSWORD" https://localhost:9200/ | jq | |
- name: Test | |
working-directory: ./tools | |
run: |- | |
npm run dredd -- --user "admin:$OPENSEARCH_INITIAL_ADMIN_PASSWORD" ../build/opensearch-openapi-tested.yaml https://localhost:9200 | |
- name: Gather Test Coverage | |
id: test-coverage | |
shell: bash | |
run: | | |
current=`docker run --rm -i mikefarah/yq:latest -r '.paths | keys | length' < build/opensearch-openapi-tested.yaml` | |
total=`docker run --rm -i mikefarah/yq:latest -r '.paths | keys | length' < build/opensearch-openapi.yaml` | |
percent=$((current * 100 / total)) | |
echo "$current/$total ($percent%) APIs tested." | |
cat >>"coverage-tests.json" <<EOL | |
{ | |
"pull_request":${{ github.event.number }}, | |
"current":$current, | |
"total":$total, | |
"percent":$percent | |
} | |
EOL | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: coverage-tests | |
path: coverage-tests.json |