在Java中捕捉异常



我正在为一个方法编写一个JUnit测试用例。我已经为它写了积极的场景,但我不确定该方法是否正确编写或设计,因为我无法进入Catch块来捕获异常。我需要这个来更好地覆盖分支机构。我不能用Mockito,因为DaoExceptionChecked Exception

穆特

public List<IUiIntegrationDto> retrieveUiIntegrationReportData(List<String> agencyCode, Integer createdDays, String lob, String transactionStatus, 
        List<String> accounts, String sortKey, String sortOrder) throws ManagerException {
        List<IUiIntegrationDto> intgList = new ArrayList<IUiIntegrationDto>();
        try {
            intgList = getUiIntegrationDao().retrieveUiIntegrationReportData(agencyCode, createdDays, lob, transactionStatus, accounts);
            if (null != intgList) {
                ComparatorUtil.sortESignatureIntegrationFields(intgList, sortKey, sortOrder);
            }
        } catch (DaoException de) {
            String message = "Error retrieving ui integration report data";
            IExceptionHandlerResponse r = getExceptionHandler().handleData(de, ManagerException.class, message);
            if (r.isRethrow()) {
                ManagerException me = (ManagerException) r.getThrowable();
                throw me;
            }
        }
        return intgList;
    }
JUnit

@Test(expected = DaoException.class)
public void testRetrieveUiIntegrationReportData_Exception() throws Exception {
    List<String> agencyCode = new ArrayList<>();
    agencyCode.add("044494");
    agencyCode.add("044400");
    Integer createdDays = 30;
    String lob = "01";
    String transactionStatus = "Completed";
    List<String> accounts = new ArrayList<>();
    accounts.add("CorpESignClientUser");
    accounts.add("GW_SYS_USER");
    String sortKey = "createdDate";
    String sortOrder = "desc";
    UiIntegrationManager integrationManager = new UiIntegrationManager();
    IUiIntegrationDao integrationDao = Mockito.mock(IUiIntegrationDao.class);
    IUiIntegrationDto uiIntegrationDto = new UiIntegrationDto();
    uiIntegrationDto.setClientUser("CorpESignClientUser");
    List<IUiIntegrationDto> integrationDto = new ArrayList<>();
    integrationDto.add(uiIntegrationDto);
    integrationManager.setUiIntegrationDao(integrationDao);
//  Mockito.doThrow(new DaoException("Exception thrown")).when(integrationDao.retrieveUiIntegrationReportData(agencyCode, createdDays, lob, transactionStatus, accounts));
//  Mockito.when(integrationDao.retrieveUiIntegrationReportData(agencyCode, createdDays, lob, transactionStatus, accounts)).thenReturn(integrationDto);
    integrationDto = integrationManager.retrieveUiIntegrationReportData(agencyCode, createdDays, lob, transactionStatus, accounts, sortKey, sortOrder);
    assertNotNull(integrationDto);
    assertFalse(agencyCode.isEmpty());
    assertEquals(2, agencyCode.size()); 
    assertNotNull(accounts);
    assertEquals("CorpESignClientUser", accounts.get(0));
    assertFalse(integrationDto instanceof ArrayList);
}

如有任何帮助,不胜感激

谢谢,

也许你可以求助于powermock,来"处理"那个静态调用。

我通常的建议是:如果一些static调用让你很烦;那就把它删掉。

简单地创建一个接口来表示你需要的功能;然后创建一个执行静态调用的简单实现(将在您的生产环境中使用)。在您的测试环境中,您使用依赖注入。意思是:你创建了一个新接口的模拟的实例;然后把它交给全班同学。

就是这样。突然之间,您只需要EasyMock来模拟常见的非静态方法调用。

你猜怎么着:这也提高了你的设计;因为它允许您将客户端代码与包含该静态方法的类完全解耦!

相关内容

  • 没有找到相关文章

最新更新