iceoryx_integrationtest package from iceoryx repoiceoryx_binding_c iceoryx_hoofs iceoryx_integrationtest iceoryx_posh iceoryx_introspection |
|
Package Summary
Tags | No category tags. |
Version | 2.0.6 |
License | Apache 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/eclipse-iceoryx/iceoryx.git |
VCS Type | git |
VCS Version | release_2.0 |
Last Updated | 2024-06-11 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Eclipse Foundation, Inc.
Authors
Iceoryx integration tests
Introduction
To ensure quality standards in iceoryx, we are using automated testing to ensure ISO26262 on unit test and integration test level of the respective components. Additionally, we need to make sure that the customer-facing API is functional and software integration specifications are fulfilled. Test focus is here on SWE.5 according to ASPICE.
For that purpose we bring in tests which simulate customer behavior to have automatic testing of (Mis)Use-cases. As testing framework we use the launch_testing framework from ROS 2. The tests are stored in a ROS 2 CMake package where the test executables are built and launched/tested by python scripts. In these scripts the testing is currently done by evaluating the stdout output of the processes and the exit codes.
Advantages:
- automatic test if processes have exited unexpectedly
- test against custom or error return codes to evaluate error-cases
- test the order of printed messages
Limitations:
- testing against stdout is error prone
- limited functionality for performance testing because the stdout is buffered (messages could be reordered)
Setup
To build and execute the tests you need to have ROS 2 installed. Please follow the instructions on https://docs.ros.org/en/foxy/Installation.html. The system tests are currently tested on ROS 2 “Foxy Fitzroy” in Ubuntu 20.04 LTS.
Please remove beforehand the COLCON_IGNORE
files from iceoryx_integrationtest
and iceoryx_examples
.
For a basic setup you need to install the following packages:
sudo apt install ros-foxy-ros-base ros-foxy-ros-testing ros-foxy-launch-testing ros-foxy-ament-cmake python3-colcon-common-extensions
For the future versions you can use the corresponding ROS 2 release.
Once installed, you need to source ROS 2 to make the environment available in your terminal:
source /opt/ros/foxy/setup.bash
NOTE: You can add the source command to your ~/.bashrc
for automatic loading the ROS 2 workspace at boot time.
Required for the colcon build of iceoryx is that the repository is located within a ROS workspace like this:
iceoryx_workspace
└── src
└── iceoryx
├── cmake
├── doc
├── iceoryx_binding_c
├── iceoryx_dds
├── iceoryx_examples
├── iceoryx_hoofs
├── iceoryx_integrationtest
├── iceoryx_meta
├── iceoryx_posh
└── tools
Test Build and Execution
Go into your iceoryx_workspace folder and do the colcon build:
colcon build
The expected output should be like this: Summary: 21 packages finished [31.7s]
Colcon automatically creates the folders build
, install
and log
.
NOTE: Please make sure that the build folder in src/iceoryx is not present to avoid conflicts with the colcon build.
For executing tests you can use colcon too:
source install/setup.bash # your install directory created by colcon
colcon test --packages-select iceoryx_integrationtest
In case a test fails, the output looks like this
--- stderr: iceoryx_integrationtest
Errors while running CTest
---
Finished <<< iceoryx_integrationtest [4min 50s] [ with test failures ]
Summary: 1 package finished [4min 50s]
1 package had stderr output: iceoryx_integrationtest
1 package had test failures: iceoryx_integrationtest
You can use colcon test-result
to obtain test logs in an error case:
colcon test-result --all --verbose
With colcon all tests in the iceoryx_integrationtest package are executed. In particular cases you may want to execute only one test file. This can be done in the following way:
launch_test src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py
An output for a failing test could look like this:
======================================================================
FAIL: test_roudi_ready (iceoryx_integrationtest.TestRouDiProcess)
----------------------------------------------------------------------
Traceback (most recent call last):
File "iceoryx_workspace/src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py", line 52, in test_roudi_ready
proc_output.assertWaitFor(
File "/opt/ros/foxy/lib/python3.8/site-packages/launch_testing/io_handler.py", line 146, in assertWaitFor
assert success, 'Waiting for output timed out'
AssertionError: Waiting for output timed out
Open points
- use an alternative way of tracing test information of the test processes without involving iceoryx (e.g. DDS or some tracing lib)
- add gtest for detailed testing in the test processes
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged iceoryx_integrationtest at Robotics Stack Exchange
iceoryx_integrationtest package from iceoryx repoiceoryx_binding_c iceoryx_hoofs iceoryx_integrationtest iceoryx_posh iceoryx_introspection |
|
Package Summary
Tags | No category tags. |
Version | 2.0.6 |
License | Apache 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/eclipse-iceoryx/iceoryx.git |
VCS Type | git |
VCS Version | release_2.0 |
Last Updated | 2024-06-11 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Eclipse Foundation, Inc.
Authors
Iceoryx integration tests
Introduction
To ensure quality standards in iceoryx, we are using automated testing to ensure ISO26262 on unit test and integration test level of the respective components. Additionally, we need to make sure that the customer-facing API is functional and software integration specifications are fulfilled. Test focus is here on SWE.5 according to ASPICE.
For that purpose we bring in tests which simulate customer behavior to have automatic testing of (Mis)Use-cases. As testing framework we use the launch_testing framework from ROS 2. The tests are stored in a ROS 2 CMake package where the test executables are built and launched/tested by python scripts. In these scripts the testing is currently done by evaluating the stdout output of the processes and the exit codes.
Advantages:
- automatic test if processes have exited unexpectedly
- test against custom or error return codes to evaluate error-cases
- test the order of printed messages
Limitations:
- testing against stdout is error prone
- limited functionality for performance testing because the stdout is buffered (messages could be reordered)
Setup
To build and execute the tests you need to have ROS 2 installed. Please follow the instructions on https://docs.ros.org/en/foxy/Installation.html. The system tests are currently tested on ROS 2 “Foxy Fitzroy” in Ubuntu 20.04 LTS.
Please remove beforehand the COLCON_IGNORE
files from iceoryx_integrationtest
and iceoryx_examples
.
For a basic setup you need to install the following packages:
sudo apt install ros-foxy-ros-base ros-foxy-ros-testing ros-foxy-launch-testing ros-foxy-ament-cmake python3-colcon-common-extensions
For the future versions you can use the corresponding ROS 2 release.
Once installed, you need to source ROS 2 to make the environment available in your terminal:
source /opt/ros/foxy/setup.bash
NOTE: You can add the source command to your ~/.bashrc
for automatic loading the ROS 2 workspace at boot time.
Required for the colcon build of iceoryx is that the repository is located within a ROS workspace like this:
iceoryx_workspace
└── src
└── iceoryx
├── cmake
├── doc
├── iceoryx_binding_c
├── iceoryx_dds
├── iceoryx_examples
├── iceoryx_hoofs
├── iceoryx_integrationtest
├── iceoryx_meta
├── iceoryx_posh
└── tools
Test Build and Execution
Go into your iceoryx_workspace folder and do the colcon build:
colcon build
The expected output should be like this: Summary: 21 packages finished [31.7s]
Colcon automatically creates the folders build
, install
and log
.
NOTE: Please make sure that the build folder in src/iceoryx is not present to avoid conflicts with the colcon build.
For executing tests you can use colcon too:
source install/setup.bash # your install directory created by colcon
colcon test --packages-select iceoryx_integrationtest
In case a test fails, the output looks like this
--- stderr: iceoryx_integrationtest
Errors while running CTest
---
Finished <<< iceoryx_integrationtest [4min 50s] [ with test failures ]
Summary: 1 package finished [4min 50s]
1 package had stderr output: iceoryx_integrationtest
1 package had test failures: iceoryx_integrationtest
You can use colcon test-result
to obtain test logs in an error case:
colcon test-result --all --verbose
With colcon all tests in the iceoryx_integrationtest package are executed. In particular cases you may want to execute only one test file. This can be done in the following way:
launch_test src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py
An output for a failing test could look like this:
======================================================================
FAIL: test_roudi_ready (iceoryx_integrationtest.TestRouDiProcess)
----------------------------------------------------------------------
Traceback (most recent call last):
File "iceoryx_workspace/src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py", line 52, in test_roudi_ready
proc_output.assertWaitFor(
File "/opt/ros/foxy/lib/python3.8/site-packages/launch_testing/io_handler.py", line 146, in assertWaitFor
assert success, 'Waiting for output timed out'
AssertionError: Waiting for output timed out
Open points
- use an alternative way of tracing test information of the test processes without involving iceoryx (e.g. DDS or some tracing lib)
- add gtest for detailed testing in the test processes
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged iceoryx_integrationtest at Robotics Stack Exchange
iceoryx_integrationtest package from iceoryx repoiceoryx_binding_c iceoryx_hoofs iceoryx_integrationtest iceoryx_posh iceoryx_introspection |
|
Package Summary
Tags | No category tags. |
Version | 2.0.6 |
License | Apache 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/eclipse-iceoryx/iceoryx.git |
VCS Type | git |
VCS Version | release_2.0 |
Last Updated | 2024-06-11 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Eclipse Foundation, Inc.
Authors
Iceoryx integration tests
Introduction
To ensure quality standards in iceoryx, we are using automated testing to ensure ISO26262 on unit test and integration test level of the respective components. Additionally, we need to make sure that the customer-facing API is functional and software integration specifications are fulfilled. Test focus is here on SWE.5 according to ASPICE.
For that purpose we bring in tests which simulate customer behavior to have automatic testing of (Mis)Use-cases. As testing framework we use the launch_testing framework from ROS 2. The tests are stored in a ROS 2 CMake package where the test executables are built and launched/tested by python scripts. In these scripts the testing is currently done by evaluating the stdout output of the processes and the exit codes.
Advantages:
- automatic test if processes have exited unexpectedly
- test against custom or error return codes to evaluate error-cases
- test the order of printed messages
Limitations:
- testing against stdout is error prone
- limited functionality for performance testing because the stdout is buffered (messages could be reordered)
Setup
To build and execute the tests you need to have ROS 2 installed. Please follow the instructions on https://docs.ros.org/en/foxy/Installation.html. The system tests are currently tested on ROS 2 “Foxy Fitzroy” in Ubuntu 20.04 LTS.
Please remove beforehand the COLCON_IGNORE
files from iceoryx_integrationtest
and iceoryx_examples
.
For a basic setup you need to install the following packages:
sudo apt install ros-foxy-ros-base ros-foxy-ros-testing ros-foxy-launch-testing ros-foxy-ament-cmake python3-colcon-common-extensions
For the future versions you can use the corresponding ROS 2 release.
Once installed, you need to source ROS 2 to make the environment available in your terminal:
source /opt/ros/foxy/setup.bash
NOTE: You can add the source command to your ~/.bashrc
for automatic loading the ROS 2 workspace at boot time.
Required for the colcon build of iceoryx is that the repository is located within a ROS workspace like this:
iceoryx_workspace
└── src
└── iceoryx
├── cmake
├── doc
├── iceoryx_binding_c
├── iceoryx_dds
├── iceoryx_examples
├── iceoryx_hoofs
├── iceoryx_integrationtest
├── iceoryx_meta
├── iceoryx_posh
└── tools
Test Build and Execution
Go into your iceoryx_workspace folder and do the colcon build:
colcon build
The expected output should be like this: Summary: 21 packages finished [31.7s]
Colcon automatically creates the folders build
, install
and log
.
NOTE: Please make sure that the build folder in src/iceoryx is not present to avoid conflicts with the colcon build.
For executing tests you can use colcon too:
source install/setup.bash # your install directory created by colcon
colcon test --packages-select iceoryx_integrationtest
In case a test fails, the output looks like this
--- stderr: iceoryx_integrationtest
Errors while running CTest
---
Finished <<< iceoryx_integrationtest [4min 50s] [ with test failures ]
Summary: 1 package finished [4min 50s]
1 package had stderr output: iceoryx_integrationtest
1 package had test failures: iceoryx_integrationtest
You can use colcon test-result
to obtain test logs in an error case:
colcon test-result --all --verbose
With colcon all tests in the iceoryx_integrationtest package are executed. In particular cases you may want to execute only one test file. This can be done in the following way:
launch_test src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py
An output for a failing test could look like this:
======================================================================
FAIL: test_roudi_ready (iceoryx_integrationtest.TestRouDiProcess)
----------------------------------------------------------------------
Traceback (most recent call last):
File "iceoryx_workspace/src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py", line 52, in test_roudi_ready
proc_output.assertWaitFor(
File "/opt/ros/foxy/lib/python3.8/site-packages/launch_testing/io_handler.py", line 146, in assertWaitFor
assert success, 'Waiting for output timed out'
AssertionError: Waiting for output timed out
Open points
- use an alternative way of tracing test information of the test processes without involving iceoryx (e.g. DDS or some tracing lib)
- add gtest for detailed testing in the test processes
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged iceoryx_integrationtest at Robotics Stack Exchange
iceoryx_integrationtest package from iceoryx repoiceoryx_binding_c iceoryx_hoofs iceoryx_integrationtest iceoryx_posh iceoryx_introspection |
|
Package Summary
Tags | No category tags. |
Version | 2.0.6 |
License | Apache 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/eclipse-iceoryx/iceoryx.git |
VCS Type | git |
VCS Version | release_2.0 |
Last Updated | 2024-06-11 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Eclipse Foundation, Inc.
Authors
Iceoryx integration tests
Introduction
To ensure quality standards in iceoryx, we are using automated testing to ensure ISO26262 on unit test and integration test level of the respective components. Additionally, we need to make sure that the customer-facing API is functional and software integration specifications are fulfilled. Test focus is here on SWE.5 according to ASPICE.
For that purpose we bring in tests which simulate customer behavior to have automatic testing of (Mis)Use-cases. As testing framework we use the launch_testing framework from ROS 2. The tests are stored in a ROS 2 CMake package where the test executables are built and launched/tested by python scripts. In these scripts the testing is currently done by evaluating the stdout output of the processes and the exit codes.
Advantages:
- automatic test if processes have exited unexpectedly
- test against custom or error return codes to evaluate error-cases
- test the order of printed messages
Limitations:
- testing against stdout is error prone
- limited functionality for performance testing because the stdout is buffered (messages could be reordered)
Setup
To build and execute the tests you need to have ROS 2 installed. Please follow the instructions on https://docs.ros.org/en/foxy/Installation.html. The system tests are currently tested on ROS 2 “Foxy Fitzroy” in Ubuntu 20.04 LTS.
Please remove beforehand the COLCON_IGNORE
files from iceoryx_integrationtest
and iceoryx_examples
.
For a basic setup you need to install the following packages:
sudo apt install ros-foxy-ros-base ros-foxy-ros-testing ros-foxy-launch-testing ros-foxy-ament-cmake python3-colcon-common-extensions
For the future versions you can use the corresponding ROS 2 release.
Once installed, you need to source ROS 2 to make the environment available in your terminal:
source /opt/ros/foxy/setup.bash
NOTE: You can add the source command to your ~/.bashrc
for automatic loading the ROS 2 workspace at boot time.
Required for the colcon build of iceoryx is that the repository is located within a ROS workspace like this:
iceoryx_workspace
└── src
└── iceoryx
├── cmake
├── doc
├── iceoryx_binding_c
├── iceoryx_dds
├── iceoryx_examples
├── iceoryx_hoofs
├── iceoryx_integrationtest
├── iceoryx_meta
├── iceoryx_posh
└── tools
Test Build and Execution
Go into your iceoryx_workspace folder and do the colcon build:
colcon build
The expected output should be like this: Summary: 21 packages finished [31.7s]
Colcon automatically creates the folders build
, install
and log
.
NOTE: Please make sure that the build folder in src/iceoryx is not present to avoid conflicts with the colcon build.
For executing tests you can use colcon too:
source install/setup.bash # your install directory created by colcon
colcon test --packages-select iceoryx_integrationtest
In case a test fails, the output looks like this
--- stderr: iceoryx_integrationtest
Errors while running CTest
---
Finished <<< iceoryx_integrationtest [4min 50s] [ with test failures ]
Summary: 1 package finished [4min 50s]
1 package had stderr output: iceoryx_integrationtest
1 package had test failures: iceoryx_integrationtest
You can use colcon test-result
to obtain test logs in an error case:
colcon test-result --all --verbose
With colcon all tests in the iceoryx_integrationtest package are executed. In particular cases you may want to execute only one test file. This can be done in the following way:
launch_test src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py
An output for a failing test could look like this:
======================================================================
FAIL: test_roudi_ready (iceoryx_integrationtest.TestRouDiProcess)
----------------------------------------------------------------------
Traceback (most recent call last):
File "iceoryx_workspace/src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py", line 52, in test_roudi_ready
proc_output.assertWaitFor(
File "/opt/ros/foxy/lib/python3.8/site-packages/launch_testing/io_handler.py", line 146, in assertWaitFor
assert success, 'Waiting for output timed out'
AssertionError: Waiting for output timed out
Open points
- use an alternative way of tracing test information of the test processes without involving iceoryx (e.g. DDS or some tracing lib)
- add gtest for detailed testing in the test processes
Wiki Tutorials
Package Dependencies
System Dependencies
Dependant Packages
Launch files
Messages
Services
Plugins
Recent questions tagged iceoryx_integrationtest at Robotics Stack Exchange
iceoryx_integrationtest package from iceoryx repoiceoryx_binding_c iceoryx_integrationtest iceoryx_posh iceoryx_utils |
|
Package Summary
Tags | No category tags. |
Version | 1.0.3 |
License | Apache 2.0 |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/eclipse-iceoryx/iceoryx.git |
VCS Type | git |
VCS Version | release_1.0 |
Last Updated | 2022-04-08 |
Dev Status | DEVELOPED |
CI status | No Continuous Integration |
Released | RELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Eclipse Foundation, Inc.
Authors
Iceoryx Integrationtests
Introduction
To ensure quality standards in iceoryx, we are using automated testing to ensure ISO26262 on unittest and integrationtest level in the respective components. Additionally we need to make sure that the customer-facing API is functional and software integration specifications are fulfilled. Test focus is here on SWE.5 according to ASPICE.
For that purpose we bring in tests which simulate customer behavior to have automatic testing of (Mis)Use-cases. As testing framework we use the launch_testing framework from ROS 2. The tests are stored in a ROS 2 CMake package where the test executables are build and launched/tested by python scripts. In these scripts the testing is currently done by evaluating the stdout output of the processes and the exit codes.
advantages:
- automatic test if processes have exited unexpectedly
- test against custom or error return codes to evaluate error-cases
- test the order of printed messages
limitations:
- testing against stdout is error prone
- limited functionality for performance testing because the stdout is buffered (messages could be reordered)
Setup
For building and executing the tests you need to have ROS2 installed. Please follow the instructions on https://index.ros.org/doc/ros2/Installation. The system tests are currently tested on ROS 2 “Foxy Fitzroy” in Ubuntu 20.04 LTS.
Please remove beforehand the COLCON_IGNORE
files from iceoryx_integrationtest
and iceoryx_examples
.
For a basic setup you need to install the following packages:
sudo apt install ros-foxy-ros-base ros-foxy-ros-testing ros-foxy-launch-testing ros-foxy-ament-cmake python3-colcon-common-extensions
For the future versions you can use the corresponding ROS2 release.
After installing you need to source ROS 2 to make the environment available in your terminal:
source /opt/ros/foxy/setup.bash
NOTE: You can add the source command to your ~/.bashrc
for automatic loading the ROS2 workspace at boot time.
Required for the colcon build of iceoryx is that the repository is located within a ROS workspace like this:
iceoryx_workspace
└── src
└── iceoryx
├── cmake
├── doc
├── iceoryx_binding_c
├── iceoryx_dds
├── iceoryx_examples
├── iceoryx_meta
├── iceoryx_posh
├── iceoryx_integrationtest
├── iceoryx_utils
└── tools
Test Build and Execution
Go into your iceoryx_workspace folder and do the colcon build:
colcon build
Expected output should be like this: Summary: 13 packages finished [24.1s]
Colcon automatically creates the folders build
, install
and log
.
NOTE: Please make sure that the build folder in src/iceoryx is not present to avoid conflicts with the colcon build.
For executing tests you can use colcon too:
source install/setup.bash # your install directory created by colcon
colcon test --packages-select iceoryx_integrationtest
For the case that a test fails the output look like this
--- stderr: iceoryx_integrationtest
Errors while running CTest
---
Finished <<< iceoryx_integrationtest [7.49s] [ with test failures ]
Summary: 13 packages finished [7.80s]
1 package had stderr output: iceoryx_integrationtest
1 package had test failures: iceoryx_integrationtest
For observing test logs in an error case you can use colcon test-result
:
colcon test-result --all --verbose
With colcon all tests in the iceoryx_integrationtest package are executed. In particular cases you want to execute only one test file. This can be done the following way:
launch_test src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py
An output for a failing test could look like this:
======================================================================
FAIL: test_roudi_ready (iceoryx_integrationtest.TestRouDiProcess)
----------------------------------------------------------------------
Traceback (most recent call last):
File "iceoryx_workspace/src/iceoryx/iceoryx_integrationtest/iceoryx_integrationtest/test_roudi_startup_shutdown.py", line 52, in test_roudi_ready
proc_output.assertWaitFor(
File "/opt/ros/foxy/lib/python3.8/site-packages/launch_testing/io_handler.py", line 146, in assertWaitFor
assert success, 'Waiting for output timed out'
AssertionError: Waiting for output timed out
Open points
- use an alternative way of tracing test information of the test processes without involving iceoryx (e.g. DDS or some tracing lib)
- add gtest for detailed testing in the test processes