Search in sources :

Example 16 with SQLiteRepo

use of com.searchcode.app.dao.SQLiteRepo in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoAddMissingRepoUrl.

public void testRepoAddMissingRepoUrl() {
    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");
    ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("repourl 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 17 with SQLiteRepo

use of com.searchcode.app.dao.SQLiteRepo 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("");
}
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 18 with SQLiteRepo

use of com.searchcode.app.dao.SQLiteRepo in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoAddMissingRepoName.

public void testRepoAddMissingRepoName() {
    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;
    ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("reponame 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 19 with SQLiteRepo

use of com.searchcode.app.dao.SQLiteRepo in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoListApiEnabledAuthValid.

public void testRepoListApiEnabledAuthValid() {
    Request mockRequest = mock(Request.class);
    ApiService mockApiService = mock(ApiService.class);
    SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
    when(mockApiService.validateRequest("test", "test", "pub=test", ApiService.HmacType.SHA1)).thenReturn(true);
    ApiRouteService apiRouteService = new ApiRouteService(mockApiService, null, mockSQLiteRepo, null, null, null, new Helpers(), new LoggerWrapper());
    apiRouteService.apiEnabled = true;
    apiRouteService.apiAuth = true;
    when(mockRequest.queryParams("pub")).thenReturn("test");
    when(mockRequest.queryParams("sig")).thenReturn("test");
    RepoResultApiResponse apiResponse = apiRouteService.repoList(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("");
    assertThat(apiResponse.getRepoResultList()).hasSize(0);
    assertThat(apiResponse.isSucessful()).isTrue();
}
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) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse)

Example 20 with SQLiteRepo

use of com.searchcode.app.dao.SQLiteRepo in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepoAddNoAuthSucessful.

public void testRepoAddNoAuthSucessful() {
    Request mockRequest = mock(Request.class);
    SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
    ValidatorService mockValidatorService = mock(ValidatorService.class);
    when(mockValidatorService.validate(any(), anyBoolean())).thenReturn(new ValidatorResult(true, ""));
    when(mockSQLiteRepo.getRepoByName(anyString())).thenReturn(Optional.empty());
    ApiRouteService apiRouteService = new ApiRouteService(null, null, mockSQLiteRepo, null, mockValidatorService, 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");
    when(mockRequest.queryParams("repobranch")).thenReturn("test");
    ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("added repository successfully");
    assertThat(apiResponse.isSucessful()).isTrue();
    verify(mockSQLiteRepo, times(1)).saveRepo(Matchers.anyObject());
}
Also used : ApiRouteService(com.searchcode.app.service.route.ApiRouteService) ValidatorResult(com.searchcode.app.model.ValidatorResult) 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)

Aggregations

SQLiteRepo (com.searchcode.app.dao.SQLiteRepo)31 Request (spark.Request)28 Helpers (com.searchcode.app.util.Helpers)27 ApiRouteService (com.searchcode.app.service.route.ApiRouteService)24 LoggerWrapper (com.searchcode.app.util.LoggerWrapper)24 RepoResultApiResponse (com.searchcode.app.dto.api.RepoResultApiResponse)22 ApiResponse (com.searchcode.app.dto.api.ApiResponse)20 RepoResult (com.searchcode.app.model.RepoResult)12 ValidatorResult (com.searchcode.app.model.ValidatorResult)5 AdminRouteService (com.searchcode.app.service.route.AdminRouteService)4 UniqueRepoQueue (com.searchcode.app.util.UniqueRepoQueue)3 Matchers.anyString (org.mockito.Matchers.anyString)2 SQLiteMemoryDatabaseConfig (com.searchcode.app.config.SQLiteMemoryDatabaseConfig)1 Data (com.searchcode.app.dao.Data)1 CodeResult (com.searchcode.app.dto.CodeResult)1 IIndexService (com.searchcode.app.service.index.IIndexService)1 IndexService (com.searchcode.app.service.index.IndexService)1 CodeRouteService (com.searchcode.app.service.route.CodeRouteService)1