forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_e2e_blackbboard.exp
More file actions
executable file
·37 lines (27 loc) · 1006 Bytes
/
test_e2e_blackbboard.exp
File metadata and controls
executable file
·37 lines (27 loc) · 1006 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
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
set timeout 10
spawn python examples/python/blackboard/creator.py
set id_creator $spawn_id
# wait until ready
expect_output "Blackboard created."
spawn python examples/python/blackboard/opener.py
#### Test Assertion
expect_output_from $id_creator "Write new value for key 0: 4"
expect_output "key: 0, value: 4"
show_test_passed