2019-06-18 09:10:05 +02:00
|
|
|
# Copyright 2019 Robert Bosch GmbH
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
|
2019-05-31 16:43:04 +02:00
|
|
|
import unittest
|
2019-06-05 15:35:46 +02:00
|
|
|
|
2019-06-18 15:42:44 +02:00
|
|
|
from tracetools_test.case import TraceTestCase
|
2019-05-31 16:43:04 +02:00
|
|
|
|
|
|
|
|
2019-06-18 15:42:44 +02:00
|
|
|
class TestSubscription(TraceTestCase):
|
2019-06-05 15:35:46 +02:00
|
|
|
|
2019-06-18 15:42:44 +02:00
|
|
|
def __init__(self, *args) -> None:
|
|
|
|
super().__init__(
|
|
|
|
*args,
|
|
|
|
session_name_prefix='session-test-subscription-creation',
|
|
|
|
events_ros=[
|
2019-06-19 15:26:46 +02:00
|
|
|
'ros2:rcl_node_init',
|
2019-06-18 15:42:44 +02:00
|
|
|
'ros2:rcl_subscription_init',
|
|
|
|
'ros2:rclcpp_subscription_callback_added',
|
|
|
|
],
|
|
|
|
nodes=['test_subscription']
|
|
|
|
)
|
2019-05-31 16:43:04 +02:00
|
|
|
|
2019-06-19 15:26:46 +02:00
|
|
|
def test_all(self):
|
|
|
|
# Check events order as set (e.g. sub_init before callback_added)
|
|
|
|
self.assertEventsOrderSet(self._events_ros)
|
|
|
|
|
|
|
|
# Check fields
|
|
|
|
sub_init_events = self.get_events_with_name('ros2:rcl_subscription_init')
|
|
|
|
for event in sub_init_events:
|
|
|
|
self.assertValidHandle(
|
|
|
|
event,
|
|
|
|
['subscription_handle', 'node_handle', 'rmw_subscription_handle'])
|
|
|
|
self.assertValidQueueDepth(event, 'queue_depth')
|
|
|
|
self.assertStringFieldNotEmpty(event, 'topic_name')
|
|
|
|
|
2019-06-19 15:32:33 +02:00
|
|
|
callback_added_events = self.get_events_with_name(
|
|
|
|
'ros2:rclcpp_subscription_callback_added')
|
2019-06-19 15:26:46 +02:00
|
|
|
for event in callback_added_events:
|
|
|
|
self.assertValidHandle(event, ['subscription_handle', 'callback'])
|
|
|
|
|
|
|
|
# Check that the test topic name exists
|
|
|
|
test_sub_init_events = self.get_events_with_field_value(
|
|
|
|
'topic_name',
|
|
|
|
'/the_topic',
|
|
|
|
sub_init_events)
|
2019-06-23 12:56:50 +02:00
|
|
|
self.assertNumEvents(test_sub_init_events, 1, 'cannot find test topic name')
|
2019-06-19 15:26:46 +02:00
|
|
|
test_sub_init_event = test_sub_init_events[0]
|
|
|
|
|
2019-06-21 09:58:33 +02:00
|
|
|
# Check queue_depth value
|
2019-06-23 12:56:50 +02:00
|
|
|
self.assertFieldEquals(
|
|
|
|
test_sub_init_event,
|
|
|
|
'queue_depth',
|
2019-06-21 09:58:33 +02:00
|
|
|
10,
|
|
|
|
'sub_init event does not have expected queue depth value')
|
|
|
|
|
2019-06-19 15:26:46 +02:00
|
|
|
# Check that the node handle matches the node_init event
|
|
|
|
node_init_events = self.get_events_with_name('ros2:rcl_node_init')
|
|
|
|
test_sub_node_init_events = self.get_events_with_procname(
|
|
|
|
'test_subscription',
|
|
|
|
node_init_events)
|
2019-06-23 12:56:50 +02:00
|
|
|
self.assertNumEvents(
|
|
|
|
test_sub_node_init_events,
|
2019-06-19 15:26:46 +02:00
|
|
|
1,
|
|
|
|
'none or more than 1 node_init event')
|
|
|
|
test_sub_node_init_event = test_sub_node_init_events[0]
|
|
|
|
self.assertMatchingField(
|
|
|
|
test_sub_node_init_event,
|
|
|
|
'node_handle',
|
|
|
|
'ros2:rcl_subscription_init',
|
|
|
|
sub_init_events)
|
|
|
|
|
|
|
|
# Check that subscription handle matches with callback_added event
|
|
|
|
self.assertMatchingField(
|
|
|
|
test_sub_init_event,
|
|
|
|
'subscription_handle',
|
|
|
|
None,
|
|
|
|
callback_added_events)
|
2019-05-31 16:43:04 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
unittest.main()
|