- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我是 Mockito 的新手,我对 thenReturn 方法有疑问。我已经阅读了此类解决方案运行良好的教程,但在我的程序中,与上述示例相比,肯定存在任何不一致之处。
@RunWith(MockitoJUnitRunner.class)
@WebMvcTest(value = MovieRestApiController.class, secure = false)
public class MovieRestApiControllerTest {
@Autowired
private MockMvc mockMvc;
@MockBean
private MovieService movieService;
private ArrayList<Movie> moviesMock;
@Before
public void setUp() {
moviesMock = new ArrayList<>(Arrays.asList(new Movie("Top Gun", "Akcja", "Tony Scott", 15000000, 110)));
}
String exampleMovieJson = "{\"title\":\"Top Gun\",\"director\":\"Tony Scott\",\"runtime\":\"110\":\"budget\":\"15000000\":\"genre:\":\"Akcja\"}";
@Test
public void retrieveDetailsForMovie() throws Exception {
//THIS FUNCTION CAUSE NULL POINTER EXCEPTION
Mockito.when(
movieService.findMovies(Mockito.anyString(), Mockito.anyString())).thenReturn(moviesMock);
RequestBuilder requestBuilder = MockMvcRequestBuilders.get(
"/find-movie").accept(
MediaType.APPLICATION_JSON);
MvcResult result = mockMvc.perform(requestBuilder).andReturn();
System.out.println(result.getResponse());
String expected = "{title:Top Gun,director:Tony Scott,runtime:110,budget:15000000,genre:Akcja}";
JSONAssert.assertEquals(expected, result.getResponse()
.getContentAsString(), false);
}
}
最佳答案
我在使用 MockMvc 的单元测试中混合使用 Mockito 和 Spring 注释得到了不同的结果。这是我使用的一种方法,它使 Mockito、Spring 和 MockMvc 感到高兴。我确信有更好的方法可以做到这一点,如果有人有建议,我很乐意听取。
@RunWith(SpringJUnit4ClassRunner.class)
@WebAppConfiguration
@ContextConfiguration
public class MovieRestApiControllerTest {
// provide a static spring config for this test:
static class ContextConfiguration {
// provide Beans that return a Mockito mock object
@Bean
public MovieService movieService() {
return Mockito.mock(MovieService.class);
}
...
}
@Autowired
private MockMvc mockMvc;
// Autowire your mocks
@Autowired
private MovieService movieService;
private ArrayList<Movie> moviesMock;
@Before
public void setUp() {
moviesMock = new ArrayList<>(Arrays.asList(new Movie("Top Gun", "Akcja", "Tony Scott", 15000000, 110)));
}
String exampleMovieJson = "{\"title\":\"Top Gun\",\"director\":\"Tony Scott\",\"runtime\":\"110\":\"budget\":\"15000000\":\"genre:\":\"Akcja\"}";
// make sure your context is loaded correctly
@Test
public void testContextLoaded() {
assertNotNull(movieService);
}
@Test
public void retrieveDetailsForMovie() throws Exception {
//THIS FUNCTION CAUSE NULL POINTER EXCEPTION
Mockito.when(
movieService.findMovies(Mockito.anyString(), Mockito.anyString())).thenReturn(moviesMock);
RequestBuilder requestBuilder = MockMvcRequestBuilders.get(
"/find-movie").accept(
MediaType.APPLICATION_JSON);
MvcResult result = mockMvc.perform(requestBuilder).andReturn();
System.out.println(result.getResponse());
String expected = "{title:Top Gun,director:Tony Scott,runtime:110,budget:15000000,genre:Akcja}";
JSONAssert.assertEquals(expected, result.getResponse()
.getContentAsString(), false);
}
}
关于java - Mockito thenReturn() 返回空值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50176488/
public class MainClass { public void method1() { ……. String str = getMethod2();
我试图从when().theReturn 返回一个迭代器,但我不断收到此错误: org.mockito.exceptions.misusing.WrongTypeOfReturnValue: Itr
我正在尝试为我的 Spring Controller 编写测试,但遇到了问题。以下代码始终返回 redirect:/welcome 尽管我有 when(result.hasErrors()).then
这确实是一个新手问题,但我不知道如何解决这个问题。 我必须模拟一个方法来返回这样的类。 public Class getAClass(); 如果我做这样的事情 when(this.someInstan
经过大量研究,我没有在 Java 中的 JUnits 中找到这个问题的答案。 我想要做的是:对when().thenReturn(object)调用返回的对象调用一些方法。 例如: public b
我在测试中使用 PowerMockito 模拟静态缓存。一般来说,缓存的工作原理是这样的: Cache.getInstance().findEntityById(AbstractDTO); // so
我能够调整我的测试,但它失败了。问题是,模拟方法仍然返回错误数据。这是我要测试的方法: fun getTextByLanguage(list: List) : String { val dev
我有一个接受项目列表的方法。我希望模拟方法返回相同大小的相应列表(即 List ) 更一般地说,是否可以根据给定的输入动态设置返回值? 问题是我对同一个方法进行了多次测试。测试 A 用于空列表,测试
我已经阅读了此处的所有其他主题,但找不到正确的解决方案。 我正在测试一个调用我想模拟的服务的 Controller 。如果在测试中我控制了 when().thenReturn() 规则的结果,那么它就
我是 Mockito 的新手,我对 thenReturn 方法有疑问。我已经阅读了此类解决方案运行良好的教程,但在我的程序中,与上述示例相比,肯定存在任何不一致之处。 @RunWith(Mockito
我有一个具有 2 个函数的 A 类:函数 a() 返回一个随机数。调用 a() 并返回返回值的函数 b()。 在测试中我写了这个: A test = Mockito.mock(A.class) Moc
我有一个 Tuple 模拟类,它的 getString(0) 和 getString(1) 方法预计会被调用 n 次。而不是写类似的东西, when(tuple.getString(0)).thenR
我正在尝试实现 Mockito 来测试一个特定的方法,但是 .thenReturn(...) 似乎总是返回一个空对象而不是我想要的: 剪切: public class TestClassFacade
我正在研究继承的代码。我编写了一个应该捕获 NullPointerException 的测试(因为它试图从 null 对象调用方法) @Test(expected=NullPointerExcepti
我在 Mockito 中有这个: when(mockedMergeContext.createNewEntityOfType(IService.class)).thenReturn(new Servi
考虑以下类(使用 CDI + 剪切 Restclient) public class A { @Inject Restclient client; public Object init(Stri
我模拟了一个名为 methodA() 的方法。 我有一个名为 linkedListA 的链表。现在, 我有一行代码来模拟 methodA 的返回,这样 when(methodA()).thenRetu
我一直在试图弄清楚为什么当我有 when(controller.findIngredientsByCategory(any()).thenReturn(Collections.emptyList())
运行以下代码时,我收到错误消息 Unfinished Stubbing here detected: import static org.mockito.Mockito.mock; import st
测试类 public class CollectionImplementationUnitTest { CollectionImplementation colImp; public void
我是一名优秀的程序员,十分优秀!