在测试中排除应用程序事件监听器吗?

时间:2018-11-27 16:33:58

标签: spring-boot events caching junit

我在解决这个问题时遇到了问题。

我正在应用程序中使用缓存,并在使用启动程序时使用侦听器加载它。

@EventListener(ApplicationReadyEvent.class)
public void LoadCache() {
    refreshCache();
}

public void refreshCache() {
    clearCache(); // clears cache if present
    populateCache();
}
public void populateCache() {
    // dao call to get values to be populated in cache
    List<Game> games = gamesDao.findAllGames();
    // some method to populate these games in cache.
}

当我运行应用程序时,这一切正常。但是,当我运行测试用例时,会发生问题,运行安装程序时会调用LoadCache()。我不想在执行测试时运行它。

这是一个示例测试用例

@RunWith(SpringRunner.class)
@SpringBootTest(classes = GameServiceApplication.class)
public class GameEngineTest {
    @Test
    public void testSomeMethod() {
        // some logic
    }
}

1 个答案:

答案 0 :(得分:0)

如果您可以将EventListener移到一个单独的类中并使其成为Bean,则可以在测试中使用mockBean来模拟真实的实现。

@Component
public class Listener {

    @Autowired
    private CacheService cacheService;

    @EventListener(ApplicationReadyEvent.class)
    public void LoadCache() {
        cacheService.refreshCache();
    }
}

@Service
public class CacheService {

    ...

    public void refreshCache() {
        ..
    }

    public void populateCache() {
        ..
    }   
}


@RunWith(SpringRunner.class)
@SpringBootTest
public class CacheServiceTest {

    @MockBean
    private Listener listener;

    @Test
    public void test() {
        // now the listener mocked and an event not received.
    }
}

或者您可以使用配置文件仅在生产模式下运行此侦听器。