我的代码中包含以下服务类。
public class MyServiceImpl {
public List<Group> getGroups() throws JAXBException {
List<Group> viewModel = new ArrayList<Group>();
File file = new File(MyServiceImpl.class.getClassLoader().getResource("filename").getPath());
.....
....
}
}
我正在尝试为getGroups()
方法编写Junit,并且受困于创建新文件的行。我尝试使用EasyMock和Mockito,但无法正常工作。
EasyMock.expect(MyServiceImpl.class.getClassLoader().getResource("filename").getPath()).andReturn("path");
运行测试时,我得到以下提示。
java.lang.NullPointerException
at com.mysite.services.content.MyServiceImplTest.testGetGroups(MyServiceImplTest.java:42)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
at java.lang.reflect.Method.invoke(Unknown Source)
at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:44)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:15)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:41)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:20)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:44)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:180)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:41)
at org.junit.runners.ParentRunner$1.evaluate(ParentRunner.java:173)
at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:28)
at org.junit.internal.runners.statements.RunAfters.evaluate(RunAfters.java:31)
at org.junit.runners.ParentRunner.run(ParentRunner.java:220)
at org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:86)
at org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:459)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:675)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:382)
at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:192)
修改
添加测试类。
public class MyServiceImplTest {
private MyServiceImpl service;
@Before
public void setup() {
service = new MyServiceImpl();
}
@Test
public void testGetGroups() throws Exception {
EasyMock.expect(MyServiceImpl.class.getClassLoader().getResource("filename").getPath()).andReturn("path");
service.getGroups();
}
感谢您的帮助。谢谢。
答案 0 :(得分:0)
在调用模拟方法之前,您是否以模拟作为参数调用EasyMocks的重播方法?如果不是,那可能就是为什么您会得到一个Null Pointer异常的原因。
答案 1 :(得分:0)
添加测试类后,我看到了问题。
尝试一下:
public class MyServiceImplTest {
private MyServiceImpl service;
@Before
public void setup() {
service = EasyMock.createMock(MyServiceImpl.class);
}
@Test
public void testGetGroups() throws Exception {
EasyMock.expect(MyServiceImpl.getClass.getClassLoader()
.getResource("filename")
.getPath())
.andReturn("path");
EasyMock.replay(service);
//Do something with Mock
EasyMock.verify(service);
}
如果要调用service.getGroups(),则需要模拟该方法调用或使用部分模拟。在此处查看并搜索部分模拟:EasyMock Guide
答案 2 :(得分:0)
这里的模拟物在哪里?请阅读EasyMock文档,因为您不了解模拟的工作原理。
您希望MyServiceImpl.class.getClassLoader().getResource("filename").getPath()
返回特定值。这实际上是不可能的。这意味着要比MyServiceImpl.class
和ClassLoader
模拟URI
(不可能,至少要容易)。
但是这样做是没有意义的。真正的问题是:为什么要嘲笑那个?在您的测试环境中,这应该有一个已知的明确答案。只需在测试中使用它即可。
如果出于某些奇怪的原因,您确实要更改此答案,则应该重构代码和类似的方法
protected File getFileToMe() {
return new File(getClass().getResource("/filename").getPath());
}
然后您可以测试使用匿名内部类或部分模拟方法覆盖该方法。
答案 3 :(得分:0)
我能够通过创建测试文件filename
并将其放置在src/test/resource
文件夹中并在运行测试时通过解决该问题。