use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryReindexApiAuthNotEnabledRebuildAllWorks.
public void testRepositoryReindexApiAuthNotEnabledRebuildAllWorks() {
Request mockRequest = mock(Request.class);
IndexService mockIndexService = mock(IndexService.class);
ApiRouteService apiRouteService = new ApiRouteService(null, null, null, null, null, mockIndexService, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = false;
ApiResponse apiResponse = apiRouteService.repositoryReindex(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("reindex forced");
assertThat(apiResponse.isSucessful()).isEqualTo(true);
verify(mockIndexService, times(1)).reindexAll();
}
use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryReindexApiAuthEnabledValidSig.
public void testRepositoryReindexApiAuthEnabledValidSig() {
JobService mockJobService = mock(JobService.class);
ApiService mockApiService = mock(ApiService.class);
IndexService mockIndexService = mock(IndexService.class);
Request mockRequest = mock(Request.class);
when(mockRequest.queryParams("pub")).thenReturn("test");
when(mockRequest.queryParams("sig")).thenReturn("test");
when(mockApiService.validateRequest("test", "test", "pub=test", ApiService.HmacType.SHA1)).thenReturn(true);
ApiRouteService apiRouteService = new ApiRouteService(mockApiService, mockJobService, null, null, null, mockIndexService, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = true;
ApiResponse apiResponse = apiRouteService.repositoryReindex(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("reindex forced");
assertThat(apiResponse.isSucessful()).isEqualTo(true);
}
use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepoAddMissingRepoName.
public void testRepoAddMissingRepoName() {
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;
ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("reponame 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 testRepoListApiEnabledAuthValid.
public void testRepoListApiEnabledAuthValid() {
Request mockRequest = mock(Request.class);
ApiService mockApiService = mock(ApiService.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
when(mockApiService.validateRequest("test", "test", "pub=test", ApiService.HmacType.SHA1)).thenReturn(true);
ApiRouteService apiRouteService = new ApiRouteService(mockApiService, null, mockSQLiteRepo, null, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = true;
when(mockRequest.queryParams("pub")).thenReturn("test");
when(mockRequest.queryParams("sig")).thenReturn("test");
RepoResultApiResponse apiResponse = apiRouteService.repoList(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("");
assertThat(apiResponse.getRepoResultList()).hasSize(0);
assertThat(apiResponse.isSucessful()).isTrue();
}
use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepoAddNoAuthSucessful.
public void testRepoAddNoAuthSucessful() {
Request mockRequest = mock(Request.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
ValidatorService mockValidatorService = mock(ValidatorService.class);
when(mockValidatorService.validate(any(), anyBoolean())).thenReturn(new ValidatorResult(true, ""));
when(mockSQLiteRepo.getRepoByName(anyString())).thenReturn(Optional.empty());
ApiRouteService apiRouteService = new ApiRouteService(null, null, mockSQLiteRepo, null, mockValidatorService, 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");
when(mockRequest.queryParams("reposource")).thenReturn("test");
when(mockRequest.queryParams("repobranch")).thenReturn("test");
ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("added repository successfully");
assertThat(apiResponse.isSucessful()).isTrue();
verify(mockSQLiteRepo, times(1)).saveRepo(Matchers.anyObject());
}
Aggregations