use of com.blackducksoftware.integration.hub.alert.hub.controller.global.GlobalHubConfigActions in project hub-alert by blackducksoftware.
the class GlobalHubConfigActionsTest method testTestConfig.
@Test
public void testTestConfig() throws Exception {
final RestConnection mockedRestConnection = Mockito.mock(RestConnection.class);
final GlobalHubRepositoryWrapper mockedGlobalRepository = Mockito.mock(GlobalHubRepositoryWrapper.class);
final TestGlobalProperties globalProperties = new TestGlobalProperties(mockedGlobalRepository);
GlobalHubConfigActions configActions = new GlobalHubConfigActions(mockedGlobalRepository, globalProperties, new ObjectTransformer());
configActions = Mockito.spy(configActions);
Mockito.doAnswer(new Answer<RestConnection>() {
@Override
public RestConnection answer(final InvocationOnMock invocation) throws Throwable {
return mockedRestConnection;
}
}).when(configActions).createRestConnection(Mockito.any(HubServerConfigBuilder.class));
Mockito.doNothing().when(configActions).validateHubConfiguration(Mockito.any(HubServerConfigBuilder.class));
configActions.testConfig(getGlobalRestModelMockUtil().createGlobalRestModel());
Mockito.verify(mockedRestConnection, Mockito.times(1)).connect();
Mockito.reset(mockedRestConnection);
final GlobalHubConfigRestModel fullRestModel = getGlobalRestModelMockUtil().createGlobalRestModel();
configActions.testConfig(fullRestModel);
Mockito.verify(mockedRestConnection, Mockito.times(1)).connect();
Mockito.reset(mockedRestConnection);
final GlobalHubConfigRestModel restModel = getGlobalRestModelMockUtil().createGlobalRestModel();
final GlobalHubConfigRestModel partialRestModel = configActions.maskRestModel(restModel);
Mockito.doAnswer(new Answer<GlobalHubConfigEntity>() {
@Override
public GlobalHubConfigEntity answer(final InvocationOnMock invocation) throws Throwable {
return getGlobalEntityMockUtil().createGlobalEntity();
}
}).when(mockedGlobalRepository).findOne(Mockito.anyLong());
final String result = configActions.testConfig(partialRestModel);
assertEquals("Successfully connected to the Hub.", result);
Mockito.verify(mockedRestConnection, Mockito.times(1)).connect();
}
use of com.blackducksoftware.integration.hub.alert.hub.controller.global.GlobalHubConfigActions in project hub-alert by blackducksoftware.
the class CommonGlobalConfigHandlerTest method postConfigWhenAlreadyExistsTest.
@Test
public void postConfigWhenAlreadyExistsTest() {
final GlobalHubConfigActions configActions = Mockito.mock(GlobalHubConfigActions.class);
final CommonGlobalConfigHandler<GlobalHubConfigEntity, GlobalHubConfigRestModel, GlobalHubRepositoryWrapper> handler = new CommonGlobalConfigHandler<>(GlobalHubConfigEntity.class, GlobalHubConfigRestModel.class, configActions, objectTransformer);
final GlobalHubRepositoryWrapper repository = Mockito.mock(GlobalHubRepositoryWrapper.class);
Mockito.when(configActions.getRepository()).thenReturn(repository);
Mockito.when(repository.findAll()).thenReturn(Arrays.asList(null, null));
final ResponseEntity<String> response = handler.postConfig(null);
assertEquals(HttpStatus.PRECONDITION_FAILED, response.getStatusCode());
}
use of com.blackducksoftware.integration.hub.alert.hub.controller.global.GlobalHubConfigActions in project hub-alert by blackducksoftware.
the class CommonGlobalConfigHandlerTest method postConfigWhenDoesNotExistsTest.
@Test
public void postConfigWhenDoesNotExistsTest() {
final GlobalHubConfigActions configActions = Mockito.mock(GlobalHubConfigActions.class);
final CommonGlobalConfigHandler<GlobalHubConfigEntity, GlobalHubConfigRestModel, GlobalHubRepositoryWrapper> handler = new CommonGlobalConfigHandler<>(GlobalHubConfigEntity.class, GlobalHubConfigRestModel.class, configActions, objectTransformer);
final GlobalHubRepositoryWrapper repository = Mockito.mock(GlobalHubRepositoryWrapper.class);
Mockito.when(configActions.getRepository()).thenReturn(repository);
Mockito.when(repository.findAll()).thenReturn(Collections.emptyList());
final ResponseEntity<String> response = handler.postConfig(null);
assertEquals(HttpStatus.BAD_REQUEST, response.getStatusCode());
}
use of com.blackducksoftware.integration.hub.alert.hub.controller.global.GlobalHubConfigActions in project hub-alert by blackducksoftware.
the class GlobalHubConfigActionsTest method testGetConfig.
@Test
@Override
public void testGetConfig() throws Exception {
final GlobalHubRepositoryWrapper mockedGlobalRepository = Mockito.mock(GlobalHubRepositoryWrapper.class);
Mockito.when(mockedGlobalRepository.findOne(Mockito.anyLong())).thenReturn(getGlobalEntityMockUtil().createGlobalEntity());
Mockito.when(mockedGlobalRepository.findAll()).thenReturn(Arrays.asList(getGlobalEntityMockUtil().createGlobalEntity()));
final GlobalHubConfigEntity databaseEntity = getGlobalEntityMockUtil().createGlobalEntity();
final TestGlobalProperties globalProperties = new TestGlobalProperties(mockedGlobalRepository);
globalProperties.setHubTrustCertificate(null);
globalProperties.setHubUrl(null);
final ObjectTransformer objectTransformer = new ObjectTransformer();
final GlobalHubConfigActions configActions = new GlobalHubConfigActions(mockedGlobalRepository, globalProperties, objectTransformer);
final GlobalHubConfigRestModel defaultRestModel = objectTransformer.databaseEntityToConfigRestModel(databaseEntity, GlobalHubConfigRestModel.class);
final GlobalHubConfigRestModel maskedRestModel = configActions.maskRestModel(defaultRestModel);
List<GlobalHubConfigRestModel> globalConfigsById = configActions.getConfig(1L);
List<GlobalHubConfigRestModel> allGlobalConfigs = configActions.getConfig(null);
assertTrue(globalConfigsById.size() == 1);
assertTrue(allGlobalConfigs.size() == 1);
final GlobalHubConfigRestModel globalConfigById = globalConfigsById.get(0);
final GlobalHubConfigRestModel globalConfig = allGlobalConfigs.get(0);
System.out.println(maskedRestModel.toString());
System.out.println(globalConfigById.toString());
assertEquals(maskedRestModel, globalConfigById);
assertEquals(maskedRestModel, globalConfig);
Mockito.when(mockedGlobalRepository.findOne(Mockito.anyLong())).thenReturn(null);
Mockito.when(mockedGlobalRepository.findAll()).thenReturn(null);
globalConfigsById = configActions.getConfig(1L);
allGlobalConfigs = configActions.getConfig(null);
assertNotNull(globalConfigsById);
assertNotNull(allGlobalConfigs);
assertTrue(globalConfigsById.isEmpty());
assertTrue(allGlobalConfigs.size() == 1);
final GlobalHubConfigRestModel environmentGlobalConfig = allGlobalConfigs.get(0);
assertEquals(maskedRestModel.getHubAlwaysTrustCertificate(), environmentGlobalConfig.getHubAlwaysTrustCertificate());
assertNull(environmentGlobalConfig.getHubApiKey());
assertEquals(maskedRestModel.getHubProxyHost(), environmentGlobalConfig.getHubProxyHost());
assertNull(environmentGlobalConfig.getHubProxyPassword());
assertEquals(maskedRestModel.getHubProxyPort(), environmentGlobalConfig.getHubProxyPort());
assertEquals(maskedRestModel.getHubProxyUsername(), environmentGlobalConfig.getHubProxyUsername());
assertNull(environmentGlobalConfig.getHubTimeout());
assertEquals(maskedRestModel.getHubUrl(), environmentGlobalConfig.getHubUrl());
assertNull(environmentGlobalConfig.getId());
}
use of com.blackducksoftware.integration.hub.alert.hub.controller.global.GlobalHubConfigActions in project hub-alert by blackducksoftware.
the class GlobalHubConfigActionsTest method getMockedConfigActions.
@Override
public GlobalHubConfigActions getMockedConfigActions() {
final GlobalHubRepositoryWrapper mockedGlobalRepository = Mockito.mock(GlobalHubRepositoryWrapper.class);
final GlobalProperties globalProperties = new TestGlobalProperties(mockedGlobalRepository);
final GlobalHubConfigActions configActions = new GlobalHubConfigActions(mockedGlobalRepository, globalProperties, new ObjectTransformer());
return configActions;
}
Aggregations