Search in sources :

Example 16 with LoggerWrapper

use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepositoryIndexApiNoMatchingRepo.

public void testRepositoryIndexApiNoMatchingRepo() {
    JobService mockJobService = mock(JobService.class);
    Request mockRequest = mock(Request.class);
    SQLiteRepo mockSQLiteRepo = mock(SQLiteRepo.class);
    when(mockJobService.forceEnqueue(Matchers.anyObject())).thenReturn(true);
    when(mockRequest.queryParams("repoUrl")).thenReturn("test");
    when(mockSQLiteRepo.getRepoByUrl(any())).thenReturn(Optional.empty());
    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("Was unable to find repository test");
    assertThat(apiResponse.isSucessful()).isEqualTo(false);
}
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 LoggerWrapper

use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.

the class IndexServiceTest method testSearchWithFlip.

public void testSearchWithFlip() throws IOException {
    Data data = new Data(new SQLiteMemoryDatabaseConfig(), new Helpers(), new LoggerWrapper());
    this.indexService = new IndexService(data, Singleton.getStatsService(), Singleton.getSearchCodeLib(), Singleton.getLogger(), Singleton.getHelpers(), Singleton.getCodeIndexQueue(), Singleton.getJobService());
    Queue<CodeIndexDocument> queue = new ConcurrentLinkedQueue<>();
    queue.add(this.codeIndexDocument);
    this.indexService.indexDocument(queue);
    // Check on first index
    SearchResult contents = this.indexService.search(this.contents, null, 0, false);
    assertThat(contents.getTotalHits()).isNotZero();
    String read = data.getDataByName(Values.INDEX_READ, Values.INDEX_A);
    String write = data.getDataByName(Values.INDEX_WRITE, Values.INDEX_A);
    // Check on flipped index
    this.indexService.flipIndex();
    assertThat(data.getDataByName(Values.INDEX_READ)).isNotEqualTo(read);
    assertThat(data.getDataByName(Values.INDEX_WRITE)).isNotEqualTo(write);
    queue.add(this.codeIndexDocument);
    this.indexService.indexDocument(queue);
    contents = this.indexService.search(this.contents, null, 0, false);
    assertThat(contents.getTotalHits()).isNotZero();
    this.indexService.deleteByCodeId(this.codeId);
    contents = this.indexService.search(this.contents, null, 0, false);
    assertThat(contents.getTotalHits()).isZero();
    // Flip and check on first index
    this.indexService.flipIndex();
    assertThat(data.getDataByName(Values.INDEX_READ)).isEqualTo(read);
    assertThat(data.getDataByName(Values.INDEX_WRITE)).isEqualTo(write);
    contents = this.indexService.search(this.contents, null, 0, false);
    assertThat(contents.getTotalHits()).isNotZero();
    this.indexService.deleteByCodeId(this.codeId);
}
Also used : Helpers(com.searchcode.app.util.Helpers) CodeIndexDocument(com.searchcode.app.dto.CodeIndexDocument) LoggerWrapper(com.searchcode.app.util.LoggerWrapper) Data(com.searchcode.app.dao.Data) SearchResult(com.searchcode.app.dto.SearchResult) ConcurrentLinkedQueue(java.util.concurrent.ConcurrentLinkedQueue) SQLiteMemoryDatabaseConfig(com.searchcode.app.config.SQLiteMemoryDatabaseConfig)

Example 18 with LoggerWrapper

use of com.searchcode.app.util.LoggerWrapper 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 19 with LoggerWrapper

use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.

the class ApiRouteServiceTest method testRepositoryReindexApiAuthEnabledPubMissing.

public void testRepositoryReindexApiAuthEnabledPubMissing() {
    JobService mockJobService = mock(JobService.class);
    Request mockRequest = mock(Request.class);
    ApiRouteService apiRouteService = new ApiRouteService(null, mockJobService, null, null, null, null, new Helpers(), new LoggerWrapper());
    apiRouteService.apiEnabled = true;
    apiRouteService.apiAuth = true;
    ApiResponse apiResponse = apiRouteService.repositoryReindex(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("pub is a required parameter");
    assertThat(apiResponse.isSucessful()).isEqualTo(false);
}
Also used : ApiRouteService(com.searchcode.app.service.route.ApiRouteService) Helpers(com.searchcode.app.util.Helpers) LoggerWrapper(com.searchcode.app.util.LoggerWrapper) Request(spark.Request) ApiResponse(com.searchcode.app.dto.api.ApiResponse) RepoResultApiResponse(com.searchcode.app.dto.api.RepoResultApiResponse)

Example 20 with LoggerWrapper

use of com.searchcode.app.util.LoggerWrapper 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)

Aggregations

LoggerWrapper (com.searchcode.app.util.LoggerWrapper)33 Helpers (com.searchcode.app.util.Helpers)32 ApiRouteService (com.searchcode.app.service.route.ApiRouteService)31 Request (spark.Request)31 RepoResultApiResponse (com.searchcode.app.dto.api.RepoResultApiResponse)29 ApiResponse (com.searchcode.app.dto.api.ApiResponse)26 SQLiteRepo (com.searchcode.app.dao.SQLiteRepo)24 RepoResult (com.searchcode.app.model.RepoResult)8 IndexService (com.searchcode.app.service.index.IndexService)4 UniqueRepoQueue (com.searchcode.app.util.UniqueRepoQueue)3 SQLiteMemoryDatabaseConfig (com.searchcode.app.config.SQLiteMemoryDatabaseConfig)2 ValidatorResult (com.searchcode.app.model.ValidatorResult)2 Matchers.anyString (org.mockito.Matchers.anyString)2 Data (com.searchcode.app.dao.Data)1 CodeIndexDocument (com.searchcode.app.dto.CodeIndexDocument)1 SearchResult (com.searchcode.app.dto.SearchResult)1 StatsService (com.searchcode.app.service.StatsService)1 ConcurrentLinkedQueue (java.util.concurrent.ConcurrentLinkedQueue)1 JobExecutionContext (org.quartz.JobExecutionContext)1