- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Spring 和 Mockito 测试的新手。我在 Stack Overflow 上找不到问题的答案。
我有以下类(class):
@Component
@Chronolog(logLevel = ChronologLevel.DEBUG)
public class CityService {
private static final Logger LOGGER = LoggerFactory.getLogger(CityService.class);
@Autowired
private GeoClient geoClient;
@Autowired
private EOClient eoClient;
/**
*
* @param rrCode
* @return
*/
public City getCityFromCode(String rrCode) {
City city = new City();
LinkedHashMap geoResponse = geoClient.getCityInfoByRRCode(rrCode);
city.setRrCode(rrCode);
LinkedHashMap result = (LinkedHashMap) geoResponse.get("City");
if(result != null){
city.setLabel((String) result.get("Name"));
}else{
city.setLabel("");
}
return city;
}
/**
*
* @param maxVia
* @return
*/
public List<OrigineDestination> getODFromMaxVia(String maxVia) {
List<OrigineDestination> originesDestinations = new ArrayList<OrigineDestination>();
OrigineDestination origineDestination;
Trips odResponse = eoClient.getCityInfoByMAxVia(maxVia);
for (Trip trip : odResponse.getTrip()) {
origineDestination = new OrigineDestination();
origineDestination.setOriginCity(trip.getOriginCity());
origineDestination.setOriginStation(trip.getOriginStation());
origineDestination.setDestinationCity(trip.getDestinationCity());
origineDestination.setDestinationStation(trip.getDestinationStation());
originesDestinations.add(origineDestination);
}
return originesDestinations;
}
/**
*
* @return
*/
public Set<City> getOrigins() {
List<OrigineDestination> retourOriginesDestination = getODFromMaxVia("1");
Set<City> origins = new HashSet<>();
Set<String> orrCodes = new HashSet<>();
for (OrigineDestination origineDestination : retourOriginesDestination) {
if (!orrCodes.contains(origineDestination.getOriginCity())) {
orrCodes.add(origineDestination.getOriginCity());
City city = new City();
city.setRrCode(origineDestination.getOriginCity());
city.setLabel(getCityFromCode(city.getRrCode()).getLabel());
if(!city.getLabel().isEmpty()){
origins.add(city);
}
}
}
return origins;
}
/**
*
* @param origin
* @return
*/
public Set<City> getDestinations(String origin) {
List<OrigineDestination> retourOriginesDestination = getODFromMaxVia("1");
Set<City> matchedOrigins = new HashSet<>();
Set<String> drrCodes = new HashSet<>();
for (OrigineDestination origineDestination : retourOriginesDestination) {
if (origin == null ||
(origin != null && origin.toUpperCase().equals(origineDestination.getOriginCity()))) {
if (!drrCodes.contains(origineDestination.getDestinationCity())) {
drrCodes.add(origineDestination.getDestinationCity());
City city = new City();
city.setRrCode(origineDestination.getDestinationCity());
city.setLabel(getCityFromCode(city.getRrCode()).getLabel());
if(!city.getLabel().isEmpty()){
matchedOrigins.add(city);
}
}
}
}
return matchedOrigins;
}
}
我的测试类看起来像:
@RunWith(MockitoJUnitRunner.class)
public class CityServiceTest {
@InjectMocks
private CityService cityService;
@Mock
GeoClient geoClient;
@Mock
EOClient eoClient;
@Test
public void testGetOriginsCasOK() {
cityService.getOrigins();
}
@Test
public void testGetDestinationsCasOK() {
cityService.getDestinations("FRPAR");
}
@Test
public void testGetDestinationsCasKO() {
cityService.getDestinations("FRET");
}
}
我的问题是服务为空,我不想 mock 它。我尝试了几种注释,但没有找到该使用哪一种。
我做错了什么?
java.lang.NullPointerException
at com.xxxx.matrixar.services.CityService.getODFromMaxVia(CityService.java:89)
at com.xxxx.matrixar.services.CityService.getDestinations(CityService.java:129)
at com.xxxx.matrixar.services.CityServiceTest.testGetDestinationsCasKO(CityServiceTest.java:40)
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.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:47)
at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:44)
at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
at org.junit.runners.ParentRunner.runLeaf(ParentRunner.java:271)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:70)
at org.junit.runners.BlockJUnit4ClassRunner.runChild(BlockJUnit4ClassRunner.java:50)
at org.junit.runners.ParentRunner$3.run(ParentRunner.java:238)
at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:63)
at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:236)
at org.junit.runners.ParentRunner.access$000(ParentRunner.java:53)
at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:229)
at org.junit.runners.ParentRunner.run(ParentRunner.java:309)
at org.mockito.internal.runners.JUnit45AndHigherRunnerImpl.run(JUnit45AndHigherRunnerImpl.java:37)
at org.mockito.runners.MockitoJUnitRunner.run(MockitoJUnitRunner.java:62)
at org.junit.runner.JUnitCore.run(JUnitCore.java:160)
at com.intellij.rt.execution.junit.JUnitStarter.main(JUnitStarter.java:67)
最佳答案
您需要指定模拟对象在实际调用时应返回的内容。
例如,在 CityService.getODFromMaxVia()
中,您调用 geoClient.getCityInfoByRRCode()
,然后使用此调用返回的结果。
除非您指定其他内容,否则模拟将始终返回null
:
when( geoClient.getCityInfoByRRCode( "FRPAR" ) ).thenReturn( ... );
这允许您绕过模拟对象中的复杂代码,并仅返回您在本例中期望的内容。
请记住:您在这里测试您的服务,而不是地理客户端。其他地方已经对地理客户端进行了测试,因此没有必要确保它在服务中使用时执行正确的操作。
关于java - 使用mockito测试服务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27548390/
我一直面临一个奇怪的问题。基本上,当我正常运行 Mockito 测试时,即“作为 Junit 测试运行”时,它给了我以下错误。有人可以帮助我请问我的错误是什么? 收到的错误: java.lan
我正在使用 Mockito 以及 mockito-inline用于模拟静态方法。我正在尝试申请 doNothing或类似的行为,到静态 void 方法。以下解决方法有效,但我认为应该有一种更方便的方法
我正在尝试验证我正在测试的类是否调用了正确的依赖类的方法。所以我试图匹配方法参数,但我并不真正关心这个测试中的实际值,因为我不想让我的测试变得脆弱。 但是,我在设置它时遇到了麻烦,因为 Mockito
我正在使用 Mockito 编写单元测试,并且在模拟注入(inject)的类时遇到问题。问题是两个注入(inject)的类是相同的类型,仅通过它们的 @Qualifier 注释进行区分。如果我尝试简单
在我的断言中的以下简单练习中,我期望 1,但得到 0。为什么我会看到这种行为? public class MockitoTest { POJO mockedPojo; @Before
我正在创建一个通用模拟客户端来测试 HTTP 交互。为此,我希望能够以相同的方法进行多次响应。使用普通模拟,这不是问题: when(mock.execute(any(), any(), any()))
我需要全局模拟类方法。 我的意思是,我不能创建模拟对象和 stub 方法。我的 api 不将此对象作为参数,所以我不能在函数调用中传递它,但是这个类的对象是在这些函数中创建并在那里使用的。这就是为什么
我正在尝试使用 Mockito 2.18.3 框架模拟我们公司内部库中提供的 final 类,不幸的是我们无权更改库中的代码。但每当我运行时,我都会收到以下错误: java.lang.NoClassD
研究了mockito测试框架,学习了powermock,突然发现一个叫powermockito的框架,看不懂了。 谁能告诉我这三个测试工具的区别? 最佳答案 Mockito 是市场标准模拟框架,味道非
我想跳过检查验证调用中的参数之一。因此对于: def allowMockitoVerify=Mockito.verify(msg,atLeastOnce()).handle(1st param,,3r
为了模拟在被测方法内部构造的本地对象上的局部变量/方法调用,我们目前使用的是 PowerMockito 库。 我们正在尝试评估是否可以使用 mockito-inline(版本 3.7.7)来做同样的事
我在想, 如果在 @Before 方法中我正在初始化模拟对象,我不应该在 @After 中取消对它的引用吗?或者那会是多余的吗?为什么? 最佳答案 不需要,JUnit 会为每个测试方法创建一个新的测试
我想使用 Mockito 验证字符串参数是否满足两个条件: verify(mockClass).doSomething(Matchers.startsWith("prefix")); verify(m
如果我像这样创建一个模拟 when(servicesTestEnv.mockUserProfileAndPortfolioTransactionRepository.get(servicesTestE
使用 Mockito 我遇到了以下问题: Mockito.when(restOperationMock.exchange( Mockito.anyString(), M
我想知道描述中的事情是否可行以及如何去做。 我知道你可以调用原始方法然后像这样做答案: when(presenter, "myMethod").doAnswer() 但我想对它们进行不同的排序,首先执
我试图弄清楚org.mockito.AdditionalMatchers是如何工作的,但我失败了。为什么这个测试失败了? import static org.hamcrest.CoreMatchers
有人知道使用 Mockito 为 ATG 编写单元测试用例吗?我在凝视时遇到了以下讨论 - Automated unit tests for ATG development和 Using PowerM
我想知道描述中的事情是否可行以及如何去做。 我知道你可以调用原始方法然后像这样做答案: when(presenter, "myMethod").doAnswer() 但我想对它们进行不同的排序,首先执
我有以下接口(interface)CatalogVersionService,它公开了一些服务。我还有一个单元测试,它通过使用 Mockito 来模拟这个接口(interface),如下所示: Cat
我是一名优秀的程序员,十分优秀!