我正在使用简单的转换器将字符串转换为枚举。这是自定义转换器:
@Component
public class SessionStateConverter implements Converter<String, UserSessionState> {
@Override
public UserSessionState convert(String source) {
try {
return UserSessionState.valueOf(source.toUpperCase());
} catch (Exception e) {
LOG.debug(String.format("Invalid UserSessionState value was provided: %s", source), e);
return null;
}
}
}
当前,我在rest控制器中将UserSessionState用作PathVariable
。该实现按预期工作。但是,当我尝试对其余的控制器进行单元测试时,似乎无法进行转换,也无法使用控制器方法。
@RunWith(MockitoJUnitRunner.class)
public class MyTest {
private MockMvc mockMvc;
@Mock
private FormattingConversionService conversionService;
@InjectMocks
private MynController controller;
@Before
public void setup() {
conversionService.addConverter(new SessionStateConverter());
mockMvc = MockMvcBuilders.standaloneSetup(controller).setConversionService(conversionService).build();
}
@Test
public void testSetLoginUserState() throws Exception {
mockMvc.perform(post("/api/user/login"));
}
}
在调试模式下,出现以下错误:
nested exception is java.lang.IllegalStateException: Cannot convert value of type 'java.lang.String' to required type 'rest.api.UserSessionState': no matching editors or conversion strategy found
我认为转换模拟服务无效。 有什么想法吗?
答案 0 :(得分:1)
conversionService
是一个模拟。
所以这个:
conversionService.addConverter(new SessionStateConverter());
呼叫addConverter
进行模拟。这对您没有任何帮助。
我相信您想使用真实的FormattingConversionService
:为此,您需要从@Mock
字段中删除conversionService
批注,并使用FormattingConversionService
的真实实例:< / p>
private FormattingConversionService conversionService = new FormattingConversionService();
如果您需要像在模拟签出时那样跟踪真实对象的调用:@Spy
答案 1 :(得分:0)
如果有人使用工具org.springframework.core.convert.converter.Converter<IN,OUT>
,并且在使用模拟计算机时出现类似错误,请遵循以下方法。
@Autowired
YourConverter yourConverter;
/** Basic initialisation before unit test fires. */
@Before
public void setUp() {
FormattingConversionService formattingConversionService=new FormattingConversionService();
formattingConversionService.addConverter(yourConverter); //Here
MockitoAnnotations.initMocks(this);
this.mockMvc = MockMvcBuilders.standaloneSetup(getController())
.setConversionService(formattingConversionService) // Add it to mockito
.build();
}