Inventor API 在测试环境下的行为与在开发环境下的行为不同

Inventor API behave differently under test environment than it under development environment

我们正在开发 Autodesk Inventor AddIn 程序,我们正在使用 MsTest 框架进行一些集成测试。这是一个非常简单的函数,它创建一个带有图标的按钮定义。

public ButtonDefinition GetButtonDef(Inventor.Application app, string m_clientId)
{
    stdole.IPictureDisp icon16 = PictureDispConverter.ToIPictureDisp(InvAddIn.Properties.Resources.cp_logo_16x16);
    stdole.IPictureDisp icon32 = PictureDispConverter.ToIPictureDisp(InvAddIn.Properties.Resources.cp_logo_32x32);
    m_buttonDefinition = app.CommandManager.ControlDefinitions.AddButtonDefinition(
                                         "My Command2", "MyCommand.InternalName", 
                                         CommandTypesEnum.kShapeEditCmdType, m_clientId, 
                                         "My description text","My tooltip text", icon16, icon32, 
                                         ButtonDisplayEnum.kAlwaysDisplayText
                                         );
    return m_buttonDefinition;
}

API 的文档是 here。 当我在Inventor下运行我们的AddIn时,调用了这个函数,正常运行。但是,当我编写单元测试以在我的测试代码中(在同一个项目中)调用这个完全相同的函数时,它会在调用 AddButtonDefinition 的行抛出以下 COM 异常:

 System.Runtime.InteropServices.COMException: Catastrophic error (Exception of HRESULT: 0x8000FFFF (E_UNEXPECTED))

我试了很久才发现,当两个图标(icon16、icon32作为参数)都省略(即替换为null)时,测试代码不会抛出异常。

我知道这个问题可能太具体了,但有人可以给我一些一般性提示:为什么 API 在测试环境下表现不同,可能的原因是什么? 非常感谢您的意见!

我认为这是 COM(或类似的东西)的限制。您不能在进程之间 access/share 类型为 IPictureDisp 的对象。我尝试在外部应用程序(也是 MSTest)中读取现有 ControldefinitionStandardIcon,我得到 COMException。但相同的代码在 AddIn 中有效。

我使用 MSTest 进行业务逻辑的单元测试,但不用于 GUI 创建。对于此集成测试,您可以使用您的插件启动 Inventor,然后检查用户控件是否已定义以及是否存在于适当的功能区选项卡和面板中。