Skip to content

Commit 79737d5

Browse files
arkqDamMicSzmrestyled-commits
authored
[Tizen] CI workflow for running QEMU-based tests (#24871)
* Uniform way for testing targets * Add README * [Tizen] Add QEMU runner with lighting app tests * Get default Tizen SDK location from env vars * Revert "Uniform way for testing targets" This reverts commit a04dabd. * Add Tizen test driver app to the build_examples.py * Tizen QEMU tests workflow * Update Tizen QEMU-based tests documentation * Enable external network support in QEMU * Update testdata for build example targets * Generate Tizen QEMU-base test target in a single step * Restyled by prettier-markdown * Fix flashbundle copy after changing tpk output dir * Use chip-build-tizen-qemu:0.6.39 as 0.6.40 is not on dockerhub yet * Drop concept of QEMU as a Tizen board and simply use ARM as a generic name for all ARM-based boards. --------- Co-authored-by: Damian Michalak-Szmaciński <d.michalak@samsung.com> Co-authored-by: Restyled.io <commits@restyled.io>
1 parent 6514c11 commit 79737d5

File tree

14 files changed

+271
-30
lines changed

14 files changed

+271
-30
lines changed

.github/workflows/qemu.yaml

+45-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@ env:
2727
CHIP_NO_LOG_TIMESTAMPS: true
2828

2929
jobs:
30-
qemu:
30+
31+
qemu-esp32:
3132
name: ESP32
3233
timeout-minutes: 85
3334

@@ -94,3 +95,46 @@ jobs:
9495
with:
9596
name: qemu-esp32-logs
9697
path: /tmp/log_output
98+
99+
qemu-tizen:
100+
name: Tizen
101+
102+
runs-on: ubuntu-latest
103+
if: github.actor != 'restyled-io[bot]'
104+
105+
container:
106+
image: connectedhomeip/chip-build-tizen-qemu:0.6.39
107+
volumes:
108+
- "/tmp/log_output:/tmp/test_logs"
109+
110+
steps:
111+
- uses: Wandalen/wretry.action@v1.0.36
112+
name: Checkout
113+
with:
114+
action: actions/checkout@v3
115+
with: |
116+
token: ${{ github.token }}
117+
attempt_limit: 3
118+
attempt_delay: 2000
119+
- name: Checkout submodules
120+
run: scripts/checkout_submodules.py --shallow --platform tizen
121+
122+
- name: Bootstrap cache
123+
uses: actions/cache@v3
124+
timeout-minutes: 10
125+
with:
126+
key: ${{ runner.os }}-env-${{ hashFiles('scripts/setup/*', 'third_party/pigweed/**') }}
127+
path: |
128+
.environment
129+
build_overrides/pigweed_environment.gni
130+
- name: Bootstrap
131+
timeout-minutes: 25
132+
run: scripts/build/gn_bootstrap.sh
133+
134+
- name: Build and run tests
135+
run: |
136+
./scripts/run_in_build_env.sh \
137+
"./scripts/build/build_examples.py \
138+
--target tizen-arm-tests-no-ble \
139+
build
140+
"

BUILD.gn

+11-1
Original file line numberDiff line numberDiff line change
@@ -668,12 +668,21 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
668668

669669
if (enable_tizen_lighting_app) {
670670
group("tizen_lighting_app") {
671-
deps = [ "${chip_root}/examples/lighting-app/tizen/(${chip_root}/build/toolchain/tizen:tizen_arm)" ]
671+
deps = [ "${chip_root}/examples/lighting-app/tizen(${chip_root}/build/toolchain/tizen:tizen_arm)" ]
672672
}
673673

674674
extra_build_deps += [ ":tizen_lighting_app" ]
675675
}
676676

677+
if (enable_tizen_builds) {
678+
group("check:tizen") {
679+
testonly = true
680+
deps = [ "${chip_root}/src/test_driver/tizen/integration-tests:check" ]
681+
}
682+
683+
extra_check_deps += [ ":check:tizen" ]
684+
}
685+
677686
if (enable_mw320_shell_build) {
678687
group("mw320_shell") {
679688
deps = [ "${chip_root}/examples/shell/mw320(${chip_root}/config/mw320/toolchain:mw320_shell)" ]
@@ -703,6 +712,7 @@ if (current_toolchain != "${dir_pw_toolchain}/default:default") {
703712
}
704713

705714
group("check") {
715+
testonly = true
706716
deps = extra_check_deps
707717
foreach(_build, builds) {
708718
deps += [ get_label_info(_build, "dir") + ":check_" +

build/config/tizen/config.gni

+4-4
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
# limitations under the License.
1414

1515
declare_args() {
16-
# Location of The Tizen sysroot
17-
tizen_sdk_sysroot = ""
16+
# Location of Tizen SDK
17+
tizen_sdk_root = getenv("TIZEN_SDK_ROOT")
1818

19-
# Location of the Tizen SDK.
20-
tizen_sdk_root = ""
19+
# Location of Tizen SDK sysroot
20+
tizen_sdk_sysroot = getenv("TIZEN_SDK_SYSROOT")
2121
}

scripts/build/build/targets.py

+1-5
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,6 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
import os
16-
import re
17-
from itertools import combinations
18-
from typing import Any, List, Optional
19-
2015
from builders.ameba import AmebaApp, AmebaBoard, AmebaBuilder
2116
from builders.android import AndroidApp, AndroidBoard, AndroidBuilder, AndroidProfile
2217
from builders.bouffalolab import BouffalolabApp, BouffalolabBoard, BouffalolabBuilder
@@ -477,6 +472,7 @@ def BuildTizenTarget():
477472
TargetPart('all-clusters-minimal', app=TizenApp.ALL_CLUSTERS_MINIMAL),
478473
TargetPart('chip-tool', app=TizenApp.CHIP_TOOL),
479474
TargetPart('light', app=TizenApp.LIGHT),
475+
TargetPart('tests', app=TizenApp.TESTS),
480476
])
481477

482478
target.AppendModifier(name="no-ble", enable_ble=False)

scripts/build/builders/tizen.py

+18-8
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,15 @@
2020

2121
from .gn import GnBuilder
2222

23+
Board = namedtuple('Board', ['target_cpu'])
2324
App = namedtuple('App', ['name', 'source', 'outputs'])
2425
Tool = namedtuple('Tool', ['name', 'source', 'outputs'])
25-
Board = namedtuple('Board', ['target_cpu'])
26+
TestDriver = namedtuple('TestDriver', ['name', 'source'])
27+
28+
29+
class TizenBoard(Enum):
30+
31+
ARM = Board('arm')
2632

2733

2834
class TizenApp(Enum):
@@ -49,11 +55,19 @@ class TizenApp(Enum):
4955
('chip-tool',
5056
'chip-tool.map'))
5157

58+
TESTS = TestDriver(
59+
'tests',
60+
'src/test_driver/tizen')
61+
5262
@property
5363
def is_tpk(self):
5464
"""If True, this app is a TPK."""
5565
return isinstance(self.value, App)
5666

67+
@property
68+
def package(self):
69+
return f'{self.package_name}-{self.package_version}.tpk'
70+
5771
@property
5872
def package_name(self):
5973
return self.manifest.get('package')
@@ -66,11 +80,6 @@ def parse_manifest(self, manifest: str):
6680
self.manifest = ET.parse(manifest).getroot()
6781

6882

69-
class TizenBoard(Enum):
70-
71-
ARM = Board('arm')
72-
73-
7483
class TizenBuilder(GnBuilder):
7584

7685
def __init__(self,
@@ -143,7 +152,8 @@ def build_outputs(self):
143152
def flashbundle(self):
144153
if not self.app.is_tpk:
145154
return {}
146-
tpk = f'{self.app.package_name}-{self.app.package_version}.tpk'
147155
return {
148-
tpk: os.path.join(self.output_dir, 'package', 'out', tpk),
156+
self.app.package: os.path.join(self.output_dir,
157+
self.app.package_name, 'out',
158+
self.app.package),
149159
}

scripts/build/testdata/all_targets_linux_x64.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,6 @@ mw320-all-clusters-app
1818
nrf-{nrf5340dk,nrf52840dk,nrf52840dongle}-{all-clusters,all-clusters-minimal,lock,light,light-switch,shell,pump,pump-controller,window-covering}[-rpc]
1919
nrf-native-posix-64-tests
2020
qpg-qpg6105-{lock,light,shell,persistent-storage}
21-
tizen-arm-{all-clusters,all-clusters-minimal,chip-tool,light}[-no-ble][-no-wifi][-asan][-ubsan]
21+
tizen-arm-{all-clusters,all-clusters-minimal,chip-tool,light,tests}[-no-ble][-no-wifi][-asan][-ubsan]
2222
telink-tlsr9518adk80d-{all-clusters,all-clusters-minimal,contact-sensor,light,light-switch,lock,ota-requestor,pump,pump-controller,thermostat}[-rpc]
2323
openiotsdk-{shell,lock}

src/test_driver/tizen/.gn

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Copyright (c) 2020 Project CHIP Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
import("//build_overrides/build.gni")
16+
17+
# The location of the build configuration file.
18+
buildconfig = "${build_root}/config/BUILDCONFIG.gn"
19+
20+
# CHIP uses angle bracket includes.
21+
check_system_includes = true
22+
23+
default_args = {
24+
target_os = "tizen"
25+
}

src/test_driver/tizen/BUILD.gn

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright (c) 2020 Project CHIP Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
group("check") {
16+
testonly = true
17+
deps = [ "integration_tests/lighting-app:check" ]
18+
}

src/test_driver/tizen/README.md

+54
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
# CHIP Tests on QEMU
2+
3+
Tizen runs mostly on ARM architecture. In order to run tests on Tizen, we need
4+
to use QEMU. This document describes how to build and run CHIP tests on QEMU.
5+
6+
## Obtaining Tizen QEMU Docker Image
7+
8+
All tools and dependencies required to build and run tests on Tizen on QEMU are
9+
included in the `chip-build-tizen-qemu` docker image. One can pull the docker
10+
image from hub.docker.com or build it locally using the provided Dockerfile in
11+
`integrations/docker/images/chip-build-tizen-qemu` directory.
12+
13+
```sh
14+
# Pull the image from hub.docker.com
15+
docker pull connectedhomeip/chip-build-tizen-qemu:latest
16+
```
17+
18+
## Building and Running Tests on QEMU
19+
20+
All steps described below should be done inside the docker container.
21+
22+
```sh
23+
docker run -it --rm --name chip-tizen-qemu \
24+
connectedhomeip/chip-build-tizen-qemu:latest /bin/bash
25+
```
26+
27+
### Clone the connectedhomeip repository
28+
29+
```sh
30+
git clone https://github.com/project-chip/connectedhomeip.git
31+
```
32+
33+
### Activate the environment
34+
35+
```sh
36+
cd connectedhomeip
37+
source scripts/activate.sh
38+
```
39+
40+
### Generate and run test target
41+
42+
As for now, Tizen QEMU-based test driver does not support BLE. In order to
43+
disable BLE, one needs to pass `chip_config_network_layer_ble=false` to the args
44+
argument of the `gn gen` command.
45+
46+
```sh
47+
# Generate test target
48+
gn gen --check --fail-on-unused-args \
49+
--root="$PWD/src/test_driver/tizen" \
50+
--args="target_os=\"tizen\" target_cpu=\"arm\" chip_config_network_layer_ble=false" \
51+
out/tizen-check
52+
# Run Tizen QEMU-based tests
53+
ninja -C out/tizen-check check
54+
```

src/test_driver/tizen/build_overrides

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../examples/build_overrides
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
# Copyright (c) 2020 Project CHIP Authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
import("//build_overrides/chip.gni")
16+
import("//build_overrides/tizen.gni")
17+
18+
import("${tizen_sdk_build_root}/tizen_sdk.gni")
19+
20+
tizen_qemu_mkisofs("test-runner") {
21+
runner = "runner.sh"
22+
23+
# Build applications used in the test.
24+
deps = [
25+
"${chip_root}/examples/chip-tool:chip-tool",
26+
"${chip_root}/examples/lighting-app/tizen:chip-lighting-app:tpk",
27+
]
28+
29+
# Use artifacts created by the dependencies.
30+
assets = [
31+
rebase_path("${root_build_dir}/chip-tool"),
32+
rebase_path(
33+
"${root_build_dir}/org.tizen.matter.example.lighting/out/org.tizen.matter.example.lighting-1.0.0.tpk"),
34+
]
35+
}
36+
37+
tizen_qemu_run("check") {
38+
# Enable network support, so Tizen can obtain current date/time from the
39+
# network. Correct date/time is required for the commissioning process -
40+
# attestation will fail otherwise.
41+
virtio_net = true
42+
43+
deps = [ ":test-runner" ]
44+
mkisofs_outputs = get_target_outputs(":test-runner")
45+
iso_image = rebase_path(mkisofs_outputs[0])
46+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
#!/bin/sh
2+
3+
#
4+
# Copyright (c) 2021 Project CHIP Authors
5+
#
6+
# Licensed under the Apache License, Version 2.0 (the "License");
7+
# you may not use this file except in compliance with the License.
8+
# You may obtain a copy of the License at
9+
#
10+
# http://www.apache.org/licenses/LICENSE-2.0
11+
#
12+
# Unless required by applicable law or agreed to in writing, software
13+
# distributed under the License is distributed on an "AS IS" BASIS,
14+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15+
# See the License for the specific language governing permissions and
16+
# limitations under the License.
17+
#
18+
19+
set -e
20+
21+
# Print CHIP logs on stdout
22+
dlogutil CHIP &
23+
24+
# Install lighting Matter app
25+
pkgcmd -i -t tpk -p /mnt/chip/org.tizen.matter.*
26+
# Launch lighting Matter app
27+
app_launcher -s org.tizen.matter.example.lighting
28+
29+
# TEST: pair app using network commissioning
30+
/mnt/chip/chip-tool pairing onnetwork 1 20202021
31+
# TEST: turn on light
32+
/mnt/chip/chip-tool onoff on 1 1
33+
# TEST: turn off light
34+
/mnt/chip/chip-tool onoff off 1 1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
../../../..

0 commit comments

Comments
 (0)