Search in sources :

Example 1 with ApiResponse

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);
}
Also used : Repo(com.searchcode.app.dao.Repo) ApiRouteService(com.searchcode.app.service.route.ApiRouteService) Request(spark.Request) ApiResponse(com.searchcode.app.dto.api.ApiResponse) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse)

Example 2 with ApiResponse

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);
}
Also used : ApiResponse(com.searchcode.app.dto.api.ApiResponse) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse) RepoResult(com.searchcode.app.model.RepoResult)

Example 3 with ApiResponse

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();
}
Also used : ApiRouteService(com.searchcode.app.service.route.ApiRouteService) ApiResponse(com.searchcode.app.dto.api.ApiResponse) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse)

Example 4 with ApiResponse

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);
}
Also used : ApiRouteService(com.searchcode.app.service.route.ApiRouteService) Helpers(com.searchcode.app.util.Helpers) LoggerWrapper(com.searchcode.app.util.LoggerWrapper) Request(spark.Request) SQLiteRepo(com.searchcode.app.dao.SQLiteRepo) ApiResponse(com.searchcode.app.dto.api.ApiResponse) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse) RepoResult(com.searchcode.app.model.RepoResult)

Example 5 with ApiResponse

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("");
}
Also used : ApiRouteService(com.searchcode.app.service.route.ApiRouteService) Helpers(com.searchcode.app.util.Helpers) LoggerWrapper(com.searchcode.app.util.LoggerWrapper) Request(spark.Request) SQLiteRepo(com.searchcode.app.dao.SQLiteRepo) ApiResponse(com.searchcode.app.dto.api.ApiResponse) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse) RepoResult(com.searchcode.app.model.RepoResult)

Aggregations

ApiResponse (com.searchcode.app.dto.api.ApiResponse)36 RepoResultApiResponse (com.searchcode.app.dto.api.RepoResultApiResponse)36 ApiRouteService (com.searchcode.app.service.route.ApiRouteService)32 Request (spark.Request)28 Helpers (com.searchcode.app.util.Helpers)26 LoggerWrapper (com.searchcode.app.util.LoggerWrapper)26 SQLiteRepo (com.searchcode.app.dao.SQLiteRepo)20 RepoResult (com.searchcode.app.model.RepoResult)9 ValidatorResult (com.searchcode.app.model.ValidatorResult)3 IndexService (com.searchcode.app.service.index.IndexService)3 UniqueRepoQueue (com.searchcode.app.util.UniqueRepoQueue)3 UnsupportedEncodingException (java.io.UnsupportedEncodingException)3 Repo (com.searchcode.app.dao.Repo)1