forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_e2e_discovery.exp
More file actions
executable file
·37 lines (27 loc) · 1.18 KB
/
test_e2e_discovery.exp
File metadata and controls
executable file
·37 lines (27 loc) · 1.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#!/usr/bin/expect
# Copyright (c) 2025 Contributors to the Eclipse Foundation
#
# See the NOTICE file(s) distributed with this work for additional
# information regarding copyright ownership.
#
# This program and the accompanying materials are made available under the
# terms of the Apache Software License 2.0 which is available at
# https://www.apache.org/licenses/LICENSE-2.0, or the MIT license
# which is available at https://opensource.org/licenses/MIT.
#
# SPDX-License-Identifier: Apache-2.0 OR MIT
#### Common Setup
set REPO_ROOT [exec git rev-parse --show-toplevel]
cd ${REPO_ROOT}
source ${REPO_ROOT}/internal/end-to-end-testing/common.exp
#### Test Setup and Assertion
set timeout 10
spawn target/ff/cc/build/examples/c/publish_subscribe/example_c_publish_subscribe_subscriber
expect_output "Subscriber ready to receive data!"
spawn target/ff/cc/build/examples/c/discovery/example_c_discovery
expect_output "Found Service: My/Funk/ServiceName*"
spawn target/ff/cc/build/examples/c/event/example_c_event_listener
expect_output "Listener ready to receive events!"
spawn target/ff/cc/build/examples/c/discovery/example_c_discovery
expect_output "Found Service: MyEventName*"
show_test_passed