63 lines
1.2 KiB
Bash
63 lines
1.2 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
setup_file(){
|
|
load "$PWD/tests/integration/helpers/common"
|
|
_common_setup
|
|
_add_server
|
|
_new_app
|
|
}
|
|
|
|
teardown_file(){
|
|
_rm_app
|
|
_rm_server
|
|
}
|
|
|
|
setup(){
|
|
load "$PWD/tests/integration/helpers/common"
|
|
_common_setup
|
|
}
|
|
|
|
teardown(){
|
|
_undeploy_app
|
|
}
|
|
|
|
@test "validate app argument" {
|
|
run $ABRA app ps
|
|
assert_failure
|
|
assert_output --partial 'no app provided'
|
|
|
|
run $ABRA app ps DOESNTEXIST
|
|
assert_failure
|
|
assert_output --partial 'cannot find app'
|
|
}
|
|
|
|
@test "error if not deployed" {
|
|
run $ABRA app ps "$TEST_APP_DOMAIN"
|
|
assert_failure
|
|
assert_output --partial 'is not deployed'
|
|
}
|
|
|
|
# bats test_tags=slow
|
|
@test "show ps report" {
|
|
_deploy_app
|
|
|
|
latestRelease=$(git -C "$ABRA_DIR/recipes/$TEST_RECIPE" tag -l | tail -n 1)
|
|
|
|
run $ABRA app ps "$TEST_APP_DOMAIN"
|
|
assert_success
|
|
assert_output --partial 'app'
|
|
assert_output --partial 'healthy'
|
|
assert_output --partial "$latestRelease"
|
|
assert_output --partial 'false' # not a chaos deploy
|
|
}
|
|
|
|
# bats test_tags=slow
|
|
@test "show ps report with chaos deploy" {
|
|
run $ABRA app deploy "$TEST_APP_DOMAIN" \
|
|
--no-input --no-converge-checks --chaos
|
|
assert_success
|
|
|
|
assert_output --partial "$latestRelease"
|
|
assert_output --partial 'true' # is a chaos deploy
|
|
}
|