Skip to content

Commit 12ee5a2

Browse files
authored
[CI] Add testing for discovering commissionables devices (project-chip#24007)
* [CI] Add testing for discovering commissionables devices * Address review comments * Address review comments * Logging exception
1 parent b97da08 commit 12ee5a2

File tree

4 files changed

+107
-19
lines changed

4 files changed

+107
-19
lines changed

.github/workflows/tests.yaml

+13-1
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,19 @@ jobs:
462462
--target linux-x64-java-matter-controller \
463463
build \
464464
"
465-
- name: Run Tests
465+
- name: Run Discover Tests
466+
timeout-minutes: 65
467+
run: |
468+
scripts/run_in_build_env.sh \
469+
'./scripts/tests/run_java_test.py \
470+
--app out/linux-x64-all-clusters-ipv6only-no-ble-no-wifi-tsan-clang-test/chip-all-clusters-app \
471+
--app-args "--discriminator 3840 --interface-id -1" \
472+
--tool-path out/linux-x64-java-matter-controller \
473+
--tool-cluster "discover" \
474+
--tool-args "commissionables" \
475+
--factoryreset \
476+
'
477+
- name: Run Pairing Tests
466478
timeout-minutes: 65
467479
run: |
468480
scripts/run_in_build_env.sh \

scripts/tests/java/commissioning_test.py

+6-9
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
# limitations under the License.
1818
#
1919

20-
# Commissioning test.
2120
import logging
2221
import os
2322
import sys
@@ -59,7 +58,7 @@ def __init__(self, thread_list: typing.List[threading.Thread], queue: queue.Queu
5958

6059
logging.basicConfig(level=logging.INFO)
6160

62-
def TestOnnetworkLong(self, nodeid, setuppin, discriminator, timeout):
61+
def TestCmdOnnetworkLong(self, nodeid, setuppin, discriminator, timeout):
6362
java_command = self.command + ['pairing', 'onnetwork-long', nodeid, setuppin, discriminator, timeout]
6463
logging.info(f"Execute: {java_command}")
6564
java_process = subprocess.Popen(
@@ -70,10 +69,8 @@ def TestOnnetworkLong(self, nodeid, setuppin, discriminator, timeout):
7069
def RunTest(self):
7170
logging.info("Testing onnetwork-long pairing")
7271
if self.command_name == 'onnetwork-long':
73-
java_exit_code = self.TestOnnetworkLong(self.nodeid, self.setup_payload, self.discriminator, self.timeout)
74-
if java_exit_code != 0:
75-
logging.error("Testing onnetwork-long pairing failed with error %r" % java_exit_code)
76-
return java_exit_code
77-
78-
# Testing complete without errors
79-
return 0
72+
code = self.TestCmdOnnetworkLong(self.nodeid, self.setup_payload, self.discriminator, self.timeout)
73+
if code != 0:
74+
raise Exception(f"Testing onnetwork-long pairing failed with error {code}")
75+
else:
76+
raise Exception(f"Unsupported command {self.command_name}")

scripts/tests/java/discover_test.py

+71
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
#!/usr/bin/env python3
2+
3+
#
4+
# Copyright (c) 2022 Project CHIP Authors
5+
# All rights reserved.
6+
#
7+
# Licensed under the Apache License, Version 2.0 (the "License");
8+
# you may not use this file except in compliance with the License.
9+
# You may obtain a copy of the License at
10+
#
11+
# http://www.apache.org/licenses/LICENSE-2.0
12+
#
13+
# Unless required by applicable law or agreed to in writing, software
14+
# distributed under the License is distributed on an "AS IS" BASIS,
15+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
# See the License for the specific language governing permissions and
17+
# limitations under the License.
18+
#
19+
20+
import logging
21+
import os
22+
import sys
23+
import asyncio
24+
import queue
25+
import subprocess
26+
import threading
27+
import typing
28+
import argparse
29+
from colorama import Fore, Style
30+
from java.base import DumpProgramOutputToQueue
31+
32+
33+
class DiscoverTest:
34+
def __init__(self, thread_list: typing.List[threading.Thread], queue: queue.Queue, cmd: [], args: str):
35+
self.thread_list = thread_list
36+
self.queue = queue
37+
self.command = cmd
38+
39+
parser = argparse.ArgumentParser(description='Process discover arguments.')
40+
41+
parser.add_argument('command', help="Command name")
42+
parser.add_argument('-n', '--nodeid', help="DNS-SD name corresponding with the given node ID", default='1')
43+
parser.add_argument('-f', '--fabricid', help="DNS-SD name corresponding with the given fabric ID", default='1')
44+
parser.add_argument('-p', '--paa-trust-store-path', dest='paa_trust_store_path',
45+
help="Path that contains valid and trusted PAA Root Certificates")
46+
47+
args = parser.parse_args(args.split())
48+
49+
self.command_name = args.command
50+
self.nodeid = args.nodeid
51+
self.fabricid = args.fabricid
52+
53+
logging.basicConfig(level=logging.INFO)
54+
55+
def TestCmdCommissionables(self):
56+
java_command = self.command + ['discover', 'commissionables']
57+
logging.info(f"Execute: {java_command}")
58+
java_process = subprocess.Popen(
59+
java_command, stdout=subprocess.PIPE, stderr=subprocess.PIPE)
60+
DumpProgramOutputToQueue(self.thread_list, Fore.GREEN + "JAVA " + Style.RESET_ALL, java_process, self.queue)
61+
return java_process.wait()
62+
63+
def RunTest(self):
64+
logging.info("Testing discovering commissionables devices")
65+
66+
if self.command_name == 'commissionables':
67+
code = self.TestCmdCommissionables()
68+
if code != 0:
69+
raise Exception(f"Testing command commissionables failed with error {code}")
70+
else:
71+
raise Exception(f"Unsupported command {self.command_name}")

scripts/tests/run_java_test.py

+17-9
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@
2828
import sys
2929
from java.base import DumpProgramOutputToQueue
3030
from java.commissioning_test import CommissioningTest
31+
from java.discover_test import DiscoverTest
3132
from colorama import Fore, Style
3233

3334

@@ -87,10 +88,20 @@ def main(app: str, app_args: str, tool_path: str, tool_cluster: str, tool_args:
8788
logging.info("Testing pairing cluster")
8889

8990
test = CommissioningTest(log_cooking_threads, log_queue, command, tool_args)
90-
controller_exit_code = test.RunTest()
91-
92-
if controller_exit_code != 0:
93-
logging.error("Test script exited with error %r" % test_script_exit_code)
91+
try:
92+
test.RunTest()
93+
except Exception as e:
94+
logging.error(e)
95+
sys.exit(1)
96+
elif tool_cluster == 'discover':
97+
logging.info("Testing discover cluster")
98+
99+
test = DiscoverTest(log_cooking_threads, log_queue, command, tool_args)
100+
try:
101+
test.RunTest()
102+
except Exception as e:
103+
logging.error(e)
104+
sys.exit(1)
94105

95106
app_exit_code = 0
96107
if app_process:
@@ -103,11 +114,8 @@ def main(app: str, app_args: str, tool_path: str, tool_cluster: str, tool_args:
103114
for thread in log_cooking_threads:
104115
thread.join()
105116

106-
if controller_exit_code != 0:
107-
sys.exit(controller_exit_code)
108-
else:
109-
# We expect both app and controller should exit with 0
110-
sys.exit(app_exit_code)
117+
# We expect app should exit with 0
118+
sys.exit(app_exit_code)
111119

112120

113121
if __name__ == '__main__':

0 commit comments

Comments
 (0)