forked from eclipse-iceoryx/iceoryx2
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_e2e_service_attributes.exp
More file actions
executable file
·41 lines (30 loc) · 1.21 KB
/
test_e2e_service_attributes.exp
File metadata and controls
executable file
·41 lines (30 loc) · 1.21 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
39
40
41
#!/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/service_attributes/creator.py
# wait until ready
expect_output "my_funky_service_name"
spawn python examples/python/service_attributes/opener.py
set id_opener $spawn_id
spawn python examples/python/service_attributes/incompatible.py
set id_incompatible $spawn_id
#### Test Assertion
expect_output_from $id_opener "camera_resolution"
expect_output_from $id_incompatible "camera_resolution: 3840x2160 -> IncompatibleAttributes"
expect_output_from $id_incompatible "camera_type -> IncompatibleAttributes"
show_test_passed