use of com.searchcode.app.util.LoggerWrapper 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);
}
use of com.searchcode.app.util.LoggerWrapper 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();
}
use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepoListApiEnabledNoAuth.
public void testRepoListApiEnabledNoAuth() {
Request mockRequest = mock(Request.class);
SQLiteRepo SQLiteRepo = new SQLiteRepo(new SQLiteMemoryDatabaseConfig(), new Helpers(), Singleton.getLogger());
SQLiteRepo.createTableIfMissing();
ApiRouteService apiRouteService = new ApiRouteService(null, null, SQLiteRepo, null, null, null, new Helpers(), new LoggerWrapper());
apiRouteService.apiEnabled = true;
apiRouteService.apiAuth = false;
RepoResultApiResponse apiResponse = apiRouteService.repoList(mockRequest, null);
assertThat(apiResponse.getMessage()).isEmpty();
assertThat(apiResponse.getRepoResultList()).hasSize(0);
assertThat(apiResponse.isSucessful()).isTrue();
}
use of com.searchcode.app.util.LoggerWrapper 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();
}
use of com.searchcode.app.util.LoggerWrapper in project searchcode-server by boyter.
the class ApiRouteServiceTest method testRepositoryReindexApiAuthEnabledSigMissing.
public void testRepositoryReindexApiAuthEnabledSigMissing() {
JobService mockJobService = mock(JobService.class);
Request mockRequest = mock(Request.class);
when(mockRequest.queryParams("pub")).thenReturn("test");
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("sig is a required parameter");
assertThat(apiResponse.isSucessful()).isEqualTo(false);
}
Aggregations