Search in sources :

Example 11 with ConfigurationEntity

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"));
}
Also used : ConfigurationEntity(org.finra.herd.model.jpa.ConfigurationEntity) Test(org.junit.Test)

Example 12 with ConfigurationEntity

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.");
}
Also used : ConfigurationEntity(org.finra.herd.model.jpa.ConfigurationEntity) Test(org.junit.Test)

Example 13 with ConfigurationEntity

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());
}
Also used : NotificationMessageDefinitions(org.finra.herd.model.api.xml.NotificationMessageDefinitions) ConfigurationEntity(org.finra.herd.model.jpa.ConfigurationEntity) BusinessObjectDataKey(org.finra.herd.model.api.xml.BusinessObjectDataKey) AbstractServiceTest(org.finra.herd.service.AbstractServiceTest) Test(org.junit.Test)

Example 14 with ConfigurationEntity

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));
}
Also used : NotificationMessageDefinition(org.finra.herd.model.api.xml.NotificationMessageDefinition) NotificationMessageDefinitions(org.finra.herd.model.api.xml.NotificationMessageDefinitions) NotificationMessage(org.finra.herd.model.dto.NotificationMessage) ConfigurationEntity(org.finra.herd.model.jpa.ConfigurationEntity) BusinessObjectFormatKey(org.finra.herd.model.api.xml.BusinessObjectFormatKey) AbstractServiceTest(org.finra.herd.service.AbstractServiceTest) Test(org.junit.Test)

Example 15 with ConfigurationEntity

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));
}
Also used : NotificationMessageDefinition(org.finra.herd.model.api.xml.NotificationMessageDefinition) NotificationMessageDefinitions(org.finra.herd.model.api.xml.NotificationMessageDefinitions) NotificationMessage(org.finra.herd.model.dto.NotificationMessage) ConfigurationEntity(org.finra.herd.model.jpa.ConfigurationEntity) BusinessObjectDataEntity(org.finra.herd.model.jpa.BusinessObjectDataEntity) BusinessObjectDataKey(org.finra.herd.model.api.xml.BusinessObjectDataKey) AbstractServiceTest(org.finra.herd.service.AbstractServiceTest) Test(org.junit.Test)

Aggregations

ConfigurationEntity (org.finra.herd.model.jpa.ConfigurationEntity)57 Test (org.junit.Test)52 NotificationMessageDefinitions (org.finra.herd.model.api.xml.NotificationMessageDefinitions)42 NotificationMessageDefinition (org.finra.herd.model.api.xml.NotificationMessageDefinition)39 AbstractServiceTest (org.finra.herd.service.AbstractServiceTest)34 BusinessObjectDataKey (org.finra.herd.model.api.xml.BusinessObjectDataKey)32 NotificationMessage (org.finra.herd.model.dto.NotificationMessage)29 BusinessObjectDataEntity (org.finra.herd.model.jpa.BusinessObjectDataEntity)27 BusinessObjectFormatKey (org.finra.herd.model.api.xml.BusinessObjectFormatKey)10 MessageHeaderDefinition (org.finra.herd.model.api.xml.MessageHeaderDefinition)9 Attribute (org.finra.herd.model.api.xml.Attribute)7 AttributeDefinition (org.finra.herd.model.api.xml.AttributeDefinition)4 BusinessObjectDataInvalidateUnregisteredRequest (org.finra.herd.model.api.xml.BusinessObjectDataInvalidateUnregisteredRequest)4 BusinessObjectFormatEntity (org.finra.herd.model.jpa.BusinessObjectFormatEntity)4 MethodNotAllowedException (org.finra.herd.model.MethodNotAllowedException)2 ArrayList (java.util.ArrayList)1 CriteriaBuilder (javax.persistence.criteria.CriteriaBuilder)1 Predicate (javax.persistence.criteria.Predicate)1 JAXBException (javax.xml.bind.JAXBException)1 MessageHeader (org.finra.herd.model.dto.MessageHeader)1