Skip to content

Commit 968e89f

Browse files
committed
Update repository
1 parent 492389a commit 968e89f

8 files changed

+212
-49
lines changed

.tool-versions

+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
nodejs 18.14.0
12
shellcheck 0.9.0
23
shfmt 3.6.0

README.md

+42-29
Original file line numberDiff line numberDiff line change
@@ -1,56 +1,69 @@
11
<div align="center">
22

3-
# asdf-starknet-foundry [![Build](https://github.com/akhercha/asdf-starknet-foundry/actions/workflows/build.yml/badge.svg)](https://github.com/akhercha/asdf-starknet-foundry/actions/workflows/build.yml) [![Lint](https://github.com/akhercha/asdf-starknet-foundry/actions/workflows/lint.yml/badge.svg)](https://github.com/akhercha/asdf-starknet-foundry/actions/workflows/lint.yml)
3+
# asdf-starknet-foundry [![Build](https://github.com/foundry-rs/asdf-starknet-foundry/actions/workflows/build.yml/badge.svg)](https://github.com/foundry-rs/asdf-starknet-foundry/actions/workflows/build.yml) [![Lint](https://github.com/foundry-rs/asdf-starknet-foundry/actions/workflows/lint.yml/badge.svg)](https://github.com/foundry-rs/asdf-starknet-foundry/actions/workflows/lint.yml)
44

5-
[starknet-foundry](https://foundry-rs.github.io/starknet-foundry/) plugin for the [asdf version manager](https://asdf-vm.com).
5+
[Starknet Foundry] plugin for the [asdf] version manager created by [akhercha](https://github.com/akhercha).
66

77
</div>
88

9-
# Contents
9+
## Install
1010

11-
- [Dependencies](#dependencies)
12-
- [Install](#install)
13-
- [Contributing](#contributing)
14-
- [License](#license)
11+
This plugin needs `bash`, `curl`, `tar` and other generic POSIX utilities.
12+
Everything should be included by default on your system.
1513

16-
# Dependencies
14+
```shell
15+
asdf plugin add starknet-foundry
16+
```
1717

18-
**TODO: adapt this section**
18+
or
1919

20-
- `bash`, `curl`, `tar`: generic POSIX utilities.
21-
- `SOME_ENV_VAR`: set this environment variable in your shell config to load the correct version of tool x.
20+
```shell
21+
asdf plugin add starknet-foundry https://github.com/foundry-rs/asdf-starknet-foundry.git
22+
```
2223

23-
# Install
24+
## Use
2425

25-
Plugin:
26+
Show all installable versions:
2627

2728
```shell
28-
asdf plugin add starknet-foundry
29-
# or
30-
asdf plugin add starknet-foundry https://github.com/akhercha/asdf-starknet-foundry.git
29+
asdf list-all starknet-foundry
3130
```
3231

33-
starknet-foundry:
32+
Install latest version:
3433

3534
```shell
36-
# Show all installable versions
37-
asdf list-all starknet-foundry
38-
39-
# Install specific version
4035
asdf install starknet-foundry latest
36+
```
37+
38+
Install specific version:
39+
40+
```shell
41+
asdf install starknet-foundry 0.8.2
42+
```
43+
44+
Set a version globally (in your `~/.tool-versions` file):
4145

42-
# Set a version globally (on your ~/.tool-versions file)
46+
```shell
4347
asdf global starknet-foundry latest
48+
```
49+
50+
Set a version locally:
4451

45-
# Now starknet-foundry commands are available
46-
snforge --version <TOOL CHECK><TOOL CHECK> sncast --version
52+
```shell
53+
asdf local starknet-foundry latest
4754
```
4855

49-
Check [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to
50-
install & manage versions.
56+
Now snforge and sncast commands are available:
57+
58+
```shell
59+
snforge --version
60+
```
5161

52-
# Contributing
62+
```shell
63+
sncast --version
64+
```
5365

54-
Contributions of any kind welcome! See the [contributing guide](contributing.md).
66+
Check [asdf](https://github.com/asdf-vm/asdf) readme for more instructions on how to install & manage versions.
5567

56-
[Thanks goes to these contributors](https://github.com/akhercha/asdf-starknet-foundry/graphs/contributors)!
68+
[asdf]: https://asdf-vm.com
69+
[Starknet Foundry]: https://foundry-rs.github.io/starknet-foundry

contributing.md

-12
This file was deleted.

plugin_test

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
repository = https://github.com/foundry-rs/asdf-starknet-foundry.git
2+

scripts/format.bash

+17-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
11
#!/usr/bin/env bash
22

3-
shfmt --language-dialect bash --write \
4-
./**/*
3+
set -euo pipefail
4+
5+
printf "* %s\n\n" "Formatting shell scripts..."
6+
7+
# format Shell scripts in scripts/ directory.
8+
shfmt --language-dialect bash --find \
9+
./scripts/*
10+
shfmt --language-dialect bash --indent 2 --write \
11+
./scripts/*
12+
13+
printf "\n* %s\n\n" "Formatting markdown..."
14+
15+
# format Markdown files.
16+
npx -y prettier --write \
17+
./**/*.md
18+
19+
printf "\n* %s\n" "Formatting complete!"

scripts/lint.bash

+16-6
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,19 @@
11
#!/usr/bin/env bash
22

3-
shellcheck --shell=bash --external-sources \
4-
bin/* --source-path=template/lib/ \
5-
lib/* \
6-
scripts/*
3+
set -euo pipefail
74

8-
shfmt --language-dialect bash --diff \
9-
./**/*
5+
# check format Markdown files.
6+
npx -y prettier --check \
7+
./**/*.md
8+
9+
printf "* %s\n" "Linting shell scripts..."
10+
11+
# check format Shell scripts in scripts/ directory.
12+
shfmt --language-dialect bash --indent 2 --diff \
13+
./scripts/*
14+
15+
# lint for errors in Shell scripts in scripts/ directory.
16+
shellcheck --shell bash --external-sources \
17+
./scripts/*
18+
19+
printf "* %s\n" "All matched using shellcheck & shfmt!"

scripts/test_plugin.bash

+134
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,134 @@
1+
#!/usr/bin/env bash
2+
3+
# See: ./scripts/test_plugin.bash --help
4+
5+
function fail() {
6+
echo "FAIL: $*" >&2
7+
exit 1
8+
}
9+
10+
# Extract the link to a svg badge from a line of README.
11+
function badge_svg() {
12+
grep -o '(http[^)]*svg[^)]*)' | sed -e 's/(//;s/)//'
13+
}
14+
15+
function check_plugins_from_diff() {
16+
local BASE_REF="$1" # Base commit of main branch.
17+
local HEAD_REF="$2" # Latest commit of PR
18+
19+
local DIFF_CHANGES
20+
DIFF_CHANGES="$(git diff --name-only "${BASE_REF}" "${HEAD_REF}")"
21+
22+
# Assert that the PR diff only includes a change to README and file(s) under plugins/ directory
23+
{
24+
test 1 -lt "$(echo "$DIFF_CHANGES" | wc --lines | xargs)" &&
25+
echo "$DIFF_CHANGES" | grep README.md >/dev/null &&
26+
echo "$DIFF_CHANGES" | grep plugins/ >/dev/null
27+
} || fail "Expected git diff ${REF_RANGE} to only include changes for a single plugin"
28+
29+
local PLUGIN_FILES
30+
PLUGIN_FILES="$(git diff --name-only "${BASE_REF}" "${HEAD_REF}" -- plugins/)"
31+
for PLUGIN_FILE in $PLUGIN_FILES; do
32+
echo "Checking $PLUGIN_FILE"
33+
check_plugin_from_file "$PLUGIN_FILE"
34+
done
35+
}
36+
37+
function check_plugin_from_file() {
38+
local PLUGIN_FILE="$1"
39+
40+
# Assert that we have a file at plugins/PLUGIN_NAME
41+
test -f "$PLUGIN_FILE" ||
42+
fail "Expected a plugin file at $PLUGIN_FILE"
43+
44+
# Assert that PLUGIN_FILE file ends with new line.
45+
test 'X' == "$(tail --bytes=1 "$PLUGIN_FILE" | tr '\n' 'X')" ||
46+
fail "Expected $PLUGIN_FILE to end with a new line."
47+
48+
# Assert that PLUGIN_FILE has repository key and points to a git repo.
49+
local PLUGIN_REPO
50+
PLUGIN_REPO="$(sed -e 's/repository = //' "$PLUGIN_FILE")"
51+
test -n "$PLUGIN_REPO" ||
52+
fail "File $PLUGIN_FILE does not specify a repository url"
53+
54+
# Assert the plugin repo is reachable.
55+
git ls-remote --quiet "$PLUGIN_REPO" HEAD >/dev/null ||
56+
fail "Repo is unreachable: $PLUGIN_REPO"
57+
58+
local PLUGIN_REPO_NO_GIT
59+
PLUGIN_REPO_NO_GIT="$(echo "$PLUGIN_REPO" | sed -e 's/\.git$//' | tr '/' '\n' | tail --lines 1)"
60+
61+
local README_LINE
62+
README_LINE="$(git grep -h --ignore-case -C0 "${PLUGIN_REPO_NO_GIT}" -- README.md | head --lines 1)"
63+
64+
# Assert that a new line for plugin was added at README
65+
test -n "$README_LINE" ||
66+
fail "Expected a line at README.md with a link to ${PLUGIN_REPO_NO_GIT}"
67+
68+
BADGE_COLUMN="$(echo "${README_LINE}" | cut -d '|' -f4)"
69+
BADGE_URL="$(echo "${BADGE_COLUMN}" | badge_svg)"
70+
71+
# Assert that the badge has "pass" text in it, indicating the plugin is healthy
72+
curl -qsL "${BADGE_URL}" | grep -o -i 'pass' >/dev/null ||
73+
fail "Expected plugin CI badge SVG to be passing but it was not: $BADGE_URL"
74+
75+
echo "OK $PLUGIN_FILE"
76+
}
77+
78+
function check_all_plugins() {
79+
local fails=0
80+
local total=0
81+
local out
82+
for file in plugins/*; do
83+
84+
total=$((total + 1))
85+
out="$($0 --file "$file" 2>&1)"
86+
result=$?
87+
88+
if test "${result}" == 0 && test ! "${CI}"; then
89+
# show successes locally, not in CI
90+
printf "* Checking %s %s\n" "$file" "[PASSED]"
91+
elif test "${result}" != 0; then
92+
# show failures locally and in CI
93+
fails=$((fails + 1))
94+
printf "* Checking %s %s\n" "$file" "[FAILED]"
95+
printf "*\t%s\n" "$out"
96+
fi
97+
done
98+
99+
printf "\n"
100+
printf "%s %s\n" "Plugins available:" "${total}"
101+
printf "%s %s\n" "Plugin build checks passed:" "$((total - fails))"
102+
printf "%s %s\n" "Plugin build checks failed:" "${fails}"
103+
exit ${fails}
104+
}
105+
106+
if test "--all" == "$*"; then
107+
printf "%s\n" "Testing all registered plugins"
108+
check_all_plugins
109+
110+
elif test "--diff" == "$1"; then
111+
printf "%s %s..%s" "Testing plugin introduced at git diff" "$2" "$3"
112+
check_plugins_from_diff "$2" "$3"
113+
114+
elif test "--file" == "$1"; then
115+
check_plugin_from_file "$2"
116+
else
117+
cat <<-EOF
118+
Test that a plugin at PLUGIN_FILE follows basic sanity checks:
119+
* A plugins/<plugin> file contains the repository url.
120+
* A new line is added on README.md with a link mentioning the plugin.
121+
* The new plugin has CI badge and it's passing.
122+
123+
Usage:
124+
125+
> $0 --file plugins/PLUGIN_FILE
126+
Test only plugin at file.
127+
128+
> $0 --all
129+
Test all plugins registered under plugins/
130+
131+
> $0 --diff BASE_REF HEAD_REF
132+
Test a single plugin introduced in git diff BASE_REF..HEAD_REF
133+
EOF
134+
fi

version.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)