chore: make all the service names used in the service_unlink tests the same
This commit is contained in:
@@ -3,11 +3,11 @@ load test_helper
|
||||
|
||||
setup() {
|
||||
dokku apps:create my-app
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:create" l
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:create" ls
|
||||
}
|
||||
|
||||
teardown() {
|
||||
dokku --force "$PLUGIN_COMMAND_PREFIX:destroy" l
|
||||
dokku --force "$PLUGIN_COMMAND_PREFIX:destroy" ls
|
||||
dokku --force apps:destroy my-app
|
||||
}
|
||||
|
||||
@@ -17,12 +17,12 @@ teardown() {
|
||||
}
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:unlink) error when the app argument is missing" {
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:unlink" l
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:unlink" ls
|
||||
assert_contains "${lines[*]}" "Please specify an app to run the command on"
|
||||
}
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:unlink) error when the app does not exist" {
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:unlink" l not_existing_app
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:unlink" ls not_existing_app
|
||||
assert_contains "${lines[*]}" "App not_existing_app does not exist"
|
||||
}
|
||||
|
||||
@@ -32,13 +32,13 @@ teardown() {
|
||||
}
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:unlink) error when service not linked to app" {
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:unlink" l my-app
|
||||
run dokku "$PLUGIN_COMMAND_PREFIX:unlink" ls my-app
|
||||
assert_contains "${lines[*]}" "Not linked to app my-app"
|
||||
}
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:unlink) removes link from docker-options" {
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:link" l my-app >&2
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:unlink" l my-app
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:link" ls my-app >&2
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:unlink" ls my-app
|
||||
|
||||
check_value="Docker options build: Docker options deploy: --restart=on-failure:10 Docker options run:"
|
||||
options=$(dokku --quiet docker-options:report my-app | xargs)
|
||||
@@ -46,8 +46,8 @@ teardown() {
|
||||
}
|
||||
|
||||
@test "($PLUGIN_COMMAND_PREFIX:unlink) unsets config url from app" {
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:link" l my-app >&2
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:unlink" l my-app
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:link" ls my-app >&2
|
||||
dokku "$PLUGIN_COMMAND_PREFIX:unlink" ls my-app
|
||||
config=$(dokku config:get my-app REDIS_URL || true)
|
||||
assert_equal "$config" ""
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user