Skip to content
Snippets Groups Projects
Commit da290c20 authored by vlorentz's avatar vlorentz
Browse files

Add support for non-string options when scheduling tasks.

This also fixes the pretty-printing of tasks, which was ambiguous
(`42` and `"42"` where both printed as `42`).
parent b0aea8c0
No related branches found
No related tags found
1 merge request!82Add support for non-string options when scheduling tasks.
......@@ -9,6 +9,7 @@ elasticsearch > 5.4
flask
kombu
psycopg2
pyyaml
vcversioner
# test dependencies
......
......@@ -51,14 +51,14 @@ def format_dict(d):
def pretty_print_list(list, indent=0):
"""Pretty-print a list"""
return ''.join('%s%s\n' % (' ' * indent, item) for item in list)
return ''.join('%s%r\n' % (' ' * indent, item) for item in list)
def pretty_print_dict(dict, indent=0):
"""Pretty-print a list"""
return ''.join('%s%s: %s\n' %
return ''.join('%s%s: %r\n' %
(' ' * indent, click.style(key, bold=True), value)
for key, value in dict.items())
for key, value in sorted(dict.items()))
def pretty_print_run(run, indent=4):
......@@ -75,8 +75,8 @@ def pretty_print_task(task, full=False):
>>> task = {
... 'id': 1234,
... 'arguments': {
... 'args': ['foo', 'bar'],
... 'kwargs': {'key': 'value'},
... 'args': ['foo', 'bar', True],
... 'kwargs': {'key': 'value', 'key2': 42},
... },
... 'current_interval': datetime.timedelta(hours=1),
... 'next_run': datetime.datetime(2019, 2, 21, 13, 52, 35, 407818),
......@@ -92,10 +92,12 @@ def pretty_print_task(task, full=False):
Type: test_task
Policy: oneshot
Args:
foo
bar
'foo'
'bar'
True
Keyword args:
key: value
key: 'value'
key2: 42
<BLANKLINE>
>>> print(click.unstyle(pretty_print_task(task, full=True)))
Task 1234
......@@ -106,10 +108,12 @@ def pretty_print_task(task, full=False):
Status: next_run_not_scheduled
Priority:\x20
Args:
foo
bar
'foo'
'bar'
True
Keyword args:
key: value
key: 'value'
key2: 42
<BLANKLINE>
"""
next_run = arrow.get(task['next_run'])
......
......@@ -3,19 +3,43 @@
# License: GNU General Public License version 3, or any later version
# See top-level LICENSE file for more information
import click
import yaml
def parse_argument(option):
try:
return yaml.load(option)
except Exception:
raise click.ClickException('Invalid argument: {}'.format(option))
def parse_options(options):
"""Parses options from a CLI and turns it into Python args and kwargs.
"""Parses options from a CLI as YAML and turns it into Python
args and kwargs.
>>> parse_options([])
([], {})
>>> parse_options(['foo', 'bar'])
(['foo', 'bar'], {})
>>> parse_options(['foo=bar'])
>>> parse_options(['[foo, bar]'])
([['foo', 'bar']], {})
>>> parse_options(['"foo"', '"bar"'])
(['foo', 'bar'], {})
>>> parse_options(['foo="bar"'])
([], {'foo': 'bar'})
>>> parse_options(['foo', 'bar=baz'])
>>> parse_options(['"foo"', 'bar="baz"'])
(['foo'], {'bar': 'baz'})
>>> parse_options(['42', 'bar=False'])
([42], {'bar': False})
>>> parse_options(['42', 'bar=false'])
([42], {'bar': False})
>>> parse_options(['42', '"foo'])
Traceback (most recent call last):
...
click.exceptions.ClickException: Invalid argument: "foo
"""
args = [x for x in options if '=' not in x]
kw = dict(x.split('=', 1) for x in options if '=' in x)
kw_pairs = [x.split('=', 1) for x in options if '=' in x]
args = [parse_argument(x) for x in options if '=' not in x]
kw = {k: parse_argument(v) for (k, v) in kw_pairs}
return (args, kw)
......@@ -61,7 +61,7 @@ Task 1
Args:
\['arg1', 'arg2'\]
Keyword args:
key: value
key: 'value'
Task 2
Next run: just now \(.*\)
......@@ -71,7 +71,7 @@ Task 2
Args:
\['arg3', 'arg4'\]
Keyword args:
key: value
key: 'value'
'''.lstrip()
assert result.exit_code == 0, result.output
......@@ -99,10 +99,10 @@ Task 1
Type: swh-test-ping
Policy: oneshot
Args:
arg1
arg2
'arg1'
'arg2'
Keyword args:
key: value
key: 'value'
'''.lstrip()
assert result.exit_code == 0, result.output
......@@ -124,10 +124,10 @@ Task 1
Type: swh-test-ping
Policy: recurring
Args:
arg1
arg2
'arg1'
'arg2'
Keyword args:
key: value
key: 'value'
'''.lstrip()
assert result.exit_code == 0, result.output
......@@ -167,7 +167,7 @@ Task 1
Policy: oneshot
Args:
Keyword args:
key: value
key: 'value'
'''.lstrip()
assert result.exit_code == 0, result.output
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment