forked from eclipse-iceoryx/iceoryx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
iox-eclipse-iceoryx#378 test icedelivery_in_c example
Signed-off-by: Dietrich Krönke <[email protected]>
- Loading branch information
Showing
5 changed files
with
90 additions
and
0 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
File renamed without changes.
86 changes: 86 additions & 0 deletions
86
iceoryx_integrationtest/iceoryx_integrationtest/test_icedelivery_in_c_example.py
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,86 @@ | ||
# Copyright (c) 2021 by Apex.AI Inc. All rights reserved. | ||
# | ||
# Licensed 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. | ||
# | ||
# SPDX-License-Identifier: Apache-2.0 | ||
|
||
import os | ||
|
||
import unittest | ||
|
||
import launch | ||
from launch_ros.substitutions import ExecutableInPackage | ||
import launch_testing | ||
import launch_testing.actions | ||
from launch_testing.asserts import assertSequentialStdout | ||
|
||
import pytest | ||
|
||
|
||
@pytest.mark.launch_test | ||
def generate_test_description(): | ||
|
||
proc_env = os.environ.copy() | ||
colcon_prefix_path = os.environ.get('COLCON_PREFIX_PATH', '') | ||
|
||
roudi_executable = ExecutableInPackage( | ||
package='iceoryx_integrationtest', executable='iox-roudi') | ||
roudi_process = launch.actions.ExecuteProcess( | ||
cmd=[roudi_executable, '-l', 'debug'], | ||
env=proc_env, output='screen', | ||
sigterm_timeout='20' | ||
) | ||
|
||
publisher_c_executable = os.path.join( | ||
colcon_prefix_path, | ||
'example_icedelivery_in_c/bin/', | ||
'iox-c-publisher' | ||
) | ||
publisher_c_process = launch.actions.ExecuteProcess( | ||
cmd=[publisher_c_executable], | ||
env=proc_env, output='screen') | ||
|
||
subscriber_c_executable = os.path.join( | ||
colcon_prefix_path, | ||
'example_icedelivery_in_c/bin/', | ||
'iox-c-subscriber' | ||
) | ||
subscriber_c_process = launch.actions.ExecuteProcess( | ||
cmd=[subscriber_c_executable], | ||
env=proc_env, output='screen') | ||
|
||
return launch.LaunchDescription([ | ||
publisher_c_process, | ||
subscriber_c_process, | ||
roudi_process, | ||
launch_testing.actions.ReadyToTest() | ||
]), {'roudi_process': roudi_process, 'publisher_c_process': publisher_c_process, 'subscriber_c_process': subscriber_c_process} | ||
|
||
# These tests will run concurrently with the dut process. After this test is done, | ||
# the launch system will shut down RouDi | ||
class TestIcedeliveryInCExample(unittest.TestCase): | ||
def test_roudi_ready(self, proc_output): | ||
proc_output.assertWaitFor( | ||
'RouDi is ready for clients', timeout=45, stream='stdout') | ||
|
||
def test_icedelivery_in_c_data_exchange(self, proc_output): | ||
proc_output.assertWaitFor( | ||
'Sent value: 5', timeout=45, stream='stdout') | ||
proc_output.assertWaitFor( | ||
'Got value: 5', timeout=45, stream='stdout') | ||
|
||
# These tests run after shutdown and examine the stdout log | ||
@launch_testing.post_shutdown_test() | ||
class TestIcedeliveryInCExampleExitCodes(unittest.TestCase): | ||
def test_exit_code(self, proc_info): | ||
launch_testing.asserts.assertExitCodes(proc_info) |