use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryIndexApiNoRepositorySupplied.
public void testRepositoryIndexApiNoRepositorySupplied() {
JobService mockJobService = mock(JobService.class);
Request mockRequest = mock(Request.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
when(mockJobService.forceEnqueue(Matchers.anyObject())).thenReturn(true);
when(mockSQLiteRepo.getRepoByUrl(anyString())).thenReturn(Optional.empty());
ApiRouteService apiRouteService = new ApiRouteService(null, mockJobService, mockSQLiteRepo, null, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
ApiResponse apiResponse = apiRouteService.repositoryIndex(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("Was unable to find repository null");
assertThat(apiResponse.isSucessful()).isEqualTo(false);
}
use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryIndexApiNoMatchingRepo.
public void testRepositoryIndexApiNoMatchingRepo() {
JobService mockJobService = mock(JobService.class);
Request mockRequest = mock(Request.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
when(mockJobService.forceEnqueue(Matchers.anyObject())).thenReturn(true);
when(mockRequest.queryParams("repoUrl")).thenReturn("test");
when(mockSQLiteRepo.getRepoByUrl(any())).thenReturn(Optional.empty());
ApiRouteService apiRouteService = new ApiRouteService(null, mockJobService, mockSQLiteRepo, null, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
ApiResponse apiResponse = apiRouteService.repositoryIndex(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("Was unable to find repository test");
assertThat(apiResponse.isSucessful()).isEqualTo(false);
}
use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryReindexApiAuthEnabledPubMissing.
public void testRepositoryReindexApiAuthEnabledPubMissing() {
JobService mockJobService = mock(JobService.class);
Request mockRequest = mock(Request.class);
ApiRouteService apiRouteService = new ApiRouteService(null, mockJobService, null, null, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = true;
ApiResponse apiResponse = apiRouteService.repositoryReindex(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("pub is a required parameter");
assertThat(apiResponse.isSucessful()).isEqualTo(false);
}
use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepoDeleteAuthReponameAuth.
public void testRepoDeleteAuthReponameAuth() {
Request mockRequest = mock(Request.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
DataService dataServiceMock = mock(DataService.class);
ApiService mockApiService = mock(ApiService.class);
when(mockApiService.validateRequest("test", "test", "pub=test&reponame=unit-test", ApiService.HmacType.SHA1)).thenReturn(true);
when(mockSQLiteRepo.getRepoByName("unit-test")).thenReturn(Optional.of(new RepoResult()));
ApiRouteService apiRouteService = new ApiRouteService(mockApiService, null, mockSQLiteRepo, dataServiceMock, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = true;
when(mockRequest.queryParams("pub")).thenReturn("test");
when(mockRequest.queryParams("sig")).thenReturn("test");
when(mockRequest.queryParams("reponame")).thenReturn("unit-test");
ApiResponse apiResponse = apiRouteService.repoDelete(mockRequest, null);
assertThat(apiResponse.getMessage()).isEqualTo("repository queued for deletion");
assertThat(apiResponse.isSucessful()).isTrue();
verify(dataServiceMock, times(1)).addToPersistentDelete("");
}
use of com.searchcode.app.dto.api.ApiResponse 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();
}
Aggregations