Search in sources :

Example 31 with SQLiteRepo

use of com.searchcode.app.dao.SQLiteRepo 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)

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