ROS allows for creating nodes that communicate with each other. It is very common to use C++ and Python to write these nodes.
This package contains example nodes written in C++ and Python that show minimal examples of using some very basic but powerful features of ROS. Those features include:
- parameter server
- dynamic reconfigure
- timers
- custom messages
- classes with callback functions for publishers and subscribers
- remap topic names
More ideas that are explored are deploying documentation using GitHub Pages, writing unit tests, and checking build status and code coverage.
Additional documentation at http://tdenewiler.github.io/node_example.
There are several launch files included, the main one being node_example.launch
.
This will start a talker and listener written in C++ and a talker and listener written in Python.
One GUI will open allowing you to see what messages are being received by the listeners and another GUI will allow
you to change the values sent from each talker.
Both listener nodes receive messages from both talkers, showing that the languages used to write the talkers and
listeners can be mixed.
Build a workspace containing this repository.
A node_example.rosinstall
file has been included for convenience with wstool
.
To start all the nodes run
roslaunch node_example node_example.launch
You should see two windows open: rqt_reconfigure
and rqt_console
.
They will look like the following screenshots.
At this point you can modify the strings or numbers in the reconfigure GUI and you should see those changes show up
in the console GUI.
There are enable
parameters in each of the talker nodes so that the nodes can effectively be paused and resumed
during runtime.
This is a nice feature that allows easily turning system components on and off during operation for whatever reason
(such as wanting to run multiple similar nodes side-by-side for comparison without using too many CPU/RAM resources,
only running certain nodes when some conditions are met, etc.).
The main
branch will keep up with the supported ROS1 distributions.
These currently include Melodic (18.04) and Noetic (20.04).
Tests are run using GitHub Actions for all of these distributions.
During development there are large benefits to employing unit tests to verify that code changes do not break existing
functionality.
This package contains unit tests for each of the C++ nodes.
The unit tests are run using the *.test
files in the test/
directory.
The *.test
files start the node to be tested plus the unit test code.
The unit test code is written such that it publishes and subscribes to the topics that correspond to the interfaces
of the node under test.
Callbacks are used to verify that the expected data is available on the specified topics.
There are several methods of running the unit tests.
Running the tests with continuous integration services for pull requests is a common method used to ensure pull
requests can be safely merged.
One popular continuous integration provider for open source projects is Travis CI.
This project now uses GitHub Actions to perform tests prior to merging changes into the main
branch.
The build and test results for this package can be found in the table at the top of this page.
Unit tests are not magic bullets. The inputs to the nodes must take on enough values to verify that functions return valid values. This will be different for each function and is not fully covered here. Another aspect of unit tests is to ensure that all lines of code are exercised by unit tests, also referred to as code coverage.
A popular code coverage provider for open source projects is codecov. The code coverage results for this package can be found in the table at the top of this page. This tool provides some measure of confidence that the existing unit tests will catch any issues, and that new changes are introduced with unit test code.
Deployed using the command mkdocs gh-deploy
.