Search in sources :

Example 1 with ApiRouteService

use of com.searchcode.app.service.route.ApiRouteService 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 ApiRouteService

use of com.searchcode.app.service.route.ApiRouteService 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 3 with ApiRouteService

use of com.searchcode.app.service.route.ApiRouteService in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoListApiNotEnabled.

// ///////////////////////////////////////////////////////////////////
public void testRepoListApiNotEnabled() {
    ApiRouteService apiRouteService = new ApiRouteService();
    apiRouteService.apiEnabled = false;
    RepoResultApiResponse apiResponse = apiRouteService.repoList(null, null);
    assertThat(apiResponse.getMessage()).isEqualTo("API not enabled");
    assertThat(apiResponse.isSucessful()).isFalse();
}
Also used : ApiRouteService(com.searchcode.app.service.route.ApiRouteService) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse)

Example 4 with ApiRouteService

use of com.searchcode.app.service.route.ApiRouteService 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 ApiRouteService

use of com.searchcode.app.service.route.ApiRouteService 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

ApiRouteService (com.searchcode.app.service.route.ApiRouteService)40 RepoResultApiResponse (com.searchcode.app.dto.api.RepoResultApiResponse)38 Request (spark.Request)35 ApiResponse (com.searchcode.app.dto.api.ApiResponse)32 Helpers (com.searchcode.app.util.Helpers)31 LoggerWrapper (com.searchcode.app.util.LoggerWrapper)31 SQLiteRepo (com.searchcode.app.dao.SQLiteRepo)24 RepoResult (com.searchcode.app.model.RepoResult)8 IndexService (com.searchcode.app.service.index.IndexService)3 UniqueRepoQueue (com.searchcode.app.util.UniqueRepoQueue)3 ValidatorResult (com.searchcode.app.model.ValidatorResult)2 Matchers.anyString (org.mockito.Matchers.anyString)2 SQLiteMemoryDatabaseConfig (com.searchcode.app.config.SQLiteMemoryDatabaseConfig)1 Repo (com.searchcode.app.dao.Repo)1