use of org.finra.herd.model.jpa.ConfigurationEntity in project herd by FINRAOS.
the class ConfigurationDaoTest method testGetConfigurationByKey.
@Test
public void testGetConfigurationByKey() throws Exception {
// Create relative database entities.
ConfigurationEntity configurationEntity = createConfigurationEntity(CONFIGURATION_KEY, CONFIGURATION_VALUE);
// Retrieve the configuration entity by its key.
assertEquals(configurationEntity, configurationDao.getConfigurationByKey(CONFIGURATION_KEY));
// Try to retrieve the configuration entity using its key in upper and lower case.
assertNull(configurationDao.getConfigurationByKey(CONFIGURATION_KEY.toUpperCase()));
assertNull(configurationDao.getConfigurationByKey(CONFIGURATION_KEY.toLowerCase()));
// Try to retrieve a configuration using an invalid key.
assertNull(configurationDao.getConfigurationByKey("I_DO_NOT_EXIST"));
}
use of org.finra.herd.model.jpa.ConfigurationEntity in project herd by FINRAOS.
the class ConfigurationDaoTest method testGetAllConfigurations.
@Test
public void testGetAllConfigurations() throws Exception {
// Create relative database entities.
createConfigurationEntity(CONFIGURATION_KEY, CONFIGURATION_VALUE);
// Test that we are able to get all configurations from the database using our DAO tier.
List<ConfigurationEntity> configurations = herdDao.findAll(ConfigurationEntity.class);
assertTrue(configurations.size() > 0);
for (ConfigurationEntity configuration : configurations) {
if (CONFIGURATION_KEY.equals(configuration.getKey()) && CONFIGURATION_VALUE.equals(configuration.getValue())) {
// We found our inserted test key/test value.
return;
}
}
fail("A configuration with key \"" + CONFIGURATION_KEY + "\" and value \"" + CONFIGURATION_VALUE + "\" was expected, but not found.");
}
use of org.finra.herd.model.jpa.ConfigurationEntity in project herd by FINRAOS.
the class DefaultNotificationMessageBuilderTest method testBuildBusinessObjectDataStatusChangeMessagesNoMessageDefinitions.
@Test
public void testBuildBusinessObjectDataStatusChangeMessagesNoMessageDefinitions() throws Exception {
// Create a business object data key.
BusinessObjectDataKey businessObjectDataKey = new BusinessObjectDataKey(BDEF_NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE, FORMAT_FILE_TYPE_CODE, FORMAT_VERSION, PARTITION_VALUE, SUBPARTITION_VALUES, DATA_VERSION);
// Override configuration, so there will be no notification message definitions configured in the system.
ConfigurationEntity configurationEntity = new ConfigurationEntity();
configurationEntity.setKey(ConfigurationValue.HERD_NOTIFICATION_BUSINESS_OBJECT_DATA_STATUS_CHANGE_MESSAGE_DEFINITIONS.getKey());
configurationEntity.setValueClob(null);
configurationDao.saveAndRefresh(configurationEntity);
// Try to build a notification message and validate the results.
assertEquals(0, defaultNotificationMessageBuilder.buildBusinessObjectDataStatusChangeMessages(businessObjectDataKey, BDATA_STATUS, BDATA_STATUS_2).size());
// Override configuration, so there will be an empty list of notification message definitions configured in the system.
configurationEntity.setValueClob(xmlHelper.objectToXml(new NotificationMessageDefinitions()));
configurationDao.saveAndRefresh(configurationEntity);
// Try to build a notification message and validate the results.
assertEquals(0, defaultNotificationMessageBuilder.buildBusinessObjectDataStatusChangeMessages(businessObjectDataKey, BDATA_STATUS, BDATA_STATUS_2).size());
}
use of org.finra.herd.model.jpa.ConfigurationEntity in project herd by FINRAOS.
the class DefaultNotificationMessageBuilderTest method testBuildBusinessObjectFormatVersionChangeMessagesJsonPayload.
@Test
public void testBuildBusinessObjectFormatVersionChangeMessagesJsonPayload() throws Exception {
// Create a business object format key.
BusinessObjectFormatKey businessObjectFormatKey = new BusinessObjectFormatKey(BDEF_NAMESPACE, BDEF_NAME, FORMAT_USAGE_CODE, FORMAT_FILE_TYPE_CODE, FORMAT_VERSION);
// Override configuration.
ConfigurationEntity configurationEntity = new ConfigurationEntity();
configurationEntity.setKey(ConfigurationValue.HERD_NOTIFICATION_BUSINESS_OBJECT_FORMAT_VERSION_CHANGE_MESSAGE_DEFINITIONS.getKey());
configurationEntity.setValueClob(xmlHelper.objectToXml(new NotificationMessageDefinitions(Collections.singletonList(new NotificationMessageDefinition(MESSAGE_TYPE, MESSAGE_DESTINATION, BUSINESS_OBJECT_FORMAT_VERSION_CHANGE_NOTIFICATION_MESSAGE_VELOCITY_TEMPLATE_JSON, getMessageHeaderDefinitions())))));
configurationDao.saveAndRefresh(configurationEntity);
// Build a notification message.
List<NotificationMessage> result = defaultNotificationMessageBuilder.buildBusinessObjectFormatVersionChangeMessages(businessObjectFormatKey, FORMAT_VERSION_2.toString());
// Validate the results.
assertEquals(1, CollectionUtils.size(result));
assertEquals(7, CollectionUtils.size(result.get(0).getMessageHeaders()));
String uuid = result.get(0).getMessageHeaders().get(4).getValue();
assertEquals(UUID.randomUUID().toString().length(), StringUtils.length(uuid));
validateBusinessObjectFormatVersionChangeMessageWithJsonPayload(MESSAGE_TYPE, MESSAGE_DESTINATION, businessObjectFormatKey, businessObjectFormatKey.getBusinessObjectFormatVersion().toString(), FORMAT_VERSION_2.toString(), getExpectedMessageHeaders(uuid), result.get(0));
}
use of org.finra.herd.model.jpa.ConfigurationEntity in project herd by FINRAOS.
the class DefaultNotificationMessageBuilderTest method testBuildBusinessObjectDataStatusChangeMessagesJsonPayloadNoMessageHeaders.
@Test
public void testBuildBusinessObjectDataStatusChangeMessagesJsonPayloadNoMessageHeaders() throws Exception {
// Create a business object data entity.
BusinessObjectDataEntity businessObjectDataEntity = businessObjectDataServiceTestHelper.createTestValidBusinessObjectData(SUBPARTITION_VALUES, NO_ATTRIBUTE_DEFINITIONS, NO_ATTRIBUTES);
// Get a business object data key.
BusinessObjectDataKey businessObjectDataKey = businessObjectDataHelper.getBusinessObjectDataKey(businessObjectDataEntity);
// Override configuration.
ConfigurationEntity configurationEntity = new ConfigurationEntity();
configurationEntity.setKey(ConfigurationValue.HERD_NOTIFICATION_BUSINESS_OBJECT_DATA_STATUS_CHANGE_MESSAGE_DEFINITIONS.getKey());
configurationEntity.setValueClob(xmlHelper.objectToXml(new NotificationMessageDefinitions(Collections.singletonList(new NotificationMessageDefinition(MESSAGE_TYPE, MESSAGE_DESTINATION, BUSINESS_OBJECT_DATA_STATUS_CHANGE_NOTIFICATION_MESSAGE_VELOCITY_TEMPLATE_JSON, NO_MESSAGE_HEADER_DEFINITIONS)))));
configurationDao.saveAndRefresh(configurationEntity);
// Build a notification message.
List<NotificationMessage> result = defaultNotificationMessageBuilder.buildBusinessObjectDataStatusChangeMessages(businessObjectDataKey, BDATA_STATUS, BDATA_STATUS_2);
// Validate the notification message.
assertEquals(1, CollectionUtils.size(result));
validateBusinessObjectDataStatusChangeMessageWithJsonPayload(MESSAGE_TYPE, MESSAGE_DESTINATION, businessObjectDataKey, BDATA_STATUS, BDATA_STATUS_2, NO_ATTRIBUTES, NO_MESSAGE_HEADERS, result.get(0));
}
Aggregations