-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added python file to run all tests Used monitor function to get the adaptor logs
- Loading branch information
Showing
5 changed files
with
85 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
#!/usr/bin/env python3 | ||
#** ***************************************************************************** | ||
# * | ||
# * If not stated otherwise in this file or this component's LICENSE file the | ||
# * following copyright and licenses apply: | ||
# * | ||
# * Copyright 2024 RDK Management | ||
# * | ||
# * Licensed under the Apache License, Version 2.0 (the "License"); | ||
# * you may not use this file except in compliance with the License. | ||
# * You may obtain a copy of the License at | ||
# * | ||
# * | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# * | ||
# * Unless required by applicable law or agreed to in writing, software | ||
# * distributed under the License is distributed on an "AS IS" BASIS, | ||
# * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# * See the License for the specific language governing permissions and | ||
# * limitations under the License. | ||
# * | ||
#* ****************************************************************************** | ||
|
||
import os | ||
import sys | ||
import importlib | ||
from pathlib import Path | ||
|
||
dir_path = os.path.dirname(os.path.realpath(__file__)) | ||
sys.path.append(os.path.join(dir_path)) | ||
sys.path.append(os.path.join(dir_path, "../")) | ||
sys.path.append(os.path.join(dir_path, "../raft")) | ||
|
||
from raft.framework.core.logModule import logModule | ||
|
||
def Runall_L3(): | ||
skipTests = [] | ||
# Summery log for all the tests | ||
hdmiCECSummerLog = logModule("hdmiCEC_Sink", level=logModule.INFO) | ||
|
||
testDirectory = Path(dir_path) | ||
|
||
# Find all test modules in the directory | ||
test_modules = sorted(testDirectory.glob("hdmiCEC_test*.py")) | ||
|
||
# Run each test by dynamically importing and instantiating | ||
for test_module_path in test_modules: | ||
# Construct module name from file name, excluding .py extension | ||
module_name = test_module_path.stem | ||
skip = False | ||
for skipTest in skipTests: | ||
if skipTest in module_name: | ||
skip = True | ||
break | ||
if skip: | ||
continue | ||
try: | ||
# Dynamically import the module | ||
module = importlib.import_module(module_name) | ||
|
||
# Dynamically access the test class from the module | ||
# Assuming each test file has only one class named the same as the module | ||
test_class = getattr(module, module_name) | ||
|
||
# Instantiate and run the test | ||
test_instance = test_class(hdmiCECSummerLog) | ||
test_instance.run(False) | ||
|
||
except (ImportError, AttributeError) as e: | ||
hdmiCECSummerLog.error(f"Failed to import {module_name}: {e}") | ||
|
||
if __name__ == '__main__': | ||
Runall_L3() |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters