use of com.searchcode.app.dao.SQLiteRepo in project searchcode-server by boyter.
the class ApiRouteServiceTest method testGetIndexTime.
public void testGetIndexTime() {
Request mockRequest = mock(Request.class);
SQLiteRepo SQLiteRepoMock = mock(SQLiteRepo.class);
when(mockRequest.queryParams("reponame")).thenReturn("somename");
when(mockRequest.queryParams()).thenReturn((new HashMap<String, String>() {
{
put("reponame", "reponame");
}
}).keySet());
when(SQLiteRepoMock.getRepoByName("somename")).thenReturn(Optional.of(new RepoResult().setRowId(0).setName("name").setScm("scm").setUrl("url").setUsername("username").setPassword("password").setSource("source").setBranch("branch").setData("{\"rowId\":1,\"name\":\"test\",\"scm\":\"git\",\"url\":\"/test/\",\"username\":\"\",\"password\":\"\",\"source\":\"\",\"branch\":\"master\",\"data\":{\"averageIndexTimeSeconds\":9,\"indexStatus\":\"success\",\"jobRunTime\":{\"seconds\":1496356541,\"nanos\":188000000}}}")));
ApiRouteService apiRouteService = new ApiRouteService(null, null, SQLiteRepoMock, null, null, null, new Helpers(), new LoggerWrapper());
String averageIndexTimeSeconds = apiRouteService.getIndexTime(mockRequest, null);
assertThat(averageIndexTimeSeconds).contains("years ago");
}
Aggregations