目前我写了一个小的downloadService,让用户下载一个文件(目前只有excel)。代码工作正常,但我不知道如何为它编写单元测试。那是我的代码:
package com.pzm.service;
import com.pzm.model.UserBillingsMock;
import com.pzm.model.report.ExcelReport;
import com.pzm.model.report.Report;
import com.pzm.model.report.ReportFactory;
import org.springframework.stereotype.Repository;
import javax.servlet.ServletOutputStream;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.util.List;
/**
* Created by akfaz on 6/26/14.
*/
@Repository
public class DownloadService {
private Report report;
private List<UserBillings> userBillings;
public void setBill(List<UserBillings> userBillings) {
this.userBillings = userBillings;
}
public void download(HttpServletResponse response, String reportType) {
response.setContentType("application/vnd.ms-excel");
response.setHeader("Content-Disposition", "attachment; filename=MyExcel.xls");
report = new ReportFactory().create(reportType, userBillings);
saveFile(response, report);
}
private void saveFile(HttpServletResponse response, Report report) {
try {
ServletOutputStream outputStream = response.getOutputStream();
report.write(outputStream);
outputStream.flush();
} catch (IOException e) {
e.printStackTrace();
}
}
}
单元测试 - 试图使用Mockito,但得到例外:
单元测试:
package com.pzm.service;
import junit.framework.TestCase;
import org.junit.After;
import org.junit.Before;
import org.junit.Test;
import javax.servlet.http.HttpServletResponse;
import static org.mockito.Mockito.*;
/**
* Created by akfaz on 7/5/14.
*/
public class DownloadServiceTest extends TestCase{
HttpServletResponse mockResponse;
DownloadService downloadService;
@Before
public void setUp() throws Exception {
mockResponse = mock(HttpServletResponse.class);
downloadService = new DownloadService();
}
@Test
public void testDownload() throws Exception {
downloadService.download(mockResponse, "xls");
verify(mockResponse).getContentType();
}
}
和例外:
org.apache.poi.openxml4j.exceptions.OpenXML4JRuntimeException: Fail to save: an error occurs while saving the package : null
at org.apache.poi.openxml4j.opc.ZipPackage.saveImpl(ZipPackage.java:500)
at org.apache.poi.openxml4j.opc.OPCPackage.save(OPCPackage.java:1417)
at org.apache.poi.POIXMLDocument.write(POIXMLDocument.java:179)
at com.pzm.model.report.ExcelReport.write(ExcelReport.java:46)
at com.pzm.service.DownloadService.saveFile(DownloadService.java:40)
at com.pzm.service.DownloadService.download(DownloadService.java:34)
at com.pzm.service.DownloadServiceTest.testDownload(DownloadServiceTest.java:32)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at org.junit.internal.runners.JUnit38ClassRunner.run(JUnit38ClassRunner.java:83)
at org.junit.runner.JUnitCore.run(JUnitCore.java:157)
at com.intellij.junit4.JUnit4IdeaTestRunner.startRunnerWithArgs(JUnit4IdeaTestRunner.java:74)
at com.intellij.rt.execution.junit.JUnitStarter.prepareStreamsAndStart(JUnitStarter.java:202)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:65)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
at com.intellij.rt.execution.application.AppMain.main(AppMain.java:120)
Caused by: java.lang.NullPointerException
at java.util.zip.DeflaterOutputStream.<init>(DeflaterOutputStream.java:84)
at java.util.zip.DeflaterOutputStream.<init>(DeflaterOutputStream.java:142)
at java.util.zip.ZipOutputStream.<init>(ZipOutputStream.java:118)
at java.util.zip.ZipOutputStream.<init>(ZipOutputStream.java:104)
at org.apache.poi.openxml4j.opc.ZipPackage.saveImpl(ZipPackage.java:433)
... 28 more
答案 0 :(得分:7)
创建模拟对象时
mockResponse = mock(HttpServletResponse.class);
默认情况下,所有具有引用类型返回类型(减去一些特殊情况)的方法都返回null
。
因此,此代码段中的getOutputStream()
的返回值
ServletOutputStream outputStream = response.getOutputStream();
是null
。
您需要设置期望并指定返回值。
when(mockResponse.getOutputStream().thenReturn(/* the value to return when that method is invoked */);
这称为stubbing。