- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个像这样的 Controller 类,它将一些执行器传递到可运行实例中。这不是它的工作原理,但为了简单起见,我这样做了。
package com.test.executor;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class Controller {
private ExecutorService executor;
public Controller() {
executor = Executors.newCachedThreadPool();
}
public void doRun() {
MyRunner runner = new MyRunner(executor);
Thread myRunner = new Thread(runner);
myRunner.start();
}
public static void main(String[] args) {
new Controller().doRun();
}
}
运行程序接收执行程序的实例,然后传递某些可调用对象。现在,可调用对象有点不同,因为某些可调用对象访问数据库/调用某些 Web 服务/文件系统
我在如何为这种情况编写正确的 JUnit 方面遇到一些问题。我希望拥有尽可能多的代码覆盖率。
package com.test.executor;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
public class MyRunner implements Runnable {
private ExecutorService executor;
public MyRunner(ExecutorService executor) {
this.executor = executor;
}
@Override
public void run() {
// TODO Auto-generated method stub
Future<Boolean> ret1 = executor.submit(new SampleCall1());
try {
ret1.get(5, TimeUnit.MINUTES);
} catch (InterruptedException | ExecutionException | TimeoutException e) {
e.printStackTrace();
}
// Do other things
Future<List<String>> ret2 = executor.submit(new SampleCall2());
try {
ret2.get(5, TimeUnit.MINUTES);
} catch (InterruptedException | ExecutionException | TimeoutException e) {
e.printStackTrace();
}
// Do other things
Future<Long> ret3 = executor.submit(new SampleCall3());
try {
ret3.get(5, TimeUnit.MINUTES);
} catch (InterruptedException | ExecutionException | TimeoutException e) {
e.printStackTrace();
}
}
public static class SampleCall1 implements Callable<Boolean> {
@Override
public Boolean call() throws Exception {
// Sample Return Only
// This will call JSON web service
return true;
}
}
public static class SampleCall2 implements Callable<List<String>> {
@Override
public List<String> call() throws Exception {
// Sample Return Only
// This will call Database
return Collections.EMPTY_LIST;
}
}
public static class SampleCall3 implements Callable<Long> {
@Override
public Long call() throws Exception {
// Sample Return Only
// This will access some file system
return 1L;
}
}
}
我的问题是为此编写单元测试的正确方法是什么。我正在收集一些关于如何对这个类(class)进行单元测试的建议?我不知道在我的 junit/mockito 实例中要模拟什么。我应该 mock 每个可调用对象吗?然后为 MyRunner 创建一个测试用例。
我担心依赖性......因为我正在连接到数据库/网络服务/和文件系统,所以我想寻求一些建议。
更新2
package com.test.executor;
import java.util.Collections;
import java.util.List;
import java.util.concurrent.Callable;
import java.util.concurrent.ExecutionException;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Future;
import java.util.concurrent.TimeUnit;
import java.util.concurrent.TimeoutException;
public class MyRunner implements Runnable {
private ExecutorService executor;
public MyRunner(ExecutorService executor) {
this.executor = executor;
}
@Override
public void run() {
executeTasks1();
// Do other things
executeTasks2();
// Do other things
executeTasks3();
}
public boolean executeTasks1(){
// TODO Auto-generated method stub
Future<Boolean> ret1 = executor.submit(new SampleCall1());
try {
return ret1.get(5, TimeUnit.MINUTES);
} catch (InterruptedException | ExecutionException | TimeoutException e) {
e.printStackTrace();
}
}
public List<String> executeTasks2(){
Future<List<String>> ret2 = executor.submit(new SampleCall2());
try {
return ret2.get(5, TimeUnit.MINUTES);
} catch (InterruptedException | ExecutionException | TimeoutException e) {
e.printStackTrace();
}
}
public Long executeTasks3(){
Future<Long> ret3 = executor.submit(new SampleCall3());
try {
return ret3.get(5, TimeUnit.MINUTES);
} catch (InterruptedException | ExecutionException | TimeoutException e) {
e.printStackTrace();
}
}
public static class SampleCall1 implements Callable<Boolean> {
@Override
public Boolean call() throws Exception {
// Sample Return Only
// This will call JSON web service
return true;
}
}
public static class SampleCall2 implements Callable<List<String>> {
@Override
public List<String> call() throws Exception {
// Sample Return Only
// This will call Database
return Collections.EMPTY_LIST;
}
}
public static class SampleCall3 implements Callable<Long> {
@Override
public Long call() throws Exception {
// Sample Return Only
// This will access some file system
return 1L;
}
}
}
最佳答案
不要在代码覆盖率上花费太多时间。在某种程度上要务实。测试什么是值得测试的。提高测试质量,而不是数量。关于指标的一些旁注:100% 线路覆盖率不如高分支覆盖率那么重要,获得高分支覆盖率可能会花费您大量时间,即使这样:您可能不需要采用所有可能的路线。 PIT (mutation testing)是一个有用的“工具”,它通过更改被测代码来检查测试的实际效果。但请使用该信息作为指导,而不是作为实现更多测试的措施。别夸张! (也许如果你正在开发一个库,你不想再经常改变或者你想让它坚如磐石(并且你有空闲时间),你可以,但否则我不会)
曾经有一段时间,我非常准确地测试了一切。问题是:一旦发生变化(例如:今天我们需要 X,明天是 Y),许多测试就会失败。那么就需要大量的返工。如果您测试最合适的,一旦需求发生巨大变化,您就可以专注于重要的事情,这应该花费更少的时间。
看看您提供的代码,我可能会为每个 Callable
实现编写一个测试(类),只是为了确保它们执行我想要的操作(这可能会导致提取Callable 类作为副作用)。对于 Controller 和运行者,我还不太确定... MyRunner
对我来说似乎已经过时了...但也许不是。所以我可能只会测试 Controller ......
关于模拟:我开始尽可能地省略模拟。大多数时候我还会添加集成测试,我想知道系统作为一个整体如何运行以及它是否按预期工作。我见过很多测试,其中有很多模拟,通过更改任何代码,没有单元测试失败,尽管我认为有些测试应该失败。我还看到很多单元测试,这些单元测试实际上看起来像集成测试,但到处都是模拟。那么模拟首先有什么帮助呢?单独设置模拟可能花费了太多时间。但这又是我的观点。因此,尽管许多人喜欢测试金字塔有一个广泛的单元测试底部,但我认为它更务实,并将一些测试移动到集成测试“层”,而不是使用大量的模拟。最后,这也是可用性和速度的问题。您希望测试能够快速给出结果,但您仍然希望结果具有最大值(value)(模拟仅给出部分结果)。
关于java - 对可调用执行器进行单元测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51586922/
我有一个“有趣”的问题,即以两种不同的方式运行 wine 会导致: $> wine --version /Applications/Wine.app/Contents/Resources/bin/wi
我制作了这个网络抓取工具来获取网页中的表格。我使用 puppeteer (不知道 crontab 有问题)、Python 进行清理并处理数据库的输出 但令我惊讶的是,当我执行它时 */50 * * *
JavaScript 是否被调用或执行取决于什么?准确地说,我有两个函数,它们都以相同的方式调用: [self.mapView stringByEvaluatingJavaScriptFromStri
我目前正在使用 python 做一个机器学习项目(这里是初学者,从头开始学习一切)。 只是想知道 statsmodels 的 OLS 和 scikit 的 PooledOlS 使用我拥有的相同面板数据
在使用集成对象模型 (IOM) 后,我可以执行 SAS 代码并将 SAS 数据集读入 .Net/C# 数据集 here . 只是好奇,使用 .Net 作为 SAS 服务器的客户端与使用 Enterpr
有一些直接的 jQuery 在单击时隐藏打开的 div 未显示,但仍将高度添加到导航中以使其看起来好像要掉下来了。 这个脚本工作正常: $(document).ready(funct
这个问题已经有答案了: How do I compare strings in Java? (23 个回答) 已关闭 4 年前。 这里是 Java 新手,我正在使用 NetBeans 尝试一些简单的代
如果我将它切换到 Python 2.x,它执行 10。这是为什么? 训练逻辑回归模型 import keras.backend as
我有两个脚本,它们包含在 HTML 正文中。在第一个脚本中,我初始化一个 JS 对象,该对象在第二个脚本标记中引用。 ... obj.a = 1000; obj.
每当我运行该方法时,我都会收到一个带有数字的错误 以下是我的代码。 public String getAccount() { String s = "Listing the accounts";
我已经用 do~while(true) 创建了我的菜单;但是每次用户输入一个数字时,它不会运行程序,而是再次显示菜单!你怎么看? //我的主要方法 public static void main(St
执行命令后,如何让IPython通知我?我可以使用铃声/警报还是通过弹出窗口获取它?我正在OS X 10.8.5的iTerm上运行Anaconda。 最佳答案 使用最新版本的iTerm,您可以在she
您好,我刚刚使用菜单栏为 Swing 编写了代码。但是问题出现在运行中。我输入: javac Menu.java java Menu 它没有给出任何错误,但 GUI 没有显示。这是我的源代码以供引用:
我觉得这里缺少明显的东西,但是我看不到它写在任何地方。 我使用Authenticode证书对可执行文件进行签名,但是当我开始学习有关它的更多信息时,我对原样的值(value)提出了质疑。 签名的exe
我正在设计一个应用程序,它使用 DataTables 中的预定义库来创建数据表。我想对数据表执行删除操作,为此应在按钮单击事件上执行 java 脚本。 $(document).ready(functi
我是 Haskell 新手,如果有人愿意帮助我,我会很高兴!我试图让这个程序与 do while 循环一起工作。 第二个 getLine 命令的结果被放入变量 goGlenn 中,如果 goGlenn
我有一个用 swing 实现迷你游戏的程序,在主类中我有一个循环,用于监听游戏 map 中的 boolean 值。使用 while 实现的循环不会执行一条指令,如果它是唯一的一条指令,我不知道为什么。
我正在尝试开发一个连接到 Oracle 数据库并执行函数的 Java 应用程序。如果我在 Eclipse 中运行该应用程序,它可以工作,但是当我尝试在 Windows 命令提示符中运行 .jar 时,
我正在阅读有关 Java 中的 Future 和 javascript 中的 Promises 的内容。下面是我作为示例编写的代码。我的问题是分配给 future 的任务什么时候开始执行? 当如下行创
我有一个常见的情况,您有两个变量(xSpeed 和 ySpeed),当它们低于 minSpeed 时,我想将它们独立设置为零,并在它们都为零时退出。 最有效的方法是什么?目前我有两种方法(方法2更干净
我是一名优秀的程序员,十分优秀!