无限循环的单元测试

时间:2017-09-27 11:09:50

标签: java junit mockito

这是我的java线程运行方法,我想为这个方法编写单元测试。但是使用infinte循环我无法做到。很高兴有人能帮助我。

 public void run() {
        BufferedReader in = new BufferedReader(new InputStreamReader(System.in));
        String line = null;
        boolean oneTime = true;
        loadDescription();
        while (true) {

            try {
                if (oneTime) {
                    System.out.println("press enter to get the console...............");
                    oneTime = false;
                }
                line = in.readLine();
                if (line != null) {
                    processInput(line);
                }

            } catch (Exception e) {
                logger.error("Error occurred while processing console");
                logger.error(e.getMessage(), e);
            }
        }
    }

这是loadDescription()方法

private void loadDescription() {
        BufferedReader in = null;
        StringBuffer stringBuffer = null;
        String str = null;
        try {
            stringBuffer = new StringBuffer();
            in = new BufferedReader(new FileReader(IConstants.MANUAL_FILE));
            str = in.readLine();
            while (str != null) {
                stringBuffer.append(str + "\n");
                str = in.readLine();
            }
            dfixDescription = stringBuffer.toString();
        } catch (Exception e) {
            logger.error(e.getMessage(), e);  //To change body of catch statement use File | Settings | File Templates.
        } finally {
            try {
                if (in != null) {
                    in.close();
                }
            } catch (IOException e) {
                logger.error(e.getMessage(), e);  //To change body of catch statement use File | Settings | File Templates.
            }
        }
    }

private void processInput(String line) {
        line = line.trim();
        logger.info("Admin Message received: " + line);
        if ("?".equalsIgnoreCase(line) || "".equals(line)) {
              printDescription();
        } else if (line.toUpperCase().startsWith(AdminCommands.RELOAD)) {
            loadDescription();
            printDescription();
        } else if (line.toUpperCase().startsWith(AdminCommands.EXIT)) {
            adminManager.stopDFIXRouter();
            logger.debug("Closing Application.....");
            logger.debug("Closed.");
            System.exit(0);
        } else if (line.toUpperCase().startsWith(AdminCommands.RESET_OUT_SEQUENCE)) {
            try {
                String sessionIdentifier = line.split(",")[1].trim();
                int seqNo = Integer.parseInt((line.split(",")[2]).trim());
                adminManager.resetOutSequence(sessionIdentifier, seqNo);
            } catch (Exception e) {
                logger.error(e.getMessage(), e);  //To change body of catch statement use File | Settings | File Templates.
            }
        } else if (line.toUpperCase().startsWith(AdminCommands.RESET_IN_SEQUENCE)) {
            try {
                String sessionIdentifier = line.split(",")[1].trim();
                int seqNo = Integer.parseInt((line.split(",")[2]).trim());
                adminManager.resetInSequence(sessionIdentifier, seqNo);
            } catch (Exception e) {
                logger.error(e.getMessage(), e);  //To change body of catch statement use File | Settings | File Templates.
            }
        } else if (line.toUpperCase().startsWith(AdminCommands.CONNECT)) {
            String sessionIdentifier = line.split(",")[1].trim();
            adminManager.connectSession(sessionIdentifier);
        } else if (line.toUpperCase().startsWith(AdminCommands.DISCONNECT)) {
            String sessionIdentifier = line.split(",")[1].trim();
            adminManager.disconnectSession(sessionIdentifier);
        } else if (line.toUpperCase().startsWith(AdminCommands.ACTIVATE)) {
            adminManager.startDFIXRouter();
        } else if (line.toUpperCase().startsWith(AdminCommands.PASSIVATE)) {
            adminManager.stopDFIXRouter();
        } else if (line.toUpperCase().startsWith(AdminCommands.RUN_EOD)) {
            try {
                String sessionIdentifier = line.split(",")[1].trim();
                adminManager.runEod(sessionIdentifier);
            } catch (Exception e) {
                logger.error(e.getMessage(), e);  //To change body of catch statement use File | Settings | File Templates.
            }
        } else if (line.toUpperCase().startsWith(AdminCommands.SHOW_STATUS)) {
            adminManager.showStatus();
        } else {
            System.out.println("Usage: type ? for help");
        }
        System.out.print(">");
    }

这些是run方法的相关方法。以下是我的测试方法

 @Test
    public void run_activate() throws Exception{

        String data = "activate";
        InputStream in = new ByteArrayInputStream(data.getBytes());
        System.setIn(in);
        PowerMockito.mockStatic(AdminManager.class);
        PowerMockito.when(AdminManager.getInstance()).thenReturn(adminManagerTest);
        Mockito.doNothing().when(adminManagerTest).startDFIXRouter();
        dfixrtrAdminTest.run();
        Mockito.verify(adminManagerTest, Mockito.times(1)).startDFIXRouter();

    }

这有什么问题。当我运行测试方法时,它不会停止,我无法验证是否调用了所需的方法如何处理它。

2 个答案:

答案 0 :(得分:3)

您需要使用函数替换无限循环内的代码。

然后为该函数编写单元测试。

答案 1 :(得分:0)

显然你无法测试循环是否真的“无限”。

但是你仍然可以退一步看看所有这个方法正在做的细节,例如:

  • 打开阅读器,
  • 具有确保“某事”仅发生一次的特殊情况

换句话说:通常使用单元测试,您需要仔细考虑代码可以采用的不同路径(想想:“白盒测试”)。这可以告诉你有关打击角落案件所需的测试用例。另一方面,您还应该查看您的方法的公共合同(黑盒测试) - 您希望此方法做什么,而不知道它的实现。这就是你如何看待你的代码,然后进行合理的测试。

除此之外:你的榜样是虚假的。这里不应该有一个无限循环 - 在某些时候所有行都将被读取,read()将不会返回除null之外的任何其他内容。