forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_e2e_request_response.exp
More file actions
executable file
·38 lines (28 loc) · 1.04 KB
/
test_e2e_request_response.exp
File metadata and controls
executable file
·38 lines (28 loc) · 1.04 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
38
#!/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/request_response/server.py
set id_server $spawn_id
spawn python examples/python/request_response/client.py
#### Test Assertion
expect_output_from $id_server "Server ready to receive requests!"
expect_output "send request 2"
expect_output "received response"
expect_output "send request 3"
expect_output "received response"
show_test_passed