0

我正在尝试对一个非常基本的类进行单元测试,该类从Vaadin框架中扩展了一些类。但是NullPointerException当我运行测试时我得到了。

我需要模拟UI课堂吗?请指导。

错误日志:

into the enter method......

java.lang.NullPointerException
    at com.jpmorgan.tss.payhub.template.views.MainView.enter(MainView.java:46)
    at com.jpmorgan.tss.payhub.template.views.MainViewTest.testEnter(MainViewTest.java:17)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
    at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
    at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:68)
    at com.intellij.rt.execution.junit.IdeaTestRunner$Repeater.startRunnerWithArgs(IdeaTestRunner.java:47)
    at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:242)
    at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:70)

MainViewTest.java

public class MainViewTest {

    @Mock
    ViewChangeListener.ViewChangeEvent viewChangeEvent = Mockito.mock(ViewChangeListener.ViewChangeEvent.class);

    @Test
    public void testEnter() {
        MainView instance = new MainView();
        instance.enter(viewChangeEvent);
        assertNotNull(instance);
    }

}

MainView.java(被测类)

@Component
@Scope("prototype")
@VaadinView(MainView.NAME)
@Title("Mortgage Banking")
@Theme("PymtTemplateUI")
public class MainView extends VerticalLayout implements View {

    @PostConstruct
    public void PostConstruct() {
    }

    @Override
    public void enter(ViewChangeListener.ViewChangeEvent event) {
        System.out.println("into the enter method......");
        UI ui = UI.getCurrent();
        Navigator nav = ui.getNavigator();
        nav.navigateTo("homePageView");
    }

}
4

1 回答 1

1

我需要模拟 UI 类吗?请指导。

是的,你需要。这实际上并不简单,因为您也需要在 Vaadin 中模拟其他东西。因此,如果您想在不运行应用程序的情况下进行基本的 UI 测试,即称为无浏览器测试的技术,您可以研究这个实验性开源项目

https://github.com/mvysny/karibu-testing

还有一篇博客文章描述了如何模拟 UI 和其他所需的 Vaadin 类的原则。

此外(由于上述方法并未完全涵盖集成测试需求)或作为另一种替代方法,您可以使用 Selenium 或 Vaadin TestBench 进行 UI 测试,即自动化浏览器测试。

于 2018-10-18T17:33:38.780 回答