-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adds support for colcon args when building colcon workspace (#27)
* adds support for colcon args when building colcon workspace * adds help message for colcon-args * adds documentation for colcon-args option * Added test for option helpers --------- Co-authored-by: Felix Exner <[email protected]>
- Loading branch information
Showing
6 changed files
with
125 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
import click | ||
|
||
|
||
class SwallowAllOption(click.Option): | ||
"""Option that swallows all values after it""" | ||
|
||
def __init__(self, *args, **kwargs): | ||
nargs = kwargs.pop("nargs", -1) | ||
|
||
if nargs != -1: | ||
raise ValueError("nargs has to be -1") | ||
|
||
super(SwallowAllOption, self).__init__(*args, **kwargs) | ||
|
||
def add_to_parser(self, parser, ctx): | ||
def parser_process(value, state): | ||
value = [value] + state.rargs | ||
value = tuple(value) | ||
state.rargs[:] = [] | ||
|
||
self._previous_parser_process(value, state) | ||
|
||
retval = super(SwallowAllOption, self).add_to_parser(parser, ctx) | ||
for name in self.opts: | ||
our_parser = parser._long_opt.get(name) or parser._short_opt.get(name) | ||
if our_parser: | ||
self._eat_all_parser = our_parser | ||
self._previous_parser_process = our_parser.process | ||
our_parser.process = parser_process | ||
break | ||
return retval |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# | ||
# Copyright (c) 2024 FZI Forschungszentrum Informatik | ||
# | ||
# Permission is hereby granted, free of charge, to any person obtaining a copy | ||
# of this software and associated documentation files (the "Software"), to deal | ||
# in the Software without restriction, including without limitation the rights | ||
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
# copies of the Software, and to permit persons to whom the Software is | ||
# furnished to do so, subject to the following conditions: | ||
# | ||
# The above copyright notice and this permission notice shall be included in | ||
# all copies or substantial portions of the Software. | ||
# | ||
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
# THE SOFTWARE. | ||
|
||
import click | ||
|
||
import pytest | ||
|
||
from robot_folders.helpers.option_helpers import SwallowAllOption | ||
|
||
|
||
def test_swallow_all_option(): | ||
runner = click.testing.CliRunner() | ||
|
||
colcon_args = "--symlink-install --packages-select foobar" | ||
|
||
@click.command() | ||
@click.option("--colcon_args", cls=SwallowAllOption) | ||
def test_command(colcon_args): | ||
click.echo(f"{colcon_args}!") | ||
|
||
result = runner.invoke(test_command, [f"--colcon_args={colcon_args}"]) | ||
assert result.exit_code == 0 | ||
assert result.output == f"('{colcon_args}',)!\n" | ||
|
||
with pytest.raises(ValueError): | ||
|
||
@click.command() | ||
@click.option("--colcon_args", cls=SwallowAllOption, nargs=2) | ||
def illegal_test_command(): | ||
click.echo("hello") | ||
|
||
runner.invoke(illegal_test_command) |