在使用 JUnit、Spring 4 和 Vaadin 对 class 进行单元测试时获取 NPE
Getting NPE while unit testing a class using JUnit, Spring 4 and Vaadin
我正在尝试对从 Vaadin
框架扩展一些 class 的非常基本的 class 进行单元测试。但是当我 运行 测试时我得到 NullPointerException
。
我需要模拟 UI
class 吗?请指导。
错误日志:
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.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.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access[=12=]0(ParentRunner.java:53)
at org.junit.runners.ParentRunner.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(Class 测试中)
@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");
}
}
Do I need to mock the UI class? Please guide.
是的,你需要。这实际上并不简单,因为您还需要在 Vaadin 中模拟其他内容。因此,如果您想在没有 运行 应用程序的情况下进行基本 UI 测试,即称为无浏览器测试的技术,您可以研究这个实验性开源项目
https://github.com/mvysny/karibu-testing
还有一个 blog post 描述了如何模拟 UI 和其他需要的 Vaadin 类 的原理。
此外(因为上述方法没有完全涵盖集成测试需求)或者作为另一种选择,您可以使用 Selenium 或 Vaadin TestBench 进行 UI 测试,即自动浏览器测试。
我正在尝试对从 Vaadin
框架扩展一些 class 的非常基本的 class 进行单元测试。但是当我 运行 测试时我得到 NullPointerException
。
我需要模拟 UI
class 吗?请指导。
错误日志:
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.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.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access[=12=]0(ParentRunner.java:53)
at org.junit.runners.ParentRunner.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(Class 测试中)
@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");
}
}
Do I need to mock the UI class? Please guide.
是的,你需要。这实际上并不简单,因为您还需要在 Vaadin 中模拟其他内容。因此,如果您想在没有 运行 应用程序的情况下进行基本 UI 测试,即称为无浏览器测试的技术,您可以研究这个实验性开源项目
https://github.com/mvysny/karibu-testing
还有一个 blog post 描述了如何模拟 UI 和其他需要的 Vaadin 类 的原理。
此外(因为上述方法没有完全涵盖集成测试需求)或者作为另一种选择,您可以使用 Selenium 或 Vaadin TestBench 进行 UI 测试,即自动浏览器测试。