python通过COM接口调用CANoe工具实现相关操作以及使用API接口跑CAPL的自动化脚本

使用Python来操作CANoe(一个用于汽车总线系统设计、分析、仿真和测试的强大工具),你可以借助win32com库来实现。这涉及到使用COM接口来控制CANoe。以下是一个示例,演示了如何使用Python通过win32com库来操作CANoe。

一、前提条件
安装Python和win32com库:

确保你已经安装了Python环境。
安装pywin32库,可以通过pip install pywin32来安装。
确保CANoe已安装并配置了COM接口。

示例代码
下面的代码展示了如何启动CANoe,打开一个CANoe工程,并开始仿真。

import win32com.clientdef main():# 创建CANoe应用程序对象canoe = win32com.client.Dispatch('CANoe.Application')# 打开一个CANoe工程project_path = r"C:\Path\To\Your\CANoe\Project\YourProject.cfg"canoe.Open(project_path)# 检查工程是否成功打开if canoe.Configuration is None:print("Failed to open CANoe project.")return# 启动仿真canoe.Measurement.Start()# 等待仿真运行while not canoe.Measurement.Running:passprint("Simulation started.")# 进行一些操作,示例中等待10秒import timetime.sleep(10)# 停止仿真canoe.Measurement.Stop()# 关闭CANoe应用程序canoe.Quit()print("Simulation stopped and CANoe application closed.")if __name__ == "__main__":main()

二、详细步骤解释
导入库:

import win32com.client: 导入win32com.client库,用于与COM对象进行交互。
创建CANoe应用程序对象:

canoe = win32com.client.Dispatch(‘CANoe.Application’): 创建CANoe应用程序对象,这相当于启动CANoe。
打开CANoe工程:

canoe.Open(project_path): 打开指定路径的CANoe工程文件。请确保替换project_path为你实际的工程文件路径。
检查工程是否成功打开:

if canoe.Configuration is None: 检查工程是否成功打开,如果未成功打开,输出错误信息并返回。
启动仿真:

canoe.Measurement.Start(): 启动CANoe仿真。
while not canoe.Measurement.Running: 等待仿真开始运行。
执行操作:

在仿真运行期间,可以执行一些操作,例如发送消息、记录数据等。示例代码中只是等待10秒。
停止仿真:

canoe.Measurement.Stop(): 停止CANoe仿真。
关闭CANoe应用程序:

canoe.Quit(): 关闭CANoe应用程序。
三、注意事项
确保CANoe的COM接口已正确配置并可以被外部程序访问。
路径和文件名应根据你的实际项目进行调整。
可以添加更多的功能,例如发送和接收CAN消息、记录日志等,具体取决于你的需求。
通过上述步骤,你可以使用Python脚本来自动化和控制CANoe的操作,极大地提高了测试和仿真的效率。

四、CANoe API Code
工作中由我自己开发的脚本源码,用于CANoe的工具开发,欢迎大家借鉴!!!

# -*- coding:utf8 -*-import time
import os
import subprocess
import chardet
from win32com.client import *
from win32com.client.connect import *def DoEvents():pythoncom.PumpWaitingMessages()time.sleep(.5)def DoEventsUntil(cond):t= time.perf_counter()while not cond():DoEvents()if time.perf_counter() -t > 180:print(time.perf_counter() -t)breakdef KILL_CANOE():# command = 'taskkill /F /IM CANoe64.exe'# os.system(command)# time.sleep(3)killcanoeprocess_cmd = "taskkill /F /IM CANoe64.exe"stdout, stderr = subprocess.Popen(killcanoeprocess_cmd, stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()stdout_e = chardet.detect(stdout)["encoding"]stderr_e = chardet.detect(stderr)["encoding"]if stdout_e is None:stdout_s = ""else:stdout_s = stdout.decode(stdout_e).strip()if stderr_e is None:stderr_s = ""else:stderr_s = stderr.decode(stderr_e).strip()# stderr_s = str(stderr, encoding="UTF-8").strip()# stdout_s = str(stdout, encoding="UTF-8").strip()if stderr_s == "" and ("SUCCESS" in stdout_s or "成功" in stdout_s):return Trueelse:return Falseclass CanoeSync(object):"""Wrapper class for CANoe Application object"""AppOpened = FalseAppStopped = FalseStarted = FalseStopped = FalseReport_Generate = FalseConfigPath = ""def __init__(self):app = DispatchEx('CANoe.Application')# app.Configuration.Modified = Falsever = app.Versionprint('Loaded CANoe version ',ver.major, '.',ver.minor, '.',ver.Build, '...', sep='')self.App = appself.Measurement = app.Measurementself.Running = lambda: self.Measurement.Runningself.WaitForStart = lambda: DoEventsUntil(lambda: CanoeSync.Started)self.WaitForStop = lambda: DoEventsUntil(lambda: CanoeSync.Stopped)self.WaitForAppStart = lambda: DoEventsUntil(lambda: CanoeSync.AppOpened)self.WaitForAppStop = lambda: DoEventsUntil(lambda: CanoeSync.AppStopped)# self.WaitForGenReport = lambda: DoEventsUntil(lambda: CanoeSync.Report_Generate)WithEvents(self.App.Measurement, CanoeMeasurementEvents)WithEvents(self.App, CanoeAppEvents)def Load(self, cfgPath):# current dir must point to the script filecfg = os.path.join(os.curdir, cfgPath)cfg = os.path.abspath(cfg)print('Opening: ', cfg)self.ConfigPath = os.path.dirname(cfg)self.Configuration = self.App.Configurationself.App.Open(cfg)self.WaitForAppStart()def LoadTestSetup(self, testsetup):self.TestSetup = self.App.Configuration.TestSetuppath = os.path.join(self.ConfigPath, testsetup)testenv = self.TestSetup.TestEnvironments.Add(path)testenv = CastTo(testenv, "ITestEnvironment2")# TestModules property to access the test modulesself.TestModules = []self.TraverseTestItem(testenv, lambda tm: self.TestModules.append(CanoeTestModule(tm)))def LoadTestConfiguration(self, testcfgname, testunits):""" Adds a test configuration and initialize it with a list of existing test units """tc = self.App.Configuration.TestConfigurations.Add()tc.Name = testcfgnametus = CastTo(tc.TestUnits, "ITestUnits2")for tu in testunits:tus.Add(tu)# TestConfigs property to access the test configurationself.TestConfigs = [CanoeTestConfiguration(tc)]def Start_bak(self):if not self.Running():self.Measurement.Start()self.WaitForStart()# def CANOE_WriteWindows(self,path):#     app = DispatchEx('CANoe.Application')#     # app.UI.Write.Output("Hello world!")#     # path = "D:\System.TXT"#     app.UI.Write.EnableOutputFile(path),0#     # print(1421,app.UI.Write.Copy())def Start(self):if not self.Running():self.Measurement.Start()self.WaitForStart()# print(110)if not self.Running():# command = 'taskkill /F /IM CANoe64.exe'# os.system(command)print(open('CANOE 启动失败,请检查工程和环境配置是否报错'))# sys.exit(1)def Stop(self):if self.Running():# self.WaitForGenReport()# self.Measurement.Stop() #Canoe old stop interfaceself.Measurement.StopEx()self.WaitForStop()# self.App.Configuration.Modified = False# self.App.Quit()def savecanoecfg(self):self.App.Configuration.Save()def savetestenvironment(self,testenvindex=1):testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item(testenvindex)testenvironment = CastTo(testenvironment, "ITestEnvironment")testenvironment.Save()def app_quit(self):# self.App.Configuration.Modified = Falseself.App.Quit()self.WaitForAppStop()def checkTestModulesorTestConfigs(self):testmodule_tag = Falsetestconfig_tag = Falsetestenvs = self.App.Configuration.TestSetup.TestEnvironmentstestenvs_count = testenvs.Countfor c in range(1,testenvs_count+1):testenvironment = testenvs.Item(c)if testenvironment.Enabled is True:print("testenvironment:%s enabled" % testenvironment.Name)testenvironment = CastTo(testenvironment, "ITestEnvironment2")testmodules = testenvironment.TestModulestestmodules_count = testmodules.Countfor m in range(1,testmodules_count+1):testmodule = testmodules.Item(m)if testmodule.Enabled is True:print("testmodule:%s enabled" % testmodule.Name)testmodules_Modules = testmodule.Modulestestmodules_Modules_Count = testmodules_Modules.Count# print("testmodules_Modules_Count:",testmodules_Modules_Count)for m in range(1, testmodules_Modules_Count + 1):testmodules_Modules_item = testmodules_Modules.Item(m)if testmodules_Modules_item.Enabled is True:print("testmodules_Modules_item:%s enabled" % testmodules_Modules_item.Name)testmodule_tag = Truebreakif testmodule_tag is True:breaktestmodules_Sequence = testmodule.Sequence# if testmodules_Sequence:testmodules_Sequence_Count = testmodules_Sequence.Count# print("testmodules_Sequence_Count:",testmodules_Sequence_Count)# if testmodules_Sequence_Count != 0:for ss in range(1, testmodules_Sequence_Count + 1):testmodules_Sequence_item = testmodules_Sequence.Item(ss)if testmodules_Sequence_item.Enabled is True:print("testmodules_Sequence_item:%s enabled" % testmodules_Sequence_item.Name)testmodule_tag = Truebreakif testmodule_tag is True:breaktestmodule = CastTo(testmodule, "ITSTestModule7")testmodules_SequenceEx = testmodule.SequenceExtestmodules_SequenceEx_Count = testmodules_SequenceEx.Count# print("testmodules_SequenceEx_Count:",testmodules_SequenceEx_Count)for s in range(1, testmodules_SequenceEx_Count + 1):testmodules_SequenceEx_item = testmodules_SequenceEx.Item(s)if testmodules_SequenceEx_item.Enabled is True:print("testmodules_SequenceEx_item:%s enabled" % testmodules_SequenceEx_item.Name)testmodules_SequenceEx_item_sequence_count = testmodules_SequenceEx_item.SequenceEx.Countif testmodules_SequenceEx_item_sequence_count != 0:testmodule_tag = Truebreakif testmodule_tag is True:breaktstconfigurations = self.App.Configuration.TestConfigurationststconfigurations_count = tstconfigurations.Countfor c in range(1,tstconfigurations_count+1):tstconfiguration = tstconfigurations.Item(c)if tstconfiguration.Enabled is True:print("%s enabled" % tstconfiguration.Name)tstunits = tstconfiguration.TestUnitststunits_count = tstunits.Countfor t in range(1,tstunits_count+1):tstunit = tstunits.Item(t)if tstunit.Enabled is True:print("%s enabled" % tstunit.Name)testconfig_tag = Truebreakif testconfig_tag is True:breakreturn [testmodule_tag,testconfig_tag]def EnableTestModuleTestcasebak(self, testcases, testsequencename, testmoduleindex=1, testenvindex=1):testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item(testenvindex)testenvironment = CastTo(testenvironment, "ITestEnvironment2")testmodule = testenvironment.TestModules.Item(testmoduleindex)testmodule = CastTo(testmodule, "ITSTestModule7")testmodules_SequenceEx = testmodule.SequenceExif testsequencename is None:testmodules_SequenceEx_item = testmodules_SequenceEx.Item(1)else:testmodules_SequenceEx_item = testmodules_SequenceEx.Item(testsequencename)testmodules_SequenceEx_item.Enabled = Falseprint("testmodules_SequenceEx_item enable:", testmodules_SequenceEx_item.Enabled)testmodules_SequenceEx_item_sequence = testmodules_SequenceEx_item.SequenceExtestcase_except = []for i in testcases:try:testcaseinfos = testmodules_SequenceEx_item_sequence.Item(i)testcaseinfos.Enabled = Trueprint("Name:%s,Ident:%s,Type:%s,Enabled:%s,Verdict:%s" % (testcaseinfos.Name, testcaseinfos.Ident,testcaseinfos.Type, testcaseinfos.Enabled,testcaseinfos.Verdict))except:testcase_except.append(i)return testcase_exceptdef EnableTestModuleTestcase(self, testcases, testsequencename, testmoduleindex=1, testenvindex=1):testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item(testenvindex)testenvironment = CastTo(testenvironment, "ITestEnvironment2")testmodule = testenvironment.TestModules.Item(testmoduleindex)# testmodules_Sequence = testmodule.Sequencetestmodule = CastTo(testmodule, "ITSTestModule7")testmodules_SequenceEx = testmodule.SequenceExtestmodules_SequenceEx_Count = testmodules_SequenceEx.Countfor i in range(1, testmodules_SequenceEx_Count + 1):testmodules_SequenceEx.Item(i).Enabled = Falseif testsequencename is None:testmodules_SequenceEx_item = testmodules_SequenceEx.Item(1)else:testmodules_SequenceEx_item = testmodules_SequenceEx.Item(testsequencename)print("testmodules_SequenceEx_item enable:", testmodules_SequenceEx_item.Enabled)testmodules_SequenceEx_item_sequence = testmodules_SequenceEx_item.SequenceExtestcase_except = []for i in testcases:try:testcaseinfos = testmodules_SequenceEx_item_sequence.Item(i)testcaseinfos.Enabled = Trueprint("Name:%s,Ident:%s,Type:%s,Enabled:%s,Verdict:%s" % (testcaseinfos.Name, testcaseinfos.Ident,testcaseinfos.Type, testcaseinfos.Enabled,testcaseinfos.Verdict))except:testcase_except.append(i)return testcase_exceptdef EnableTestModuleTestcase_test(self, testcases, testsequencename, testmoduleindex=1, testenvindex=1):#testenvironment_name = self.App.Configuration.TestSetup.TestEnvironments.Name   error:no Name attribute# testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item(testenvindex)testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item("Test Environment")testenvironment = CastTo(testenvironment, "ITestEnvironment2")# testmodule_name = testenvironment.TestModules.Name  error:no Name attribute# print("testmodule_name:",testmodule_name)testmodule = testenvironment.TestModules.Item("Test 24")# testmodule = testenvironment.TestModules.Item(testmoduleindex)# testmodules_Sequence = testmodule.Sequencetestmodule = CastTo(testmodule, "ITSTestModule7")testmodules_SequenceEx = testmodule.SequenceExtestmodules_SequenceEx_Count = testmodules_SequenceEx.Countprint("testmodules_SequenceEx_Count:",testmodules_SequenceEx_Count)for i in range(1, testmodules_SequenceEx_Count + 1):testmodules_SequenceEx.Item(i).Enabled = Falseprint("name:",testmodules_SequenceEx.Item(i).Name)print("count:",testmodules_SequenceEx.Item(i).SequenceEx.Count)# if testsequencename is None:#     testmodules_SequenceEx_item = testmodules_SequenceEx.Item(1)# else:#     testmodules_SequenceEx_item = testmodules_SequenceEx.Item(testsequencename)# print("testmodules_SequenceEx_item enable:", testmodules_SequenceEx_item.Enabled)# testmodules_SequenceEx_item_sequence = testmodules_SequenceEx_item.SequenceEx# testcase_except = []# for i in testcases:#     try:#         testcaseinfos = testmodules_SequenceEx_item_sequence.Item(i)#         testcaseinfos.Enabled = True#         print("Name:%s,Ident:%s,Type:%s,Enabled:%s,Verdict:%s" % (#         testcaseinfos.Name, testcaseinfos.Ident,#         testcaseinfos.Type, testcaseinfos.Enabled,#         testcaseinfos.Verdict))#     except:#         testcase_except.append(i)# return testcase_exceptdef EnableTestModuleTestcaseV2(self, testcases, testsequencename, testmodulename, testenvname):try:testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item(testenvname)testenvironment = CastTo(testenvironment, "ITestEnvironment2")testmodule = testenvironment.TestModules.Item(testmodulename)if (testsequencename is None) or (testcases is None):testmodule.Enabled = Truereturn Trueelse:# testmodules_Sequence = testmodule.Sequencetestmodule = CastTo(testmodule, "ITSTestModule7")testmodules_SequenceEx = testmodule.SequenceExtestmodules_SequenceEx_Count = testmodules_SequenceEx.Countfor i in range(1, testmodules_SequenceEx_Count + 1):testmodules_SequenceEx.Item(i).Enabled = Falseif testsequencename is None:testmodules_SequenceEx_item = testmodules_SequenceEx.Item(1)else:testmodules_SequenceEx_item = testmodules_SequenceEx.Item(testsequencename)print("testmodules_SequenceEx_item enable:", testmodules_SequenceEx_item.Enabled)if testcases == "*":testmodules_SequenceEx_item.Enabled = Truereturn Trueelif isinstance(testcases,list):testmodules_SequenceEx_item_sequence = testmodules_SequenceEx_item.SequenceExtestcase_except = []for i in testcases:try:testcaseinfos = testmodules_SequenceEx_item_sequence.Item(i)testcaseinfos.Enabled = Trueprint("Name:%s,Ident:%s,Type:%s,Enabled:%s,Verdict:%s" % (testcaseinfos.Name, testcaseinfos.Ident,testcaseinfos.Type, testcaseinfos.Enabled,testcaseinfos.Verdict))except:testcase_except.append(i)return testcase_exceptelse:return Falseexcept:return Falsedef GetTestModuleTestcase(self, testcases, testenvindex=1, testmoduleindex=1, testsequenceindex=1):testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item(testenvindex)testenvironment = CastTo(testenvironment, "ITestEnvironment2")testmodule = testenvironment.TestModules.Item(testmoduleindex)testmodule = CastTo(testmodule, "ITSTestModule7")testmodules_SequenceEx = testmodule.SequenceExtestmodules_SequenceEx_item = testmodules_SequenceEx.Item(testsequenceindex)print("testmodules_SequenceEx_item enable:", testmodules_SequenceEx_item.Enabled)testmodules_SequenceEx_item_sequence = testmodules_SequenceEx_item.SequenceExfor i in testcases:testcaseinfos = testmodules_SequenceEx_item_sequence.Item(i)testcaseinfos.Enabled = Trueprint("Name:%s,Ident:%s,Type:%s,Enabled:%s,Verdict:%s" % (testcaseinfos.Name, testcaseinfos.Ident,testcaseinfos.Type, testcaseinfos.Enabled,testcaseinfos.Verdict))def GetTestModuleTestcaseV2(self, testcases, testsequencename, testmodulename, testenvname):testenvironment = self.App.Configuration.TestSetup.TestEnvironments.Item(testenvname)testenvironment = CastTo(testenvironment, "ITestEnvironment2")testmodule = testenvironment.TestModules.Item(testmodulename)testmodule = CastTo(testmodule, "ITSTestModule7")testmodules_SequenceEx = testmodule.SequenceExtestmodules_SequenceEx_item = testmodules_SequenceEx.Item(testsequencename)print("testmodules_SequenceEx_item enable:", testmodules_SequenceEx_item.Enabled)testmodules_SequenceEx_item_sequence = testmodules_SequenceEx_item.SequenceExfor i in testcases:testcaseinfos = testmodules_SequenceEx_item_sequence.Item(i)testcaseinfos.Enabled = Trueprint("Name:%s,Ident:%s,Type:%s,Enabled:%s,Verdict:%s" % (testcaseinfos.Name, testcaseinfos.Ident,testcaseinfos.Type, testcaseinfos.Enabled,testcaseinfos.Verdict))def RunTestModules(self):testenvs = self.App.Configuration.TestSetup.TestEnvironmentsself.TestModules = []for c in range(1, testenvs.Count + 1):testenv = CastTo(testenvs.Item(c), "ITestEnvironment2")self.TraverseTestItem(testenv, lambda tm: self.TestModules.append(CanoeTestModule(tm)))""" starts all test modules and waits for all of them to finish"""# start all test modulesfor tm in self.TestModules:tm.Start()# wait for test modules to stop# while not any([not tm.Enabled or tm.IsDone() or tm.ReportGenerate() for tm in self.TestModules]):#     DoEvents()# wait for test modules to stop and report generated succeedwhile not any([not tm.Enabled or tm.IsDone() and tm.ReportGenerate() for tm in self.TestModules]):DoEvents()for tm in self.TestModules:tm.Report_Generate()def RunTestModules_test(self):self.TestSetup = self.App.Configuration.TestSetuptestenv_count = self.TestSetup.TestEnvironments.Countprint("testenv_count:",testenv_count)testenv = self.TestSetup.TestEnvironments.Item(1)testenv = CastTo(testenv, "ITestEnvironment2")testmodules = testenv.TestModulestestmodules_count = testmodules.Countprint("testmodules_count:",testmodules_count)ts_testmodule = testmodules.Item(1)print("fullname:",ts_testmodule.FullName)print("name:",ts_testmodule.Name)print("path:",ts_testmodule.Path)'''testenv = self.TestSetup.TestEnvironments.Item(1)testenv = CastTo(testenv, "ITestEnvironment2")# TestModules property to access the test modulesself.TestModules = []self.TraverseTestItem(testenv, lambda tm: self.TestModules.append(CanoeTestModule(tm)))""" starts all test modules and waits for all of them to finish"""# start all test modulesfor tm in self.TestModules:tm.Start()# wait for test modules to stopwhile not any([not tm.Enabled or tm.IsDone() for tm in self.TestModules]):DoEvents()'''def RunTestConfigs(self):""" starts all test configurations and waits for all of them to finish"""# start all test configurationsfor tc in self.TestConfigs:tc.Start()# wait for test modules to stopwhile not all([not tc.Enabled or tc.IsDone() for tc in self.TestConfigs]):DoEvents()def RunTestConfigs_SaveLast(self):tstconfigurations = self.App.Configuration.TestConfigurationsself.TestConfigs = []for c in range(1, tstconfigurations.Count + 1):self.TestConfigs.append(CanoeTestConfiguration(tstconfigurations.Item(c)))""" starts all test configurations and waits for all of them to finish"""tcs = list(filter(lambda i: i.Enabled == True, self.TestConfigs))""" starts all test configurations and waits for all of them to finish"""# start all test configurationsfor tc in tcs:tc.Start()# wait for test modules to stop# while not all([not tc.Enabled or tc.IsDone() for tc in tcs]):#     DoEvents()# wait for test modules to stop and report generated succeedwhile not all([not tc.Enabled or tc.IsDone() and tc.ReportGenerate() for tc in tcs]):DoEvents()for tc in tcs:tc.Report_Generate()def RunTestConfigs_CheckCANoeStop(self):tc = self.App.Configuration.TestConfigurations.Item(1)# tc.Name = testcfgname# TestConfigs property to access the test configurationself.TestConfigs = [CanoeTestConfiguration(tc)]for tc in self.TestConfigs:tc.Start()# wait for test modules to stopwhile self.Running():DoEvents()def TraverseTestItem(self, parent, testf):for test in parent.TestModules:testf(test)for folder in parent.Folders:found = self.TraverseTestItem(folder, testf)def VTSystem(self, vtcfg):self.vts = self.App.Configuration.VTSystem# Get the VT System configuration instance# Export and import a configuration# self.vts.ExportConfiguration("D:\MyConfiguration.vtcfg")self.vts.ImportConfiguration(vtcfg, 0)  # Appends to the current config# self.vts.ImportConfiguration("D:\MyConfiguration.vtcfg", 1)  # Replace current config# Create a new configuration based on the connected hardware# self.vts.NewConfigurationFromHardware()# Adapt the existing configuration to the connected hardwareself.vts.AdaptToHardware()# Import a module description into CANoe# vts.ImportModuleDescription("D:\MyModuleDescription.xml")# Switch all modules offline/onlineself.vts.SetAllModulesOffline()self.vts.SetAllModulesOnline()# Access a module or channel by its name# myModule = vts.GetModuleByName("M1_VT1004")# myChannel = vts.GetChannelByName("M1_Ch1")self.App.Configuration.Save()class CanoeAppEvents(object):"""Handler for CANoe Application events"""def OnOpen(self,fullname):CanoeSync.AppOpened = Trueprint("*** < CANoe Application CFG:%s Opened > ***" % fullname)def OnQuit(self):CanoeSync.AppStopped = Trueprint("*** < CANoe Application closed > ***")class CanoeMeasurementEventsbak(object):"""Handler for CANoe measurement events"""def OnStart(self):CanoeSync.Started = TrueCanoeSync.Stopped = Falseprint("< measurement started >")def OnStop(self):CanoeSync.Started = FalseCanoeSync.Stopped = Trueprint("< measurement stopped >")class CanoeMeasurementEvents(object):"""Handler for CANoe measurement events"""def OnStart(self):CanoeSync.Started = TrueCanoeSync.Stopped = Falseprint("< measurement started >")def OnStop(self):CanoeSync.Started = FalseCanoeSync.Stopped = Trueprint("< measurement stopped >")class CanoeTestModule:"""Wrapper class for CANoe TestModule object"""def __init__(self, tm):self.tm = tmself.Events = DispatchWithEvents(tm, CanoeTestEvents)self.Name = tm.Nameself.IsDone = lambda: self.Events.stoppedself.ReportGenerate = lambda: self.Events.Report_Generateself.Enabled = tm.Enableddef Start(self):if self.tm.Enabled:self.tm.Start()self.Events.WaitForStart()def Report_Generate(self):if self.IsDone():self.Events.WaitForReportGenerate()class CanoeTestConfiguration:"""Wrapper class for a CANoe Test Configuration object"""def __init__(self, tc):self.tc = tcself.Name = tc.Nameself.Events = DispatchWithEvents(tc, CanoeTestEvents)self.TestConfigureportGeneratEvents = DispatchWithEvents(tc.Report,CanoeTestConfigureportEvents)self.IsDone = lambda: self.Events.stoppedself.ReportGenerate = lambda: self.TestConfigureportGeneratEvents.Report_Generateself.Enabled = tc.Enableddef Start(self):if self.tc.Enabled:self.tc.Start()self.Events.WaitForStart()def Report_Generate(self):if self.IsDone():self.TestConfigureportGeneratEvents.WaitForReportGenerate()class CanoeTestEvents:"""Utility class to handle the test events"""def __init__(self):self.started = Falseself.stopped = Falseself.Report_Generate = Falseself.WaitForStart = lambda: DoEventsUntil(lambda: self.started)self.WaitForStop = lambda: DoEventsUntil(lambda: self.stopped)self.WaitForReportGenerate = lambda: DoEventsUntil(lambda: self.Report_Generate)def OnStart(self):self.started = Trueself.stopped = Falseprint("<", self.Name, " started >")def OnStop(self, reason):self.started = Falseself.stopped = Trueprint("<", self.Name, " stopped >")def OnReportGenerated(self, success, sourceFullName, generatedFullName):if success:self.Report_Generate = Trueprint("<", self.Name, " report Generated succeed. >")print("sourceFullName:", sourceFullName)print("generatedFullName:", generatedFullName)else:print("<", self.Name, " report Generated Failed. >")class CanoeTestConfigureportEvents:"""Utility class to handle the test configure report generate event"""def __init__(self):self.Report_Generate = Falseself.WaitForReportGenerate = lambda: DoEventsUntil(lambda: self.Report_Generate)def OnGenerated(self, success, sourceFullName, generatedFullName):if success:self.Report_Generate = Trueprint("[INFO]<", self.FullPath, " report Generated succeed. >")print("sourceFullName:", sourceFullName)print("generatedFullName:", generatedFullName)else:print("[ERROR]<", self.FullPath, " report Generated Failed. >")if __name__ == "__main__":app = CanoeSync()app.Stop()cfg_path = r"D:\jenkins_home\workspace\ZEEKR\ZEEKR_718BE028_ZECU_1_SMOKE_Level2\LIN_Interface\LIN_Interface\CANoeConfig\LIN_Interface.cfg"# cfg_path = r"D:\test\test01.cfg"app.Load(cfg_path)# app.LoadTestSetup(r"D:\test\b1.tse")# app.Start()# testcase_except = app.EnableTestModuleTestcase_test(["test091911"],None)# testcase_except = app.EnableTestModuleTestcaseV2(["LIN1_0x1C_sig_tx_CcvmCmdVlvCalibReq_ZCL_LIN1_ZCL_LIN1_startvalue"],"LIN1_TX_Sig_startvalue","Test 24","Test Environment")# print(testcase_except)testcase_except = app.EnableTestModuleTestcaseV2("*", "LIN1_TX_Sig_startvalue", "Test 24", "Test Environment")# app.GetTestModuleTestcaseV2(["LIN1_0x1C_sig_tx_CcvmCmdVlvCalibReq_ZCL_LIN1_ZCL_LIN1_startvalue"],"LIN1_TX_Sig_startvalue","Test 24","Test Environment")# app.RunTestModules()# app.Stop()# app.GetTestModuleTestcase(["test0919"])# app.savetestenvironment()# app.savecanoecfg()# app.app_quit()print("finished")

五、对CANoe API的使用【源码】

 def runCANoeScript()for i in range(3):executeflag = Truenotexecutestcases = []try:app = CanoeSync()app.Stop()app.Load(cfg_path)if os.path.exists(vtcfg_path):print("Import CANoe VT Cfg:%s"%vtcfg_path)app.VTSystem(vtcfg_path)time.sleep(.3)if executeflag is True:print("[INFO]:%s:All testcases are enabled succeed." % (fc_type))if "_Release" in fc_is_tags:record_fcresult(ctresult_infos, "%s_testcase" % tags_name, "AllEnable")else:record_fcresult(ctresult_infos, "%s_testcase" % fc_type, "AllEnable")else:print("[ERROR]:%s:Not all testcases are enabled,please check!!!" % (fc_type))if "_Release" in fc_is_tags:record_fcresult(ctresult_infos, "%s_testcase" % tags_name, "AllEnable")else:record_fcresult(ctresult_infos, "%s_testcase" % fc_type, "AllEnable")time.sleep(.10)testmodule, testconfig = app.checkTestModulesorTestConfigs()print("testmodule:%s,testconfig:%s" % (testmodule, testconfig))if testconfig is True:build_vts_log = r"%s\%s_vtestudio_build.log" % (j_workspace, fc_type)vts_pro = r"%s\TestConfiguration\%s.vtsoproj" % (pro_path, fc_type)build_cmd = r"%s\CT_TOOLS\thirdpart_tools\TestUnitBuildCLI\Exec64\TestUnitBuildCLI.exe -v --tu=%s %s > %s" % (j_workspace, fc_type, vts_pro, build_vts_log)os.system(build_cmd)time.sleep(.1)# with open(build_vts_log,"r",encoding="UTF-8") as fp:with open(build_vts_log, "r") as fp:f_content = fp.read()fp.close()if "Compilation succeeded" in f_content and "Build succeeded" in f_content and "0 errors" in f_content:print("[SUCCESS]: Compile %s" % vts_pro)else:print("[ERROR]: Compile %s,please check!!!!" % vts_pro)if "_Release" in fc_is_tags:record_fcresult(ctresult_infos, tags_name, "Except")else:record_fcresult(ctresult_infos, fc_type, "Except")exit(-1)app.Start()time.sleep(.2)app.RunTestConfigs_SaveLast()if testmodule is True:app.Start()time.sleep(.2)app.RunTestModules()time.sleep(.2)except Exception as e:print(f"dddd{e}")
希望对大家有帮助!!!!!!!!!!!

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/pingmian/30349.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

RAG 流程及论文串烧

文档切片 文档切片的五个层次 https://medium.com/anuragmishra_27746/five-levels-of-chunking-strategies-in-rag-notes-from-gregs-video-7b735895694d#b123 Basic RAG 与 Advanced RAG https://pub.towardsai.net/advanced-rag-techniques-an-illustrated-overview-04d…

TTS前端原理学习 chatgpt生成答案

第一篇文章学习 小绿鲸阅读器 通篇使用chatgpt生成答案 文章&#xff1a; https://arxiv.org/pdf/2012.15404 1. 文章概述 本文提出了一种基于Distilled BERT模型的统一普通话文本到语音前端模块。该模型通过预训练的中文BERT作为文本编码器&#xff0c;并采用多任务学习技术…

在数据分析中,对缺失值解决方案的分析

1. 删除缺失值 使用dropna函数来删除空值&#xff0c;具体用法如下 # 函数用法 df.dropna( axis0, howany, inplaceTrue, subset[列名,...], thresh10 ) ​ df.drop() # 按列删除 dropna函数参数解释 axis0 可选参数 &#xff0c;默认为0按行删 0, or inde…

Python学习笔记14:进阶篇(三)。类的终结篇,类的导入和模块的导入。

前言 这篇文章属于类知识的最后一篇&#xff0c;带一点点其他知识&#xff0c;学习内容来自于Python crash course。 关注我私信发送Python crash course&#xff0c;分享一份中文版PDF。 类的导入 在学习的时候&#xff0c;包括之前&#xff0c;我都是在一个文件中把所有代…

免费域名第二弹:手把手教你获取个性化免费域名并托管至Cloudflare

文章目录 📖 介绍 📖🏡 演示环境 🏡📒 免费申请域名的方法 📒📝 注册账号📝 创建免费域名📝 将域名添加到 Cloudflare⚓️ 相关链接 ⚓️📖 介绍 📖 在如今的数字时代,拥有一个个性化的域名已经成为越来越多人的需求。无论是建立个人博客、项目展示,还…

基于springboot的人口老龄化社区服务与管理平台源码数据库

随着信息技术在管理上越来越深入而广泛的应用&#xff0c;管理信息系统的实施在技术上已逐步成熟。本文介绍了人口老龄化社区服务与管理平台的开发全过程。通过分析人口老龄化社区服务与管理平台方面的不足&#xff0c;创建了一个计算机管理人口老龄化社区服务与管理平台的方案…

鸿蒙开发通信与连接:【@ohos.connectedTag (有源标签)】

有源标签 说明&#xff1a; 本模块首批接口从API version 8开始支持。后续版本的新增接口&#xff0c;采用上角标单独标记接口的起始版本。 导入模块 import connectedTag from ohos.connectedTag;connectedTag.init init(): boolean 初始化有源标签芯片。 需要权限&#…

python-docx 遍历文档

python-docx 遍历文档 遍历段落和表格&#xff08;顶级&#xff09;获取段落中的图片参考资料 遍历段落和表格&#xff08;顶级&#xff09; 只有业务场景中需要严格按照word文档中段落和表格的顺序遍历时才使用这个方案。 否则直接遍历下面这几个更方便&#xff1a; 段落&…

前端开发之浏览器安全

浏览器安全涉及多方面的威胁与防护&#xff0c;其中XSS&#xff08;跨站脚本攻击&#xff09;与CSRF&#xff08;跨站请求伪造&#xff09;是最常见的两类安全问题&#xff0c;而中间人攻击与网络劫持也是不容忽视的安全隐患。下面是对这些安全问题的深入分析与防护策略的总结。…

常用损失函数详解:广泛使用的优化约束方法

各类常用损失函数详解&#xff1a;广泛使用的优化约束方法 今天介绍下损失函数&#xff0c;先介绍下我常用的方法SmoothedL1&#xff0c;它是一个平滑的L1 penalty函数,用于处理约束violation。 标准的L1 penalty函数定义为: L 1 ( x ) { 0 , if x ≤ 0 x , if x > 0 …

MySQL经典面试题:谈一谈你对事务的理解

文章目录 &#x1f4d1;事务事务的基本概念回滚开启事务的sql语句 事务的基本特性总结一下涉及到的三个问题 ☁️结语 &#x1f4d1;事务 事务的基本概念 事务是用来解决一类特定场景的问题的&#xff0c;在有些场景中&#xff0c;完成某个操作&#xff0c;需要多个sql配合完…

解决header加了固定定位以后,原来页面的锚点链接位置不准确的问题

在网页设计中&#xff0c;当头部&#xff08;header&#xff09;使用了固定定位&#xff08;CSS中的position: fixed;&#xff09;&#xff0c;它将脱离文档流并且固定在视口的顶部或指定位置。这可能导致页面上的锚点链接&#xff08;使用<a href"#id">形式&a…

C++语法18 while循环、循环中断break与继续continue

语法阶段已经更新到第18章了&#xff0c;前面的知识你都学会了吗&#xff1f;如果还没有学习前面的知识&#xff0c;请点击&#x1f449;语法专栏进行学习哦&#xff01; 目录 while循环 while 死循环 训练&#xff1a;折纸 解析 参考代码 训练&#xff1a;第几项 解析 …

CPN IDE实现分层效果

Shift键鼠标选中要分层的库所和变迁&#xff01;然后create subpage。 Subpage是这样的&#xff0c;不会像CPN tools里面自动生成IN和OUT库所&#xff0c;但是也能正确运行。 虽然父页面在运行中有标红&#xff1a;"port not defined" 错误通常意味着在模型中有一些连…

【QT5】<重点> QT多线程

文章目录 前言 一、QThread创建多线程 二、QMutex基于互斥量的同步 三、QReadWriteLock线程同步 四、QWaitCondition线程同步 五、QSemaphore基于信号量的同步 前言 本篇记录学习QT多线程的知识&#xff0c;参考视频13.1QThread创建多线程程序_哔哩哔哩。若涉及版权问题…

用于测试高精度恒流源电路

目前音圈马达在测试方面并没有专用的工具&#xff0c;只有常规的驱动芯片,针对这一问题设计一种高精度恒流源电路&#xff0c;能够对音圈马达的行程、线性度、磁滞、斜率等参数进行测试&#xff0c;和对音圈马达进行寿命实验。 系统主要包括微处理器、D/A转换、A/D转换、运放恒…

单元测试很难么?

前言 你可能会用单元测试框架&#xff0c;python的unittest、pytest&#xff0c;Java的Junit、testNG等。 那么你会做单元测试么&#xff01;当然了&#xff0c;这有什么难的&#xff1f; test_demo.py def inc(x): return x 1 def test_answer(): assert inc(3) 4 i…

经验分享,CRC(循环冗余校验)在线计算

这里分享一个好用的在线计算CRC的网站。 网址&#xff1a;http://www.ip33.com/crc.html 截图&#xff1a;

Ubuntu22.04系统安装及配置

文章目录 一、选择“安装” 二、选择“语言” 三、安装器更新 四、键盘布局 五、选择安装类型 六、网络配置 七、代理设置 八、镜像地址 九、磁盘划分 十、设置用户名、主机名、登录密码 十一、升级到Ubuntu Pro 十二、SSH设置 十三、选装软件包 十四、开始安装进…

灰度图像直方图均衡化

文章目录 1.实验目的2.需求3.代码4.实验结果 1.实验目的 了解一种最基本的图像增强技术&#xff0c;本质上是对灰度图像进行灰度变换。 2.需求 对给定图像进行灰度直方图展示&#xff0c;然后均衡化后再次展示 3.代码 import cv2 as cv import numpy as np from matplotli…