Испытание выключателя с пружинным повторением - PullRequest
0 голосов
/ 03 июля 2018

Я использую выключатель Spring Retry в одном из моих приложений Spring Boot как:

   @CircuitBreaker(include = CustomException.class, maxAttempts = 3, openTimeout = 2000L, resetTimeout = 4000L)
StudentResponse getStudentInfo(String studentId) {
    StudentResponse res = studentRepository.getInfoByStudentId(studentId);
    return res;
}

@Recover
StudentResponse recoverStudentInfo(CustomException ex, String studentId) {
    throw new StudentApiException("In recovery...");
}

Теперь я пытаюсь проверить его с помощью Junit 5 как:

    @ExtendWith(SpringExtension.class)
    @SpringBootTest
    @EnableRetry
    public class StudentServiceTest {

    @Autowired
    StudentService studentService;

    @MockBean
    StudentRepository studentRepository;

    @Test
    public void testCircuitBreakGetStudentInfo(){
        String id = "id";
        doThrow(CustomException.class).when(studentRepository).getInfoByStudentId(id);
        StudentResponse res = this.studentService.getStudentInfo(id);
        verify(studentRepository, times(3)).getInfoByStudentId(id); // this is telling that there has been 1 interaction with the mock

    }
}

Тогда я попробовал:

 @Test
    public void testCircuitBreakGetStudentInfo(){
        String id = "id";
        doThrow(CustomException.class).when(studentRepository).getInfoByStudentId(id);
        assertThrows(StudentApiException.class,
            ()->{ this.studentService.getStudentInfo(id); }); // this is also telling that there has been 1 interaction with the mock instead of 3
    }

Разве не должно быть 3 взаимодействий? Или это будет один? Любое объяснение очень поможет. Любые другие советы по тестированию автоматического выключателя приветствуются (я вряд ли мог найти какой-либо пример по тестированию этого автоматического выключателя). Спасибо

...