Search in sources :

Example 31 with LoggerWrapper

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

the class ApiRouteServiceTest method testRepoAddMissingRepoSource.

public void testRepoAddMissingRepoSource() {
    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");
    ApiResponse apiResponse = apiRouteService.repoAdd(mockRequest, null);
    assertThat(apiResponse.getMessage()).isEqualTo("reposource 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 32 with LoggerWrapper

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

the class ApiRouteServiceTest method testGetIndexTime.

public void testGetIndexTime() {
    Request mockRequest = mock(Request.class);
    SQLiteRepo SQLiteRepoMock = mock(SQLiteRepo.class);
    when(mockRequest.queryParams("reponame")).thenReturn("somename");
    when(mockRequest.queryParams()).thenReturn((new HashMap<String, String>() {

        {
            put("reponame", "reponame");
        }
    }).keySet());
    when(SQLiteRepoMock.getRepoByName("somename")).thenReturn(Optional.of(new RepoResult().setRowId(0).setName("name").setScm("scm").setUrl("url").setUsername("username").setPassword("password").setSource("source").setBranch("branch").setData("{\"rowId\":1,\"name\":\"test\",\"scm\":\"git\",\"url\":\"/test/\",\"username\":\"\",\"password\":\"\",\"source\":\"\",\"branch\":\"master\",\"data\":{\"averageIndexTimeSeconds\":9,\"indexStatus\":\"success\",\"jobRunTime\":{\"seconds\":1496356541,\"nanos\":188000000}}}")));
    ApiRouteService apiRouteService = new ApiRouteService(null, null, SQLiteRepoMock, null, null, null, new Helpers(), new LoggerWrapper());
    String averageIndexTimeSeconds = apiRouteService.getIndexTime(mockRequest, null);
    assertThat(averageIndexTimeSeconds).contains("years ago");
}
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) Matchers.anyString(org.mockito.Matchers.anyString) RepoResult(com.searchcode.app.model.RepoResult)

Example 33 with LoggerWrapper

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

the class IndexDocumentsJobTest method testExecute.

public void testExecute() throws JobExecutionException {
    JobExecutionContext jobExecutionContext = mock(JobExecutionContext.class);
    IndexService indexService = mock(IndexService.class);
    StatsService statsService = mock(StatsService.class);
    LoggerWrapper loggerWrapper = mock(LoggerWrapper.class);
// IndexDocumentsJob indexDocumentsJob = new IndexDocumentsJob(indexService, statsService, loggerWrapper);
// 
// indexDocumentsJob.execute(jobExecutionContext);
}
Also used : IndexService(com.searchcode.app.service.index.IndexService) StatsService(com.searchcode.app.service.StatsService) LoggerWrapper(com.searchcode.app.util.LoggerWrapper) JobExecutionContext(org.quartz.JobExecutionContext)

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