|
| 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}") |
0 commit comments