Compare commits

..

13 Commits
mocks ... 0.4.1

Author SHA1 Message Date
3wc
73e5e64b9a Bump version
All checks were successful
continuous-integration/drone/push Build is passing
2020-12-27 21:45:37 +02:00
3f9b4477cd Swap args around
All checks were successful
continuous-integration/drone/push Build is passing
2020-12-27 13:11:22 +01:00
3wc
412729aac9 Fix calling logs with no arguments
Some checks failed
continuous-integration/drone/push Build is failing
Closes #31
2020-12-27 12:23:16 +02:00
3wc
8022a2cb41 Add cheeky network command
Some checks failed
continuous-integration/drone/push Build is failing
2020-12-27 12:07:10 +02:00
3wc
35182ed260 Get both .. volume .. and custom commands working 2020-12-27 12:07:10 +02:00
3wc
d90c6ef361 Add --no-tty option to app run 2020-12-27 12:07:10 +02:00
3wc
40ca8dfe93 Add --server filter to app list..
.. and add `server <host> apps` as an alias.
2020-12-27 12:07:10 +02:00
3wc
7f009f927b Fix app ls --status
Closes #35
2020-12-27 12:06:39 +02:00
3wc
e222f4152b Pin kcov version
All checks were successful
continuous-integration/drone/push Build is passing
2020-12-24 01:07:01 +02:00
3wc
893150cdd9 Pin shellcheck version
All checks were successful
continuous-integration/drone/push Build is passing
2020-12-24 00:55:57 +02:00
3wc
61126f16e1 Update installer
Some checks failed
continuous-integration/drone/push Build is failing
2020-12-24 00:50:50 +02:00
3wc
63c982c550 Fix custom commands loading
Some checks failed
continuous-integration/drone/push Build is failing
2020-12-17 13:38:30 +02:00
3wc
0d202eedfc Reënable custom per-stack commands
Some checks failed
continuous-integration/drone/push Build is failing
2020-12-14 12:33:22 +02:00
7 changed files with 147 additions and 123 deletions

View File

@ -3,7 +3,7 @@ kind: pipeline
name: linters name: linters
steps: steps:
- name: run shellcheck - name: run shellcheck
image: koalaman/shellcheck-alpine:latest image: koalaman/shellcheck-alpine:v0.7.1
commands: commands:
- shellcheck abra - shellcheck abra
@ -15,9 +15,9 @@ steps:
- name: collect code coverage - name: collect code coverage
failure: ignore # until we fix this failure: ignore # until we fix this
image: kcov/kcov:latest image: kcov/kcov:38
commands: commands:
- apk add bats git bash - apt update && apt install -y bats git bash
- kcov . bats tests || true - kcov . bats tests || true
- name: send code coverage report to codecov - name: send code coverage report to codecov

3
.gitmodules vendored
View File

@ -1,3 +0,0 @@
[submodule "tests/helpers/mocks"]
path = tests/helpers/mocks
url = https://github.com/Flamefire/bats-mock.git

View File

@ -5,9 +5,8 @@ test:
-it \ -it \
--rm \ --rm \
-v $$(pwd):/workdir \ -v $$(pwd):/workdir \
--privileged \
docker:dind \ docker:dind \
sh -c "apk add bats git bash && cd /workdir && bats tests" sh -c "apk add bats git bash && cd /workdir && bats /workdir/test.bats"
shellcheck: shellcheck:
@docker run \ @docker run \
@ -26,15 +25,12 @@ docopt:
.venv/bin/docopt.sh abra .venv/bin/docopt.sh abra
kcov: kcov:
@DOCKER_CONTEXT=default docker run \ @docker run \
-it \ -it \
--rm \ --rm \
-v $$(pwd):/workdir \ -v $$(pwd):/workdir \
koinotice/dind-kcov-bats \ kcov/kcov:latest \
bash -c "kcov coverage bats tests || true" sh -c "kcov /workdir/coverage /workdir/abra || true"
install:
install abra /usr/bin/abra
codecov: SHELL:=/bin/bash codecov: SHELL:=/bin/bash
codecov: codecov:

215
abra
View File

@ -12,7 +12,7 @@ The cooperative cloud utility belt 🎩🐇
Usage: Usage:
abra [options] app new [--server=<server>] [--domain=<domain>] [--pass] [--auto] <app> abra [options] app new [--server=<server>] [--domain=<domain>] [--pass] [--auto] <app>
abra [options] app (list|ls) [--status] abra [options] app (list|ls) [--status] [--server=<server>]
abra [options] app <domain> deploy abra [options] app <domain> deploy
abra [options] app <domain> undeploy abra [options] app <domain> undeploy
abra [options] app <domain> config abra [options] app <domain> config
@ -22,17 +22,19 @@ Usage:
abra [options] app <domain> cp <src> <dst> abra [options] app <domain> cp <src> <dst>
abra [options] app <domain> check abra [options] app <domain> check
abra [options] app <domain> ps abra [options] app <domain> ps
abra [options] app <domain> run [--user=<user>] <service> <args>... abra [options] app <domain> run [--no-tty] [--user=<user>] <service> <args>...
abra [options] app <domain> run <service> <args>... abra [options] app <domain> run <service> <args>...
abra [options] app <domain> secret auto [--pass] abra [options] app <domain> secret auto [--pass]
abra [options] app <domain> secret generate <secret> <version> [<cmd>] [--pass] abra [options] app <domain> secret generate <secret> <version> [<cmd>] [--pass]
abra [options] app <domain> secret insert <secret> <version> <data> [--pass] abra [options] app <domain> secret insert <secret> <version> <data> [--pass]
abra [options] app <domain> secret (delete|rm) (<secret>|--all) [--pass] [--force] abra [options] app <domain> secret (delete|rm) (<secret>|--all) [--pass] [--force]
abra [options] app <domain> <command> [<args>...]
abra [options] server add <host> [<user>] [<port>] abra [options] server add <host> [<user>] [<port>]
abra [options] server (list|ls) abra [options] server (list|ls)
abra [options] server rm <host> abra [options] server <host> rm
abra [options] server use <host> abra [options] server <host> use
abra [options] server init <host> abra [options] server <host> init
abra [options] server <host> apps [--status]
abra [options] upgrade abra [options] upgrade
Options: Options:
@ -143,75 +145,80 @@ eval "var_$1+=($value)"; else eval "var_$1=$value"; fi; return 0; fi; done
return 1; }; stdout() { printf -- "cat <<'EOM'\n%s\nEOM\n" "$1"; }; stderr() { return 1; }; stdout() { printf -- "cat <<'EOM'\n%s\nEOM\n" "$1"; }; stderr() {
printf -- "cat <<'EOM' >&2\n%s\nEOM\n" "$1"; }; error() { printf -- "cat <<'EOM' >&2\n%s\nEOM\n" "$1"; }; error() {
[[ -n $1 ]] && stderr "$1"; stderr "$usage"; _return 1; }; _return() { [[ -n $1 ]] && stderr "$1"; stderr "$usage"; _return 1; }; _return() {
printf -- "exit %d\n" "$1"; exit "$1"; }; set -e; trimmed_doc=${DOC:1:1449} printf -- "exit %d\n" "$1"; exit "$1"; }; set -e; trimmed_doc=${DOC:1:1579}
usage=${DOC:40:1141}; digest=2bcee; shorts=(-s -h -e -v '' '' '' '' '' '' '' '') usage=${DOC:40:1271}; digest=974cf
longs=(--stack --help --env --version --server --domain --pass --auto --status --force --user --all) shorts=(-h -e -s -v '' '' '' '' '' '' '' '' '')
argcounts=(1 0 1 0 1 1 0 0 0 0 1 0); node_0(){ value __stack 0; }; node_1(){ longs=(--help --env --stack --version --server --domain --pass --auto --status --force --no-tty --user --all)
switch __help 1; }; node_2(){ value __env 2; }; node_3(){ switch __version 3; } argcounts=(0 1 1 0 1 1 0 0 0 0 0 1 0); node_0(){ switch __help 0; }; node_1(){
value __env 1; }; node_2(){ value __stack 2; }; node_3(){ switch __version 3; }
node_4(){ value __server 4; }; node_5(){ value __domain 5; }; node_6(){ node_4(){ value __server 4; }; node_5(){ value __domain 5; }; node_6(){
switch __pass 6; }; node_7(){ switch __auto 7; }; node_8(){ switch __status 8; } switch __pass 6; }; node_7(){ switch __auto 7; }; node_8(){ switch __status 8; }
node_9(){ switch __force 9; }; node_10(){ value __user 10; }; node_11(){ node_9(){ switch __force 9; }; node_10(){ switch __no_tty 10; }; node_11(){
switch __all 11; }; node_12(){ value _app_ a; }; node_13(){ value _domain_ a; } value __user 11; }; node_12(){ switch __all 12; }; node_13(){ value _app_ a; }
node_14(){ value _service_ a; }; node_15(){ value _src_ a; }; node_16(){ node_14(){ value _domain_ a; }; node_15(){ value _service_ a; }; node_16(){
value _dst_ a; }; node_17(){ value _args_ a true; }; node_18(){ value _secret_ a value _src_ a; }; node_17(){ value _dst_ a; }; node_18(){ value _args_ a true; }
}; node_19(){ value _version_ a; }; node_20(){ value _cmd_ a; }; node_21(){ node_19(){ value _secret_ a; }; node_20(){ value _version_ a; }; node_21(){
value _data_ a; }; node_22(){ value _host_ a; }; node_23(){ value _user_ a; } value _cmd_ a; }; node_22(){ value _data_ a; }; node_23(){ value _command_ a; }
node_24(){ value _port_ a; }; node_25(){ _command app; }; node_26(){ node_24(){ value _host_ a; }; node_25(){ value _user_ a; }; node_26(){
_command new; }; node_27(){ _command list; }; node_28(){ _command ls; } value _port_ a; }; node_27(){ _command app; }; node_28(){ _command new; }
node_29(){ _command deploy; }; node_30(){ _command undeploy; }; node_31(){ node_29(){ _command list; }; node_30(){ _command ls; }; node_31(){
_command config; }; node_32(){ _command delete; }; node_33(){ _command rm; } _command deploy; }; node_32(){ _command undeploy; }; node_33(){ _command config
node_34(){ _command logs; }; node_35(){ _command multilogs; }; node_36(){ }; node_34(){ _command delete; }; node_35(){ _command rm; }; node_36(){
_command cp; }; node_37(){ _command check; }; node_38(){ _command ps; } _command logs; }; node_37(){ _command multilogs; }; node_38(){ _command cp; }
node_39(){ _command run; }; node_40(){ _command secret; }; node_41(){ node_39(){ _command check; }; node_40(){ _command ps; }; node_41(){ _command run
_command auto; }; node_42(){ _command generate; }; node_43(){ _command insert; } }; node_42(){ _command secret; }; node_43(){ _command auto; }; node_44(){
node_44(){ _command server; }; node_45(){ _command add; }; node_46(){ _command generate; }; node_45(){ _command insert; }; node_46(){ _command server
_command use; }; node_47(){ _command init; }; node_48(){ _command upgrade; } }; node_47(){ _command add; }; node_48(){ _command use; }; node_49(){
node_49(){ optional 0 1 2 3; }; node_50(){ optional 49; }; node_51(){ optional 4 _command init; }; node_50(){ _command apps; }; node_51(){ _command upgrade; }
}; node_52(){ optional 5; }; node_53(){ optional 6; }; node_54(){ optional 7; } node_52(){ optional 0 1 2 3; }; node_53(){ optional 52; }; node_54(){ optional 4
node_55(){ required 50 25 26 51 52 53 54 12; }; node_56(){ either 27 28; } }; node_55(){ optional 5; }; node_56(){ optional 6; }; node_57(){ optional 7; }
node_57(){ required 56; }; node_58(){ optional 8; }; node_59(){ node_58(){ required 53 27 28 54 55 56 57 13; }; node_59(){ either 29 30; }
required 50 25 57 58; }; node_60(){ required 50 25 13 29; }; node_61(){ node_60(){ required 59; }; node_61(){ optional 8; }; node_62(){
required 50 25 13 30; }; node_62(){ required 50 25 13 31; }; node_63(){ required 53 27 60 61 54; }; node_63(){ required 53 27 14 31; }; node_64(){
either 32 33; }; node_64(){ required 63; }; node_65(){ optional 9; }; node_66(){ required 53 27 14 32; }; node_65(){ required 53 27 14 33; }; node_66(){
required 50 25 13 64 65; }; node_67(){ optional 14; }; node_68(){ either 34 35; }; node_67(){ required 66; }; node_68(){ optional 9; }; node_69(){
required 50 25 13 34 67; }; node_69(){ required 50 25 13 35; }; node_70(){ required 53 27 14 67 68; }; node_70(){ optional 15; }; node_71(){
required 50 25 13 36 15 16; }; node_71(){ required 50 25 13 37; }; node_72(){ required 53 27 14 36 70; }; node_72(){ required 53 27 14 37; }; node_73(){
required 50 25 13 38; }; node_73(){ optional 10; }; node_74(){ oneormore 17; } required 53 27 14 38 16 17; }; node_74(){ required 53 27 14 39; }; node_75(){
node_75(){ required 50 25 13 39 73 14 74; }; node_76(){ required 53 27 14 40; }; node_76(){ optional 10; }; node_77(){ optional 11; }
required 50 25 13 39 14 74; }; node_77(){ required 50 25 13 40 41 53; } node_78(){ oneormore 18; }; node_79(){ required 53 27 14 41 76 77 15 78; }
node_78(){ optional 20; }; node_79(){ required 50 25 13 40 42 18 19 78 53; } node_80(){ required 53 27 14 41 15 78; }; node_81(){ required 53 27 14 42 43 56
node_80(){ required 50 25 13 40 43 18 19 21 53; }; node_81(){ either 18 11; } }; node_82(){ optional 21; }; node_83(){ required 53 27 14 42 44 19 20 82 56; }
node_82(){ required 81; }; node_83(){ required 50 25 13 40 64 82 53 65; } node_84(){ required 53 27 14 42 45 19 20 22 56; }; node_85(){ either 19 12; }
node_84(){ optional 23; }; node_85(){ optional 24; }; node_86(){ node_86(){ required 85; }; node_87(){ required 53 27 14 42 67 86 56 68; }
required 50 44 45 22 84 85; }; node_87(){ required 50 44 57; }; node_88(){ node_88(){ optional 78; }; node_89(){ required 53 27 14 23 88; }; node_90(){
required 50 44 33 22; }; node_89(){ required 50 44 46 22; }; node_90(){ optional 25; }; node_91(){ optional 26; }; node_92(){ required 53 46 47 24 90 91
required 50 44 47 22; }; node_91(){ required 50 48; }; node_92(){ }; node_93(){ required 53 46 60; }; node_94(){ required 53 46 24 35; }
either 55 59 60 61 62 66 68 69 70 71 72 75 76 77 79 80 83 86 87 88 89 90 91; } node_95(){ required 53 46 24 48; }; node_96(){ required 53 46 24 49; }
node_93(){ required 92; }; cat <<<' docopt_exit() { node_97(){ required 53 46 24 50 61; }; node_98(){ required 53 51; }; node_99(){
[[ -n $1 ]] && printf "%s\n" "$1" >&2; printf "%s\n" "${DOC:40:1141}" >&2 either 58 62 63 64 65 69 71 72 73 74 75 79 80 81 83 84 87 89 92 93 94 95 96 97 98
exit 1; }'; unset var___stack var___help var___env var___version var___server \ }; node_100(){ required 99; }; cat <<<' docopt_exit() {
var___domain var___pass var___auto var___status var___force var___user \ [[ -n $1 ]] && printf "%s\n" "$1" >&2; printf "%s\n" "${DOC:40:1271}" >&2
var___all var__app_ var__domain_ var__service_ var__src_ var__dst_ var__args_ \ exit 1; }'; unset var___help var___env var___stack var___version var___server \
var__secret_ var__version_ var__cmd_ var__data_ var__host_ var__user_ \ var___domain var___pass var___auto var___status var___force var___no_tty \
var__port_ var_app var_new var_list var_ls var_deploy var_undeploy var_config \ var___user var___all var__app_ var__domain_ var__service_ var__src_ var__dst_ \
var_delete var_rm var_logs var_multilogs var_cp var_check var_ps var_run \ var__args_ var__secret_ var__version_ var__cmd_ var__data_ var__command_ \
var_secret var_auto var_generate var_insert var_server var_add var_use \ var__host_ var__user_ var__port_ var_app var_new var_list var_ls var_deploy \
var_init var_upgrade; parse 93 "$@"; local prefix=${DOCOPT_PREFIX:-''} var_undeploy var_config var_delete var_rm var_logs var_multilogs var_cp \
unset "${prefix}__stack" "${prefix}__help" "${prefix}__env" \ var_check var_ps var_run var_secret var_auto var_generate var_insert \
"${prefix}__version" "${prefix}__server" "${prefix}__domain" "${prefix}__pass" \ var_server var_add var_use var_init var_apps var_upgrade; parse 100 "$@"
"${prefix}__auto" "${prefix}__status" "${prefix}__force" "${prefix}__user" \ local prefix=${DOCOPT_PREFIX:-''}; unset "${prefix}__help" "${prefix}__env" \
"${prefix}__all" "${prefix}_app_" "${prefix}_domain_" "${prefix}_service_" \ "${prefix}__stack" "${prefix}__version" "${prefix}__server" \
"${prefix}_src_" "${prefix}_dst_" "${prefix}_args_" "${prefix}_secret_" \ "${prefix}__domain" "${prefix}__pass" "${prefix}__auto" "${prefix}__status" \
"${prefix}_version_" "${prefix}_cmd_" "${prefix}_data_" "${prefix}_host_" \ "${prefix}__force" "${prefix}__no_tty" "${prefix}__user" "${prefix}__all" \
"${prefix}_app_" "${prefix}_domain_" "${prefix}_service_" "${prefix}_src_" \
"${prefix}_dst_" "${prefix}_args_" "${prefix}_secret_" "${prefix}_version_" \
"${prefix}_cmd_" "${prefix}_data_" "${prefix}_command_" "${prefix}_host_" \
"${prefix}_user_" "${prefix}_port_" "${prefix}app" "${prefix}new" \ "${prefix}_user_" "${prefix}_port_" "${prefix}app" "${prefix}new" \
"${prefix}list" "${prefix}ls" "${prefix}deploy" "${prefix}undeploy" \ "${prefix}list" "${prefix}ls" "${prefix}deploy" "${prefix}undeploy" \
"${prefix}config" "${prefix}delete" "${prefix}rm" "${prefix}logs" \ "${prefix}config" "${prefix}delete" "${prefix}rm" "${prefix}logs" \
"${prefix}multilogs" "${prefix}cp" "${prefix}check" "${prefix}ps" \ "${prefix}multilogs" "${prefix}cp" "${prefix}check" "${prefix}ps" \
"${prefix}run" "${prefix}secret" "${prefix}auto" "${prefix}generate" \ "${prefix}run" "${prefix}secret" "${prefix}auto" "${prefix}generate" \
"${prefix}insert" "${prefix}server" "${prefix}add" "${prefix}use" \ "${prefix}insert" "${prefix}server" "${prefix}add" "${prefix}use" \
"${prefix}init" "${prefix}upgrade"; eval "${prefix}"'__stack=${var___stack:-}' "${prefix}init" "${prefix}apps" "${prefix}upgrade"
eval "${prefix}"'__help=${var___help:-false}' eval "${prefix}"'__help=${var___help:-false}'
eval "${prefix}"'__env=${var___env:-}' eval "${prefix}"'__env=${var___env:-}'
eval "${prefix}"'__stack=${var___stack:-}'
eval "${prefix}"'__version=${var___version:-false}' eval "${prefix}"'__version=${var___version:-false}'
eval "${prefix}"'__server=${var___server:-}' eval "${prefix}"'__server=${var___server:-}'
eval "${prefix}"'__domain=${var___domain:-}' eval "${prefix}"'__domain=${var___domain:-}'
@ -219,6 +226,7 @@ eval "${prefix}"'__pass=${var___pass:-false}'
eval "${prefix}"'__auto=${var___auto:-false}' eval "${prefix}"'__auto=${var___auto:-false}'
eval "${prefix}"'__status=${var___status:-false}' eval "${prefix}"'__status=${var___status:-false}'
eval "${prefix}"'__force=${var___force:-false}' eval "${prefix}"'__force=${var___force:-false}'
eval "${prefix}"'__no_tty=${var___no_tty:-false}'
eval "${prefix}"'__user=${var___user:-}' eval "${prefix}"'__user=${var___user:-}'
eval "${prefix}"'__all=${var___all:-false}' eval "${prefix}"'__all=${var___all:-false}'
eval "${prefix}"'_app_=${var__app_:-}' eval "${prefix}"'_app_=${var__app_:-}'
@ -230,6 +238,7 @@ eval "${prefix}"'_args_=("${var__args_[@]}")'; else eval "${prefix}"'_args_=()'
fi; eval "${prefix}"'_secret_=${var__secret_:-}' fi; eval "${prefix}"'_secret_=${var__secret_:-}'
eval "${prefix}"'_version_=${var__version_:-}' eval "${prefix}"'_version_=${var__version_:-}'
eval "${prefix}"'_cmd_=${var__cmd_:-}'; eval "${prefix}"'_data_=${var__data_:-}' eval "${prefix}"'_cmd_=${var__cmd_:-}'; eval "${prefix}"'_data_=${var__data_:-}'
eval "${prefix}"'_command_=${var__command_:-}'
eval "${prefix}"'_host_=${var__host_:-}' eval "${prefix}"'_host_=${var__host_:-}'
eval "${prefix}"'_user_=${var__user_:-}' eval "${prefix}"'_user_=${var__user_:-}'
eval "${prefix}"'_port_=${var__port_:-}' eval "${prefix}"'_port_=${var__port_:-}'
@ -251,21 +260,22 @@ eval "${prefix}"'insert=${var_insert:-false}'
eval "${prefix}"'server=${var_server:-false}' eval "${prefix}"'server=${var_server:-false}'
eval "${prefix}"'add=${var_add:-false}'; eval "${prefix}"'use=${var_use:-false}' eval "${prefix}"'add=${var_add:-false}'; eval "${prefix}"'use=${var_use:-false}'
eval "${prefix}"'init=${var_init:-false}' eval "${prefix}"'init=${var_init:-false}'
eval "${prefix}"'apps=${var_apps:-false}'
eval "${prefix}"'upgrade=${var_upgrade:-false}'; local docopt_i=1 eval "${prefix}"'upgrade=${var_upgrade:-false}'; local docopt_i=1
[[ $BASH_VERSION =~ ^4.3 ]] && docopt_i=2; for ((;docopt_i>0;docopt_i--)); do [[ $BASH_VERSION =~ ^4.3 ]] && docopt_i=2; for ((;docopt_i>0;docopt_i--)); do
declare -p "${prefix}__stack" "${prefix}__help" "${prefix}__env" \ declare -p "${prefix}__help" "${prefix}__env" "${prefix}__stack" \
"${prefix}__version" "${prefix}__server" "${prefix}__domain" "${prefix}__pass" \ "${prefix}__version" "${prefix}__server" "${prefix}__domain" "${prefix}__pass" \
"${prefix}__auto" "${prefix}__status" "${prefix}__force" "${prefix}__user" \ "${prefix}__auto" "${prefix}__status" "${prefix}__force" "${prefix}__no_tty" \
"${prefix}__all" "${prefix}_app_" "${prefix}_domain_" "${prefix}_service_" \ "${prefix}__user" "${prefix}__all" "${prefix}_app_" "${prefix}_domain_" \
"${prefix}_src_" "${prefix}_dst_" "${prefix}_args_" "${prefix}_secret_" \ "${prefix}_service_" "${prefix}_src_" "${prefix}_dst_" "${prefix}_args_" \
"${prefix}_version_" "${prefix}_cmd_" "${prefix}_data_" "${prefix}_host_" \ "${prefix}_secret_" "${prefix}_version_" "${prefix}_cmd_" "${prefix}_data_" \
"${prefix}_user_" "${prefix}_port_" "${prefix}app" "${prefix}new" \ "${prefix}_command_" "${prefix}_host_" "${prefix}_user_" "${prefix}_port_" \
"${prefix}list" "${prefix}ls" "${prefix}deploy" "${prefix}undeploy" \ "${prefix}app" "${prefix}new" "${prefix}list" "${prefix}ls" "${prefix}deploy" \
"${prefix}config" "${prefix}delete" "${prefix}rm" "${prefix}logs" \ "${prefix}undeploy" "${prefix}config" "${prefix}delete" "${prefix}rm" \
"${prefix}multilogs" "${prefix}cp" "${prefix}check" "${prefix}ps" \ "${prefix}logs" "${prefix}multilogs" "${prefix}cp" "${prefix}check" \
"${prefix}run" "${prefix}secret" "${prefix}auto" "${prefix}generate" \ "${prefix}ps" "${prefix}run" "${prefix}secret" "${prefix}auto" \
"${prefix}insert" "${prefix}server" "${prefix}add" "${prefix}use" \ "${prefix}generate" "${prefix}insert" "${prefix}server" "${prefix}add" \
"${prefix}init" "${prefix}upgrade"; done; } "${prefix}use" "${prefix}init" "${prefix}apps" "${prefix}upgrade"; done; }
# docopt parser above, complete command for generating this parser is `docopt.sh abra` # docopt parser above, complete command for generating this parser is `docopt.sh abra`
PROGRAM_NAME=$(basename "$0") PROGRAM_NAME=$(basename "$0")
@ -338,6 +348,13 @@ load_custom_commands() {
source abra-commands.sh source abra-commands.sh
fi fi
if [ -n "$abra__domain_" ]; then
load_instance
load_instance_env
require_app_clone "$APP"
fi
if [ -f "$APP_DIR/abra-commands.sh" ]; then if [ -f "$APP_DIR/abra-commands.sh" ]; then
# shellcheck disable=SC1090,SC1091 # shellcheck disable=SC1090,SC1091
source "$APP_DIR/abra-commands.sh" source "$APP_DIR/abra-commands.sh"
@ -446,19 +463,28 @@ sub_app_ls (){
} }
sub_app_list (){ sub_app_list (){
SERVER="$abra___server"
if [ -z "$SERVER" ]; then
SERVER='*'
fi
shopt -s nullglob dotglob shopt -s nullglob dotglob
# shellcheck disable=SC2206 # shellcheck disable=SC2206
ENV_FILES=($ABRA_DIR/servers/*/*.env) ENV_FILES=($ABRA_DIR/servers/$SERVER/*.env)
shopt -u nullglob dotglob shopt -u nullglob dotglob
STATUS="$( [[ $abra___status == "true" ]] && echo "Y" )" STATUS="$( [[ $abra___status == "true" ]] && echo "Y" )"
if [ -n "$STATUS" ]; then if [ -n "$STATUS" ]; then
get_servers if [ -z "$SERVER" ]; then
get_servers
else
SERVERS=( "$SERVER" )
fi
local -a DEPLOYED_APPS # array local -a DEPLOYED_APPS # array
warning "Loading status from ${#SERVERS[@]} servers, patience advised.." warning "Loading status from ${#SERVERS[@]} server(s), patience advised.."
for SERVER in "${SERVERS[@]}"; do for SERVER in "${SERVERS[@]}"; do
SERVER="${SERVER##*/}" # basename SERVER="${SERVER##*/}" # basename
@ -468,8 +494,6 @@ sub_app_list (){
done done
fi fi
printf '%s\n' "${DEPLOYED_APPS[@]}"
printf "%s lovely apps:\n\n" "${#ENV_FILES[@]}" printf "%s lovely apps:\n\n" "${#ENV_FILES[@]}"
for i in "${!ENV_FILES[@]}"; do for i in "${!ENV_FILES[@]}"; do
@ -490,7 +514,7 @@ sub_app_list (){
APP="$(source "$ENV_FILE" && echo "$APP")" APP="$(source "$ENV_FILE" && echo "$APP")"
# shellcheck disable=SC1090 # shellcheck disable=SC1090
APP_STACK_NAME="$(source "$ENV_FILE" && echo "$STACK_NAME")" APP_STACK_NAME="$(source "$ENV_FILE" && echo "$STACK_NAME")"
if [ -z "$STACK_NAME" ]; then if [ -z "$APP_STACK_NAME" ]; then
APP_STACK_NAME="${DOMAIN//./_}" APP_STACK_NAME="${DOMAIN//./_}"
fi fi
if [ -n "$STATUS" ]; then if [ -n "$STATUS" ]; then
@ -778,6 +802,12 @@ sub_app_run(){
RUN_USER="-u $abra___user" RUN_USER="-u $abra___user"
fi fi
if [ "$abra___no_tty" = "true" ]; then
ARGS="-i"
else
ARGS="-it"
fi
CONTAINER=$(docker container ls --format "table {{.ID}},{{.Names}}" \ CONTAINER=$(docker container ls --format "table {{.ID}},{{.Names}}" \
| grep "${STACK_NAME}_${abra__service_}" | head -n1 | cut -d',' -f1) | grep "${STACK_NAME}_${abra__service_}" | head -n1 | cut -d',' -f1)
@ -789,7 +819,7 @@ sub_app_run(){
# 3wc: we want the "splitting" that shellcheck warns us about, so that -u and # 3wc: we want the "splitting" that shellcheck warns us about, so that -u and
# $RUN_USER aren't treated as a single argument: # $RUN_USER aren't treated as a single argument:
# shellcheck disable=SC2086 # shellcheck disable=SC2086
docker exec $RUN_USER -it "$CONTAINER" "$@" docker exec $RUN_USER $ARGS "$CONTAINER" "$@"
return return
} }
@ -825,6 +855,7 @@ sub_app_logs (){
if [ -z "$SERVICE" ]; then if [ -z "$SERVICE" ]; then
warning "No \$SERVICE provided, running multilogs" warning "No \$SERVICE provided, running multilogs"
sub_app_multilogs sub_app_multilogs
return
fi fi
shift shift
@ -943,6 +974,12 @@ sub_server_use() {
docker context use "$abra__host_" docker context use "$abra__host_"
} }
###### .. server <host> apps
sub_server_apps() {
abra___server="$abra__host_"
sub_app_list
}
####################################### #######################################
# Misc commands # Misc commands
####################################### #######################################
@ -952,18 +989,24 @@ sub_upgrade() {
curl https://install.abra.autonomic.zone | bash curl https://install.abra.autonomic.zone | bash
} }
###### .. volume <args>... ###### .. stack <args>...
sub_stack() { sub_stack() {
# shellcheck disable=SC2068 # shellcheck disable=SC2068
docker stack $@ docker stack $@
} }
###### .. stack <args>... ###### .. volume <args>...
sub_volume() { sub_volume() {
# shellcheck disable=SC2068 # shellcheck disable=SC2068
docker volume $@ docker volume $@
} }
###### .. network <args>...
sub_network() {
# shellcheck disable=SC2068
docker network $@
}
####################################### #######################################
# Main # Main
####################################### #######################################
@ -975,7 +1018,7 @@ abra() {
abra__secret_ abra__version_ abra__data_ abra___user abra__host_ \ abra__secret_ abra__version_ abra__data_ abra___user abra__host_ \
abra__app_ abra__port_ abra__user_ abra__service_ abra__src_ abra__dst_ \ abra__app_ abra__port_ abra__user_ abra__service_ abra__src_ abra__dst_ \
abra__domain_ abra___server abra___domain abra___force abra___pass \ abra__domain_ abra___server abra___domain abra___force abra___pass \
abra___auto abra___status abra___auto abra___status abra___no_tty
if ! type tput > /dev/null 2>&1; then if ! type tput > /dev/null 2>&1; then
tput() { tput() {

View File

@ -1,6 +1,6 @@
#!/bin/bash #!/bin/bash
ABRA_VERSION="0.3.1" ABRA_VERSION="0.4.1"
ABRA_SRC="https://git.autonomic.zone/coop-cloud/abra/raw/tag/$ABRA_VERSION/abra" ABRA_SRC="https://git.autonomic.zone/coop-cloud/abra/raw/tag/$ABRA_VERSION/abra"
function install_abra { function install_abra {

View File

@ -1,48 +1,37 @@
#!/usr/bin/env bats #!/usr/bin/env bats
load test_helper
setup() { setup() {
export ABRA_DIR=$(mktemp -d) mkdir -p ~/.abra/servers/default
export DOCKER_STUB_DEBUG=foo
mkdir -p $ABRA_DIR/servers/default
stub docker \
"context create * --docker * : touch $ABRA_DIR/context" \
'context ls : echo "swarm.test.com"' \
"context rm * : rm $ABRA_DIR/context" \
"context create * --docker * : touch $ABRA_DIR/context" \
"context rm * : rm $ABRA_DIR/context"
} }
teardown() { teardown() {
#unstub docker rm -rf ~/.abra/servers/default
#rm -rf "$ABRA_DIR" rm -rf ~/.abra/servers/swarm.test.com
echo "foo"
} }
@test "abra server add/rm works" { @test "abra server add/rm works" {
./abra server add swarm.test.com ./abra server add swarm.test.com
docker context ls | grep swarm.test.com docker context ls | grep swarm.test.com
[ -d $ABRA_DIR/servers/swarm.test.com ] [ -d ~/.abra/servers/swarm.test.com ]
./abra server rm swarm.test.com ./abra server swarm.test.com rm
./abra server add swarm.test.com foobar 12345 ./abra server add swarm.test.com foobar 12345
[ -d $ABRA_DIR/servers/swarm.test.com ] [ -d ~/.abra/servers/swarm.test.com ]
./abra server rm swarm.test.com ./abra server swarm.test.com rm
} }
@test "abra app new/rm works" { @test "abra app new/rm works" {
./abra app new --server default --domain traefik.test.com traefik ./abra app new --server default --domain traefik.test.com traefik
[ -f $ABRA_DIR/servers/default/traefik.test.com.env ] [ -f ~/.abra/servers/default/traefik.test.com.env ]
# interactive prompt # interactive prompt
echo "y" | ./abra app traefik.test.com delete echo "y" | ./abra app traefik.test.com delete
[ ! -f $ABRA_DIR/servers/default/traefik.test.com.env ] [ ! -f ~/.abra/servers/default/traefik.test.com.env ]
# --force # --force
./abra app new --server default --domain traefik.test.com traefik ./abra app new --server default --domain traefik.test.com traefik
./abra app traefik.test.com delete --force ./abra app traefik.test.com delete --force
[ ! -f $ABRA_DIR/servers/default/traefik.test.com.env ] [ ! -f ~/.abra/servers/default/traefik.test.com.env ]
} }
@test "abra app <domain> secret (insert|generate|rm)" { @test "abra app <domain> secret (insert|generate|rm)" {

View File

@ -1 +0,0 @@
load helpers/mocks/src/stub