J2V8 Возвращает ошибку V8ResultUndefined в сценарии назначения

#javascript #j2v8

Вопрос:

У меня есть проект для анализа того, как различные сценарии браузера взаимодействуют с объектами окна и документа. Я использую J2V8. В недавней документации не так много, но я успешно запустил пример из старых (2015) сообщений в блоге.

 public class Console {
    public void log(final String message) {
        System.out.println("[INFO] "   message);
    }
    public void err(final String message) {
        System.out.println("[ERROR] "   message);
    }
}


@Test
public void consoleTest() {
    V8Object v8Console = new V8Object(v8);
    v8.add("console", v8Console);
    v8Console.registerJavaMethod(console, "log", "log", new Class[] { String.class });
    v8Console.registerJavaMethod(console, "err", "err", new Class[] { String.class });
    v8Console.release();
    v8.executeScript("console.log('hello, world');");
}
 

Выполнение теста приводит к

 [INFO] hello, world
 

Для своих тестов я создал класс Window

 public class Window {
    private int innerWidth;

    public int getInnerWidth() {
        return innerWidth;
    }
}
 

И мой тест выглядит так

 @Test
public void windowTest() {
    try {
        V8Object v8Window = new V8Object(v8);
        v8.add("window", v8Window);
        v8Window.release();
        Object obj = v8.executeScript("var w = window.innerWidth;");
        int w = v8.getInteger("w");
        System.out.println("w = "   w);
    } catch (Exception e) {
        e.printStackTrace();
    }
}
 

Когда я запускаю тест, он выдает эту ошибку

 com.eclipsesource.v8.V8ResultUndefined: 
at com.eclipsesource.v8.V8._getInteger(Native Method)
at com.eclipsesource.v8.V8.getInteger(V8.java:960)
at com.eclipsesource.v8.V8Object.getInteger(V8Object.java:134)
at org.secomm.wicked.browser.test.JavascriptTests.windowTest(JavascriptTests.java:39)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at java.base/jdk.internal.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at java.base/jdk.internal.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.base/java.lang.reflect.Method.invoke(Method.java:566)
at org.junit.platform.commons.util.ReflectionUtils.invokeMethod(ReflectionUtils.java:725)
at org.junit.jupiter.engine.execution.MethodInvocation.proceed(MethodInvocation.java:60)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$ValidatingInvocation.proceed(InvocationInterceptorChain.java:131)
at org.junit.jupiter.engine.extension.TimeoutExtension.intercept(TimeoutExtension.java:149)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestableMethod(TimeoutExtension.java:140)
at org.junit.jupiter.engine.extension.TimeoutExtension.interceptTestMethod(TimeoutExtension.java:84)
at org.junit.jupiter.engine.execution.ExecutableInvoker$ReflectiveInterceptorCall.lambda$ofVoidMethod$0(ExecutableInvoker.java:115)
at org.junit.jupiter.engine.execution.ExecutableInvoker.lambda$invoke$0(ExecutableInvoker.java:105)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain$InterceptedInvocation.proceed(InvocationInterceptorChain.java:106)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.proceed(InvocationInterceptorChain.java:64)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.chainAndInvoke(InvocationInterceptorChain.java:45)
at org.junit.jupiter.engine.execution.InvocationInterceptorChain.invoke(InvocationInterceptorChain.java:37)
at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:104)
at org.junit.jupiter.engine.execution.ExecutableInvoker.invoke(ExecutableInvoker.java:98)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.lambda$invokeTestMethod$7(TestMethodTestDescriptor.java:214)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.invokeTestMethod(TestMethodTestDescriptor.java:210)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:135)
at org.junit.jupiter.engine.descriptor.TestMethodTestDescriptor.execute(TestMethodTestDescriptor.java:66)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:151)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
at org.junit.platform.engine.support.hierarchical.SameThreadHierarchicalTestExecutorService.invokeAll(SameThreadHierarchicalTestExecutorService.java:41)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$6(NodeTestTask.java:155)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$8(NodeTestTask.java:141)
at org.junit.platform.engine.support.hierarchical.Node.around(Node.java:137)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.lambda$executeRecursively$9(NodeTestTask.java:139)
at org.junit.platform.engine.support.hierarchical.ThrowableCollector.execute(ThrowableCollector.java:73)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.executeRecursively(NodeTestTask.java:138)
at org.junit.platform.engine.support.hierarchical.NodeTestTask.execute(NodeTestTask.java:95)
at java.base/java.util.ArrayList.forEach(ArrayList.java:1541)
 

Объект, возвращаемый методом executeScript, помечен как «неопределенный», что, как я предполагаю, относится к неопределенной сущности javascript. Если я вызову метод Executevoid, результат будет таким же. Изменение доступа к внутренней ширине в классе Window на общедоступный также не влияет.

Как я уже сказал, документации по J2V8 не так много. Любая помощь в этом будет признательна.