-
Notifications
You must be signed in to change notification settings - Fork 21
chore(tooling): specs script #33
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
24e312e
chore(tooling): generation script for all language and clients
millotp ba35760
remove utils
millotp 959ac8b
move arguments
millotp 9592fc4
chore(tooling): specs script
shortcuts 8d81d42
merge main
shortcuts bde4978
fix: prevent format specs on CI
shortcuts ff5daf9
fix: bin/bash
shortcuts c30d948
fix: use default env var
shortcuts File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,6 +15,7 @@ yarn generate | |
``` | ||
|
||
Generic command: | ||
|
||
```bash | ||
yarn generate <language | all> <client | all> | ||
``` | ||
|
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,22 @@ | ||
yarn format:specs | ||
#!/bin/bash | ||
|
||
if [[ $CI ]]; then | ||
exit 0 | ||
fi | ||
|
||
format_specs() { | ||
set +e | ||
|
||
echo "> Formatting specs..." | ||
|
||
log=$(yarn specs:format) | ||
|
||
if [[ $? != 0 ]]; then | ||
echo "$log" | ||
exit 1 | ||
fi | ||
|
||
set -e | ||
} | ||
|
||
format_specs |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,12 @@ | ||
client=$1 | ||
#!/bin/bash | ||
|
||
export CLIENT=$(cat openapitools.json | yarn json "generator-cli.generators.javascript-${client}.output" | sed 's/#{cwd}\///g') | ||
export GENERATOR=$1 | ||
export CLIENT=$(cat openapitools.json | jq -r --arg generator "$GENERATOR" '."generator-cli".generators[$generator].output' | sed 's/#{cwd}\///g') | ||
|
||
echo "> Exporting utils for ${GENERATOR}..." | ||
mkdir -p $CLIENT/utils | ||
|
||
cp -R clients/algoliasearch-client-javascript/utils/ $CLIENT/utils | ||
|
||
echo "> Linting ${GENERATOR}..." | ||
eslint --ext=ts ${CLIENT} --fix |
This file contains hidden or 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
#!/bin/bash | ||
|
||
# Break on non-zero code | ||
set -e | ||
|
||
SPEC=$1 | ||
OUTPUT=$2 | ||
|
||
SPECS=() | ||
|
||
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd)" | ||
# Move to the root (easier to locate other scripts) | ||
cd ${DIR}/.. | ||
|
||
find_specs() { | ||
echo "> Searching for available specs..." | ||
local specs=( $(cat openapitools.json | jq -r '."generator-cli".generators[] | .glob') ) | ||
|
||
for spec in "${specs[@]}"; do | ||
if [[ ! ${SPECS[*]} =~ $spec ]]; then | ||
SPECS+=($spec) | ||
fi | ||
done | ||
} | ||
|
||
build_spec() { | ||
local spec=$1 | ||
local client=$(echo $spec | awk -F / '{ print $(NF-1) }') | ||
|
||
echo "> Building specs: ${client} ${OUTPUT}" | ||
|
||
yarn swagger-cli bundle ${spec} --outfile specs/dist/${client}.${OUTPUT} --type ${OUTPUT} | ||
} | ||
|
||
validate_spec() { | ||
local spec=$1 | ||
local client=$(echo $spec | awk -F / '{ print $(NF-1) }') | ||
|
||
echo "> Validating specs: ${client}" | ||
|
||
yarn swagger-cli validate specs/dist/${client}.${OUTPUT} | ||
} | ||
|
||
find_specs | ||
|
||
if [[ $SPEC == "all" ]]; then | ||
SPECS=("${SPECS[@]}") | ||
elif [[ ${SPECS[*]} =~ ${SPEC} ]]; then | ||
SPECS=("specs/${SPEC}/spec.yml") | ||
else | ||
echo "Unknown spec ${SPEC}" | ||
exit 1 | ||
fi | ||
|
||
if [[ $OUTPUT != "yaml" ]] && [[ $OUTPUT != "json" ]]; then | ||
echo "Unknown output ${OUTPUT}" | ||
exit 1 | ||
fi | ||
|
||
for spec in "${SPECS[@]}"; do | ||
build_spec $spec | ||
validate_spec $spec | ||
done |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.