【发布时间】:2023-04-08 02:54:01
【问题描述】:
我开发了一个基于 Python 的 CANOE 自动化代码,其中我启动 CANOE,打开配置并加载测试规范并运行它。
现在我想等到测试模块执行完成来记录判决。但不确定如何去做。任何帮助将不胜感激。
"""Execute XML Test Cases without a pass verdict"""
from time import sleep
import win32com.client as win32
import configparser
import time
from pandas.core.computation.expressions import set_test_mode
import pythoncom
testComplete = False
class TestModuleEvents(object):
def OnReportGenerated(self,Success, SourceFullName, GeneratedFullName):
print("Report Generated")
testComplete = True
def OnStop(self, value):
print("Test Module Stopped")
testComplete = True
def OnStart(self):
print("Test Module Started")
testComplete = True
class TestConfigurationEvents(object):
def OnStart(self):
print("Measurement Started")
testComplete = False
def OnStop(self):
print("Measurement Stopped")
testComplete = True
config = configparser.RawConfigParser()
config.read('usecase02_configuration.properties')
configurationPath = config.get('TESTCONFIGURATION', 'configurationpath')
testspec = config.get('TESTCONFIGURATION', 'testspecification')
CANoe = win32.DispatchEx("CANoe.Application")
CANoe.Open(configurationPath)
testSetup = CANoe.Configuration.TestSetup
testSetup.TestEnvironments.Add(testspec)
test_env = testSetup.TestEnvironments.Item('Test Environment')
test_env = win32.CastTo(test_env, "ITestEnvironment2")
print(report.FullName)
# Get the XML TestModule (type <TSTestModule>) in the test setup
test_module = test_env.TestModules.Item('Tester')
CANoe.Measurement.Start()
sleep(5) # Sleep because measurement start is not instantaneous
win32.WithEvents(test_module, TestModuleEvents)
test_module.Start()
# sleep(60)
while test_module.Verdict==0:
time.sleep(1)
# test_module.Stop()
print(test_module.Verdict)
【问题讨论】:
-
您的问题到底是什么?您已经有了启动测试模块的代码以及等待测试模块完成的代码。那么你的问题到底是什么?
-
感谢您查看代码。如果您查看 while 循环
while test_module.Verdict==0: time.sleep(1)我假设默认情况下的判定为 0,通过或失败将变为 1 或 2。但它并没有在 while 中等待,因为默认情况下判定为 1。然后我尝试更改 while 如下所示while not testComplete: time.sleep(1)希望当 testmodule 运行完成时,它会在 TestModuleEvents 中调用 onStop 并设置 testCompleted=true。但这也没有发生。在调用 onStop 和终止 while 时需要支持。