forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_e2e_event.exp
More file actions
executable file
·35 lines (25 loc) · 966 Bytes
/
test_e2e_event.exp
File metadata and controls
executable file
·35 lines (25 loc) · 966 Bytes
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
#!/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 examples/cross-language-end-to-end-tests/common.exp
#### Test Setup
set timeout 10
spawn python examples/python/event/notifier.py
set id_notifier $spawn_id
spawn python examples/python/event/listener.py
#### Test Assertion
expect_output_from $id_notifier "Trigger event with id*"
expect_output "event was triggered with id: TriggerId(3)"
show_test_passed