0

我刚刚编写了我的第一个 GWTTestCase,但运行它总是给我一个 VerifyError。这是我的一个伟大测试套件的胚胎:

public void test() {
    Invoice invoice = new Invoice();
    invoice.setInvoiceDate(DateTimeFormat.getFormat(DomainResource.DATE_PATTERN).format(new Date()));
    InvoiceEditorDriver driver = GWT.create(InvoiceEditorDriver.class);
    InvoiceNumberEditor editor = new InvoiceNumberEditor();
    driver.initialize(editor);
    driver.edit(invoice);

    assertFalse(driver.isDirty());
    }

为了完整起见,我将 Google AppEngine 和 GWT 一起使用,我认为这可能与 AppEngine 的安全沙箱有关。

正在加载的类是“com.gargoylesoftware.htmlunit.SocksSocketFactory”。

完整的堆栈跟踪在这里:

Exception in thread "htmlUnit client thread" java.lang.VerifyError: Cannot inherit from final class
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:800)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:142)
    at java.net.URLClassLoader.defineClass(URLClassLoader.java:449)
    at java.net.URLClassLoader.access$100(URLClassLoader.java:71)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:361)
    at java.net.URLClassLoader$1.run(URLClassLoader.java:355)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(URLClassLoader.java:354)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:425)
    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:358)
    at com.gargoylesoftware.htmlunit.HttpWebConnection.createHttpClient(HttpWebConnection.java:542)
    at com.gargoylesoftware.htmlunit.HttpWebConnection.getHttpClient(HttpWebConnection.java:506)
    at com.gargoylesoftware.htmlunit.HttpWebConnection.getResponse(HttpWebConnection.java:150)
    at com.gargoylesoftware.htmlunit.WebClient.loadWebResponseFromWebConnection(WebClient.java:1281)
    at com.gargoylesoftware.htmlunit.WebClient.loadWebResponse(WebClient.java:1198)
    at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:307)
    at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:376)
    at com.gargoylesoftware.htmlunit.WebClient.getPage(WebClient.java:361)
    at com.google.gwt.junit.RunStyleHtmlUnit$HtmlUnitThread.run(RunStyleHtmlUnit.java:136)

我尝试排除给定课程的 GAE 验证,但没有成功。我不确定排除验证是否足够,以及是否可以为 jar 中的文件设置验证排除规则。

4

1 回答 1

0

可能是类路径问题。

mailing list也有类似的问题,通过从类路径中删除 PlainSocketFactory 的第二个实例来解决。

于 2014-04-30T23:05:19.343 回答