-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add a shorthand option for switching to alternate rmws #268
Merged
Merged
Changes from 2 commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
955fcff
Basic rocker config to install and enable different rmw layers
tfoote 3d5d650
make default for rmw extension None which will be disabled.
tfoote 48b81de
clean up cli args and better installation behavior
tfoote 47ffdbb
Dependency issue resolved in latest images.
tfoote 64238ed
Add unit tests
tfoote 8e3f6ca
remove implemented TODO
tfoote File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
# Licensed to the Apache Software Foundation (ASF) under one | ||
# or more contributor license agreements. See the NOTICE file | ||
# distributed with this work for additional information | ||
# regarding copyright ownership. The ASF licenses this file | ||
# to you under the Apache License, Version 2.0 (the | ||
# "License"); you may not use this file except in compliance | ||
# with the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, | ||
# software distributed under the License is distributed on an | ||
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | ||
# KIND, either express or implied. See the License for the | ||
# specific language governing permissions and limitations | ||
# under the License. | ||
|
||
import em | ||
import os | ||
import unittest | ||
import pytest | ||
|
||
|
||
from rocker.core import DockerImageGenerator | ||
from rocker.core import list_plugins | ||
|
||
from test_extension import plugin_load_parser_correctly | ||
|
||
|
||
|
||
class rmwExtensionTest(unittest.TestCase): | ||
|
||
def setUp(self): | ||
# Work around interference between empy Interpreter | ||
# stdout proxy and test runner. empy installs a proxy on stdout | ||
# to be able to capture the information. | ||
# And the test runner creates a new stdout object for each test. | ||
# This breaks empy as it assumes that the proxy has persistent | ||
# between instances of the Interpreter class | ||
# empy will error with the exception | ||
# "em.Error: interpreter stdout proxy lost" | ||
em.Interpreter._wasProxyInstalled = False | ||
|
||
def test_rmw_extension(self): | ||
plugins = list_plugins() | ||
rmw_plugin = plugins['rmw'] | ||
self.assertEqual(rmw_plugin.get_name(), 'rmw') | ||
|
||
p = rmw_plugin() | ||
self.assertTrue(plugin_load_parser_correctly(rmw_plugin)) | ||
|
||
|
||
mock_cliargs = {'rmw': ['cyclonedds']} | ||
# TODO self.assertEqual(p.get_snippet(mock_cliargs), '') | ||
self.assertEqual(p.get_preamble(mock_cliargs), '') | ||
args = p.get_docker_args(mock_cliargs) | ||
self.assertIn('-e RMW_IMPLEMENTATION=rmw_cyclonedds_cpp', args) | ||
snippet = p.get_snippet(mock_cliargs) | ||
self.assertIn('rmw-cyclonedds-cpp', snippet) | ||
|
||
|
||
#without it set | ||
mock_cliargs = {'rmw': None} | ||
args = p.get_docker_args(mock_cliargs) | ||
snippet = p.get_snippet(mock_cliargs) | ||
self.assertNotIn('RMW_IMPLEMENTATION', args) | ||
self.assertNotIn('rmw-cyclonedds-cpp', snippet) | ||
|
||
|
||
@pytest.mark.docker | ||
class rmwRuntimeExtensionTest(unittest.TestCase): | ||
|
||
def setUp(self): | ||
# Work around interference between empy Interpreter | ||
# stdout proxy and test runner. empy installs a proxy on stdout | ||
# to be able to capture the information. | ||
# And the test runner creates a new stdout object for each test. | ||
# This breaks empy as it assumes that the proxy has persistent | ||
# between instances of the Interpreter class | ||
# empy will error with the exception | ||
# "em.Error: interpreter stdout proxy lost" | ||
em.Interpreter._wasProxyInstalled = False | ||
|
||
def test_rmw_extension(self): | ||
plugins = list_plugins() | ||
rmw_plugin = plugins['rmw'] | ||
|
||
p = rmw_plugin() | ||
self.assertTrue(plugin_load_parser_correctly(rmw_plugin)) | ||
|
||
mock_cliargs = {'rmw': ['cyclonedds']} | ||
dig = DockerImageGenerator([rmw_plugin()], mock_cliargs, 'ros:rolling') | ||
self.assertEqual(dig.build(), 0) | ||
self.assertEqual(dig.run(command='dpkg -l ros-rolling-rmw-cyclonedds-cpp'), 0) | ||
self.assertIn('-e RMW_IMPLEMENTATION=rmw_cyclonedds_cpp', dig.generate_docker_cmd('', mode='dry-run')) |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can this comment be removed, due to line 55 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks yes, it was implemented in L58/9. I'll remove it.