Skip to content

Commit a978ed2

Browse files
committed
Make --detach incompatible with reuse or interactive
1 parent f05f248 commit a978ed2

File tree

2 files changed

+22
-0
lines changed

2 files changed

+22
-0
lines changed

lib/kamal/cli/app.rb

+4
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,10 @@ def details
9696
option :env, aliases: "-e", type: :hash, desc: "Set environment variables for the command"
9797
option :detach, type: :boolean, default: false, desc: "Execute command in a detached container"
9898
def exec(*cmd)
99+
if (incompatible_options = [ :interactive, :reuse ].select { |key| options[:detach] && options[key] }.presence)
100+
raise ArgumentError, "Detach is not compatible with #{incompatible_options.join(" or ")}"
101+
end
102+
99103
cmd = Kamal::Utils.join_commands(cmd)
100104
env = options[:env]
101105
detach = options[:detach]

test/cli/app_test.rb

+18
Original file line numberDiff line numberDiff line change
@@ -279,6 +279,24 @@ class CliAppTest < CliTestCase
279279
end
280280
end
281281

282+
test "exec detach with reuse" do
283+
assert_raises(ArgumentError, "Detach is not compatible with reuse") do
284+
run_command("exec", "--detach", "--reuse", "ruby -v")
285+
end
286+
end
287+
288+
test "exec detach with interactive" do
289+
assert_raises(ArgumentError, "Detach is not compatible with interactive") do
290+
run_command("exec", "--interactive", "--detach", "ruby -v")
291+
end
292+
end
293+
294+
test "exec detach with interactive and reuse" do
295+
assert_raises(ArgumentError, "Detach is not compatible with interactive or reuse") do
296+
run_command("exec", "--interactive", "--detach", "--reuse", "ruby -v")
297+
end
298+
end
299+
282300
test "exec with reuse" do
283301
run_command("exec", "--reuse", "ruby -v").tap do |output|
284302
assert_match "sh -c 'docker ps --latest --format '\\''{{.Names}}'\\'' --filter label=service=app --filter label=role=web --filter status=running --filter status=restarting --filter ancestor=$(docker image ls --filter reference=dhh/app:latest --format '\\''{{.ID}}'\\'') ; docker ps --latest --format '\\''{{.Names}}'\\'' --filter label=service=app --filter label=role=web --filter status=running --filter status=restarting' | head -1 | while read line; do echo ${line#app-web-}; done", output # Get current version

0 commit comments

Comments
 (0)