use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepoAddMissingRepoSource.
public void testRepoAddMissingRepoSource() {
Request mockRequest = mock(Request.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
ApiRouteService apiRouteService = new ApiRouteService(null, null, mockSQLiteRepo, null, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = false;
when(mockRequest.queryParams("reponame")).thenReturn("test");
when(mockRequest.queryParams("repourl")).thenReturn("test");
when(mockRequest.queryParams("repotype")).thenReturn("test");
when(mockRequest.queryParams("repousername")).thenReturn("test");
when(mockRequest.queryParams("repopassword")).thenReturn("test");
ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("reposource is a required parameter");
assertThat(apiResponse.isSucessful()).isFalse();
}
use of com.searchcode.app.util.LoggerWrapper 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");
}
use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class IndexDocumentsJobTest method testExecute.
public void testExecute() throws JobExecutionException {
JobExecutionContext jobExecutionContext = mock(JobExecutionContext.class);
IndexService indexService = mock(IndexService.class);
StatsService statsService = mock(StatsService.class);
LoggerWrapper loggerWrapper = mock(LoggerWrapper.class);
// IndexDocumentsJob indexDocumentsJob = new IndexDocumentsJob(indexService, statsService, loggerWrapper);
//
// indexDocumentsJob.execute(jobExecutionContext);
}
Aggregations