我当前正在尝试测试Eclipse RCP应用程序的UI。当手动执行时,该应用程序可以正常启动并且可以正确使用。但是,当QF-Test启动应用程序时,我在3pp模块中得到一个ClassCastException
:
java.lang.ClassCastException: java.io.File cannot be cast to java.lang.String
at com.solarmetric.conf.ConfigurationImpl.fromProperties(ConfigurationImpl.java:560)
at com.solarmetric.conf.ConfigurationImpl.loadDefaults(ConfigurationImpl.java:186)
分析3pp库的代码后,我发现尝试将系统的属性值转换为String
时发生了异常。这应该不成问题,因为所有属性值都应为String
(请参见此answer)。但是,QF-Test将添加3个属性,它们的值是File
(java.io.File
)个对象。更精确地:
jython.home = C:\Program Files\qfs\qftest\qftest-4.2.0\jython
groovy.home = C:\Program Files\qfs\qftest\qftest-4.2.0\groovy
javascript.home = C:\Program Files\qfs\qftest\qftest-4.2.0\javascript
我想删除那些错误的属性值。我已经尝试将它们手动定义为QF-Test命令行调用的参数,但没有成功。
一些帮助将不胜感激。
答案 0 :(得分:2)
此QF-Test行为已通过QF-Test 4.2.1(于2018年2月26日发布)修复,请参见https://www.qfs.de/en/qf-test-manual/lc/manual-en-history.html#sec_N1D715:
Bug fixed:
In a few cases a broken system property set by QF-Test could interfere with SUT startup.
所以答案就是简单地更新您的QF测试!
答案 1 :(得分:1)
不幸的是,我不知道QF-Test的修复程序。 如果可能的话,我建议您使用变通方法来更正属性。
Properties sysProps = System.getProperties();
Properties copyProps = new Properties();
synchronized (sysProps) {
copyProps.putAll(sysProps);
}
Set<Entry<Object, Object>> entrySet = copyProps.entrySet();
for (Entry<Object, Object> entry : entrySet) {
if (!(entry.getKey() instanceof String) || !(entry.getValue() instanceof String)) {
sysProps.remove(entry.getKey());
sysProps.put(String.valueOf(entry.getKey()), String.valueOf(entry.getValue()));
}
}