use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryIndexApiNoMatchinRepo.
public void testRepositoryIndexApiNoMatchinRepo() {
JobService mockJobService = Mockito.mock(JobService.class);
Request mockRequest = Mockito.mock(Request.class);
Repo mockRepo = Mockito.mock(Repo.class);
when(mockJobService.forceEnqueue(Matchers.<RepoResult>anyObject())).thenReturn(true);
when(mockRequest.queryParams("repoUrl")).thenReturn("test");
ApiRouteService apiRouteService = new ApiRouteService(null, mockJobService, mockRepo, null, null);
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 ApiRouteService method repositoryIndex.
public ApiResponse repositoryIndex(Request request, Response response) {
if (!this.apiEnabled) {
return new ApiResponse(false, "API not enabled");
}
String repoUrl = request.queryParams("repoUrl");
RepoResult repoByUrl = this.repo.getRepoByUrl(repoUrl);
if (repoByUrl != null) {
this.jobService.forceEnqueue(repoByUrl);
return new ApiResponse(true, "Enqueued repository " + repoUrl);
}
return new ApiResponse(false, "Was unable to find repository " + repoUrl);
}
use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryIndexApiNotEnabled.
// ///////////////////////////////////////////////////////////////////
public void testRepositoryIndexApiNotEnabled() {
ApiRouteService apiRouteService = new ApiRouteService();
apiRouteService.apiEnabled = false;
ApiResponse apiResponse = apiRouteService.repositoryIndex(null, null);
assertThat(apiResponse.getMessage()).isEqualTo("API not enabled");
assertThat(apiResponse.isSucessful()).isFalse();
}
use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryIndexMatchingRepo.
public void testRepositoryIndexMatchingRepo() {
JobService mockJobService = mock(JobService.class);
Request mockRequest = mock(Request.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
when(mockJobService.forceEnqueue(Matchers.<RepoResult>anyObject())).thenReturn(true);
when(mockRequest.queryParams("repoUrl")).thenReturn("http://test/");
when(mockSQLiteRepo.getRepoByUrl("http://test/")).thenReturn(Optional.of(new RepoResult()));
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("Enqueued repository http://test/");
assertThat(apiResponse.isSucessful()).isEqualTo(true);
}
use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepoDeleteNoAuthReponame.
public void testRepoDeleteNoAuthReponame() {
Request mockRequest = mock(Request.class);
SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
DataService dataServiceMock = mock(DataService.class);
when(mockSQLiteRepo.getRepoByName("unit-test")).thenReturn(Optional.of(new RepoResult()));
ApiRouteService apiRouteService = new ApiRouteService(null, null, mockSQLiteRepo, dataServiceMock, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = false;
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("");
}
Aggregations