mirror of https://github.com/docker/compose.git
Address comments
- set flag name to `--exit-code-from` (and rename some variable, function and test names to match) - force cascade_stop to true when exit-code-from flag is set - use lambda in filter statement - check that selected container name is in the project before running - remove fancy parsing of service name to container mappings: if there are multiple containers in a service, return the first nonzero exit value if any - flake8 changes Signed-off-by: Nathan J. Mehl <n@climate.com>
This commit is contained in:
parent
a73190e1cc
commit
cffb76d4d9
|
@ -854,23 +854,20 @@ class TopLevelCommand(object):
|
||||||
running. (default: 10)
|
running. (default: 10)
|
||||||
--remove-orphans Remove containers for services not
|
--remove-orphans Remove containers for services not
|
||||||
defined in the Compose file
|
defined in the Compose file
|
||||||
--forward-exitval SERVICE Return the exit value of the selected service container.
|
--exit-code-from SERVICE Return the exit code of the selected service container.
|
||||||
Requires --abort-on-container-exit.
|
Requires --abort-on-container-exit.
|
||||||
"""
|
"""
|
||||||
start_deps = not options['--no-deps']
|
start_deps = not options['--no-deps']
|
||||||
|
exit_value_from = exitval_from_opts(options, self.project)
|
||||||
cascade_stop = options['--abort-on-container-exit']
|
cascade_stop = options['--abort-on-container-exit']
|
||||||
service_names = options['SERVICE']
|
service_names = options['SERVICE']
|
||||||
timeout = timeout_from_opts(options)
|
timeout = timeout_from_opts(options)
|
||||||
remove_orphans = options['--remove-orphans']
|
remove_orphans = options['--remove-orphans']
|
||||||
detached = options.get('-d')
|
detached = options.get('-d')
|
||||||
forward_exitval = container_exitval_from_opts(options)
|
|
||||||
|
|
||||||
if detached and cascade_stop:
|
if detached and cascade_stop:
|
||||||
raise UserError("--abort-on-container-exit and -d cannot be combined.")
|
raise UserError("--abort-on-container-exit and -d cannot be combined.")
|
||||||
|
|
||||||
if forward_exitval and not cascade_stop:
|
|
||||||
raise UserError("--forward-exitval requires --abort-on-container-exit.")
|
|
||||||
|
|
||||||
with up_shutdown_context(self.project, service_names, timeout, detached):
|
with up_shutdown_context(self.project, service_names, timeout, detached):
|
||||||
to_attach = self.project.up(
|
to_attach = self.project.up(
|
||||||
service_names=service_names,
|
service_names=service_names,
|
||||||
|
@ -884,11 +881,11 @@ class TopLevelCommand(object):
|
||||||
if detached:
|
if detached:
|
||||||
return
|
return
|
||||||
|
|
||||||
all_containers = filter_containers_to_service_names(to_attach, service_names)
|
attached_containers = filter_containers_to_service_names(to_attach, service_names)
|
||||||
|
|
||||||
log_printer = log_printer_from_project(
|
log_printer = log_printer_from_project(
|
||||||
self.project,
|
self.project,
|
||||||
all_containers,
|
attached_containers,
|
||||||
options['--no-color'],
|
options['--no-color'],
|
||||||
{'follow': True},
|
{'follow': True},
|
||||||
cascade_stop,
|
cascade_stop,
|
||||||
|
@ -899,22 +896,31 @@ class TopLevelCommand(object):
|
||||||
if cascade_stop:
|
if cascade_stop:
|
||||||
print("Aborting on container exit...")
|
print("Aborting on container exit...")
|
||||||
self.project.stop(service_names=service_names, timeout=timeout)
|
self.project.stop(service_names=service_names, timeout=timeout)
|
||||||
if forward_exitval:
|
if exit_value_from:
|
||||||
def is_us(container):
|
candidates = filter(
|
||||||
return container.name_without_project == forward_exitval
|
lambda c: c.service == exit_value_from,
|
||||||
candidates = filter(is_us, all_containers)
|
attached_containers)
|
||||||
if not candidates:
|
if not candidates:
|
||||||
log.error('No containers matching the spec "%s" were run.',
|
log.error('No containers matching the spec "%s" were run.',
|
||||||
forward_exitval)
|
exit_value_from)
|
||||||
sys.exit(2)
|
sys.exit(2)
|
||||||
if len(candidates) > 1:
|
if len(candidates) > 1:
|
||||||
log.error('Multiple (%d) containers matching the spec "%s" '
|
exit_values = []
|
||||||
'were found; cannot forward exit code because we '
|
for candidate in candidates:
|
||||||
'do not know which one to.', len(candidates),
|
exit_val = candidate.inspect()['State']['ExitCode']
|
||||||
forward_exitval)
|
if exit_val:
|
||||||
sys.exit(2)
|
exit_values.append(exit_val)
|
||||||
exit_code = candidates[0].inspect()['State']['ExitCode']
|
if exit_values:
|
||||||
sys.exit(exit_code)
|
log.warn('Multiple (%d) containers matching the service name "%s" '
|
||||||
|
'were found and at least one exited nonzero; returning '
|
||||||
|
'the first non-zero exit code. See above for detailed '
|
||||||
|
'exit statuses.', len(candidates), exit_value_from)
|
||||||
|
sys.exit(exit_values[0])
|
||||||
|
else:
|
||||||
|
exit_value = candidates[0].inspect()['State']['ExitCode']
|
||||||
|
log.error('Returning exit value %d from container %s.', exit_value,
|
||||||
|
candidates[0].name_without_project)
|
||||||
|
sys.exit(exit_value)
|
||||||
|
|
||||||
@classmethod
|
@classmethod
|
||||||
def version(cls, options):
|
def version(cls, options):
|
||||||
|
@ -947,32 +953,24 @@ def convergence_strategy_from_opts(options):
|
||||||
return ConvergenceStrategy.changed
|
return ConvergenceStrategy.changed
|
||||||
|
|
||||||
|
|
||||||
def container_exitval_from_opts(options):
|
|
||||||
""" Assemble a container name suitable for mapping into the
|
|
||||||
output of filter_containers_to_service_names. If the
|
|
||||||
container name ends in an underscore followed by a
|
|
||||||
positive integer, the user has deliberately specified
|
|
||||||
a container number and we believe her. Otherwise, append
|
|
||||||
`_1` to the name so as to return the exit value of the
|
|
||||||
first such named container.
|
|
||||||
"""
|
|
||||||
container_name = options.get('--forward-exitval')
|
|
||||||
if not container_name:
|
|
||||||
return None
|
|
||||||
segments = container_name.split('_')
|
|
||||||
if segments[-1].isdigit() and int(segments[-1]) > 0:
|
|
||||||
return '_'.join(segments)
|
|
||||||
else:
|
|
||||||
log.warn('"%s" does not specify a container number, '
|
|
||||||
'defaulting to "%s_1"', container_name, container_name)
|
|
||||||
return '_'.join(segments + ['1'])
|
|
||||||
|
|
||||||
|
|
||||||
def timeout_from_opts(options):
|
def timeout_from_opts(options):
|
||||||
timeout = options.get('--timeout')
|
timeout = options.get('--timeout')
|
||||||
return None if timeout is None else int(timeout)
|
return None if timeout is None else int(timeout)
|
||||||
|
|
||||||
|
|
||||||
|
def exitval_from_opts(options, project):
|
||||||
|
exit_value_from = options.get('--exit-code-from')
|
||||||
|
if exit_value_from:
|
||||||
|
if not options.get('--abort-on-container-exit'):
|
||||||
|
log.warn('using --exit-code-from implies --abort-on-container-exit')
|
||||||
|
options['--abort-on-container-exit'] = True
|
||||||
|
if exit_value_from not in [s.name for s in project.get_services()]:
|
||||||
|
log.error('No service named "%s" was found in your compose file.',
|
||||||
|
exit_value_from)
|
||||||
|
sys.exit(2)
|
||||||
|
return exit_value_from
|
||||||
|
|
||||||
|
|
||||||
def image_type_from_opt(flag, value):
|
def image_type_from_opt(flag, value):
|
||||||
if not value:
|
if not value:
|
||||||
return ImageType.none
|
return ImageType.none
|
||||||
|
|
|
@ -467,7 +467,7 @@ _docker_compose_up() {
|
||||||
|
|
||||||
case "$cur" in
|
case "$cur" in
|
||||||
-*)
|
-*)
|
||||||
COMPREPLY=( $( compgen -W "--forward-exitval --abort-on-container-exit --build -d --force-recreate --help --no-build --no-color --no-deps --no-recreate --timeout -t --remove-orphans" -- "$cur" ) )
|
COMPREPLY=( $( compgen -W "--exit-code-from --abort-on-container-exit --build -d --force-recreate --help --no-build --no-color --no-deps --no-recreate --timeout -t --remove-orphans" -- "$cur" ) )
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
__docker_compose_services_all
|
__docker_compose_services_all
|
||||||
|
|
|
@ -1929,11 +1929,11 @@ class CLITestCase(DockerClientTestCase):
|
||||||
assert result.stdout.count("top") == 4
|
assert result.stdout.count("top") == 4
|
||||||
|
|
||||||
def test_forward_exitval(self):
|
def test_forward_exitval(self):
|
||||||
self.base_dir = 'tests/fixtures/forward-exitval'
|
self.base_dir = 'tests/fixtures/exit-code-from'
|
||||||
proc = start_process(
|
proc = start_process(
|
||||||
self.base_dir,
|
self.base_dir,
|
||||||
['up', '--abort-on-container-exit', '--forward-exitval', 'another'])
|
['up', '--abort-on-container-exit', '--exit-code-from', 'another'])
|
||||||
|
|
||||||
result = wait_on_process(proc, returncode=1)
|
result = wait_on_process(proc, returncode=1)
|
||||||
|
|
||||||
assert 'forwardexitval_another_1 exited with code 1' in result.stdout
|
assert 'exitcodefrom_another_1 exited with code 1' in result.stdout
|
||||||
|
|
Loading…
Reference in New Issue