Interpolation: only quote multi-word values (#100)

- Fixes #99 
- adds `platform::existing_command`
This commit is contained in:
Denis Isidoro 2019-09-30 11:27:03 -03:00 committed by GitHub
parent 97329b97f6
commit 0c960fca54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 46 additions and 10 deletions

View file

@ -18,7 +18,13 @@ arg::interpolate() {
local -r arg="$1" local -r arg="$1"
local -r value="$2" local -r value="$2"
sed "s|<${arg}>|\"${value}\"|g" local -r words="$(echo "$value" | wc -w | xargs)"
if [[ $words > 1 ]]; then
sed "s|<${arg}>|\"${value}\"|g"
else
sed "s|<${arg}>|${value}|g"
fi
} }
arg::next() { arg::next() {

View file

@ -9,18 +9,21 @@ command_exists() {
type "$1" &> /dev/null type "$1" &> /dev/null
} }
platform::existing_command() {
for cmd in "$@"; do
if command_exists "$cmd"; then
echo "$cmd"
return 0
fi
done
return 1
}
echoerr() { echoerr() {
echo "$@" 1>&2 echo "$@" 1>&2
} }
url::open() { url::open() {
if command_exists xdg-open; then local -r cmd="$(platform::existing_command "${BROWSER:-}" xdg-open open google-chrome firefox)"
xdg-open "$@" "$cmd" "$@"
elif command_exists open; then
open "$@"
elif command_exists google-chrome; then
google-chrome "$@"
elif command_exists firefox; then
firefox "$@"
fi
} }

18
test/arg_test.sh Normal file
View file

@ -0,0 +1,18 @@
#!/usr/bin/env bash
interpolation_one_word() {
echo "curl http://mysite.com/<user>/profile" \
| arg::interpolate "user" "john" \
| test::equals "curl http://mysite.com/john/profile"
}
interpolation_multiple_words() {
echo "cp <file> <new_file>" \
| arg::interpolate "file" "C:/Program Files/app/foo.exe" \
| arg::interpolate "new_file" "/mnt/c/Users/john/foo.exe" \
| test::equals 'cp "C:/Program Files/app/foo.exe" /mnt/c/Users/john/foo.exe'
}
test::set_suite "arg"
test::run "if there's only one word, interpolation doesn't include quotes" interpolation_one_word
test::run "if there are multiple words, interpolation includes quotes" interpolation_multiple_words

9
test/platform_test.sh Normal file
View file

@ -0,0 +1,9 @@
#!/usr/bin/env bash
existing() {
platform::existing_command oasida fngo ni awk aoisdn oafm \
| test::equals awk
}
test::set_suite "platform"
test::run "existing_command" existing