Search in sources :

Example 11 with ApiResponse

use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoDeleteAuthReponameNoSig.

public void testRepoDeleteAuthReponameNoSig() {
    Request mockRequest = mock(Request.class);
    SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
    UniqueRepoQueue uniqueRepoQueue = new UniqueRepoQueue(new ConcurrentLinkedQueue<>());
    when(mockSQLiteRepo.getRepoByName("unit-test")).thenReturn(Optional.of(new RepoResult()));
    ApiRouteService apiRouteService = new ApiRouteService(null, null, mockSQLiteRepo, null, null, null, new Helpers(), new LoggerWrapper());
    apiRouteService.apiEnabled = true;
    apiRouteService.apiAuth = true;
    when(mockRequest.queryParams("pub")).thenReturn("test");
    when(mockRequest.queryParams("reponame")).thenReturn("unit-test");
    ApiResponse apiResponse = apiRouteService.repoDelete(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("sig is a required parameter");
    assertThat(apiResponse.isSucessful()).isFalse();
    assertThat(uniqueRepoQueue.size()).isEqualTo(0);
}
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) UniqueRepoQueue(com.searchcode.app.util.UniqueRepoQueue) ApiResponse(com.searchcode.app.dto.api.ApiResponse) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse) RepoResult(com.searchcode.app.model.RepoResult)

Example 12 with ApiResponse

use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoAddMissingRepoBranch.

public void testRepoAddMissingRepoBranch() {
    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;
    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");
    ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("repobranch is a required parameter");
    assertThat(apiResponse.isSucessful()).isFalse();
}
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)

Example 13 with ApiResponse

use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoDeleteNoAuthNoReponame.

public void testRepoDeleteNoAuthNoReponame() {
    Request mockRequest = mock(Request.class);
    ApiRouteService apiRouteService = new ApiRouteService();
    apiRouteService.apiEnabled = true;
    apiRouteService.apiAuth = false;
    ApiResponse apiResponse = apiRouteService.repoDelete(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("reponame is a required parameter");
    assertThat(apiResponse.isSucessful()).isFalse();
}
Also used : 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 14 with ApiResponse

use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoAddMissingRepotype.

public void testRepoAddMissingRepotype() {
    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;
    when(mockRequest.queryParams("reponame")).thenReturn("test");
    when(mockRequest.queryParams("repourl")).thenReturn("test");
    ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("repotype is a required parameter");
    assertThat(apiResponse.isSucessful()).isFalse();
}
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)

Example 15 with ApiResponse

use of com.searchcode.app.dto.api.ApiResponse in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepositoryReindexApiNotEnabled.

public void testRepositoryReindexApiNotEnabled() {
    ApiRouteService apiRouteService = new ApiRouteService();
    apiRouteService.apiEnabled = false;
    ApiResponse apiResponse = apiRouteService.repositoryReindex(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)

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