import org.onap.cps.ncmp.impl.inventory.InventoryPersistence;
import org.onap.cps.ncmp.impl.inventory.models.YangModelCmHandle;
import org.onap.cps.ncmp.impl.models.DmiRequestBody;
+import org.onap.cps.ncmp.impl.utils.AlternateIdMatcher;
import org.onap.cps.ncmp.impl.utils.http.RestServiceUrlTemplateBuilder;
import org.onap.cps.ncmp.impl.utils.http.UrlTemplateParameters;
import org.onap.cps.utils.JsonObjectMapper;
public class DmiDataOperations {
private final InventoryPersistence inventoryPersistence;
+ private final AlternateIdMatcher alternateIdMatcher;
private final JsonObjectMapper jsonObjectMapper;
private final DmiProperties dmiProperties;
private final DmiRestClient dmiRestClient;
final String requestId,
final String authorization) {
- final Set<String> cmHandlesReferences = getDistinctCmHandleReferences(dataOperationRequest);
+ final Set<String> cmHandleIds = getDistinctCmHandleIds(dataOperationRequest);
final Collection<YangModelCmHandle> yangModelCmHandles
- = inventoryPersistence.getYangModelCmHandlesFromCmHandleReferences(cmHandlesReferences);
+ = inventoryPersistence.getYangModelCmHandles(cmHandleIds);
final Map<String, List<DmiDataOperation>> operationsOutPerDmiServiceName
= DmiDataOperationsHelper.processPerDefinitionInDataOperationsRequest(topicParamInQuery,
}
}
- private static Set<String> getDistinctCmHandleReferences(final DataOperationRequest dataOperationRequest) {
+ private Set<String> getDistinctCmHandleIds(final DataOperationRequest dataOperationRequest) {
return dataOperationRequest.getDataOperationDefinitions().stream()
- .flatMap(dataOperationDefinition ->
- dataOperationDefinition.getCmHandleReferences().stream()).collect(Collectors.toSet());
+ .flatMap(it -> it.getCmHandleReferences().stream())
+ .map(alternateIdMatcher::getCmHandleId)
+ .collect(Collectors.toSet());
}
private void asyncSendMultipleRequest(final String requestId, final String topicParamInQuery,
*/
Collection<YangModelCmHandle> getYangModelCmHandles(Collection<String> cmHandleIds);
- /**
- * This method retrieves DMI service name, DMI properties and the state for a given list of cm handle references.
- *
- * @param cmHandleReferences a list of the ids of the cm handles
- * @return collection of yang model cm handles
- */
- Collection<YangModelCmHandle> getYangModelCmHandlesFromCmHandleReferences(Collection<String> cmHandleReferences);
-
/**
* Method to return module definitions by cmHandleId.
*
return YangDataConverter.toYangModelCmHandles(getCmHandleDataNodes(validCmHandleIds));
}
- @Override
- public Collection<YangModelCmHandle> getYangModelCmHandlesFromCmHandleReferences(
- final Collection<String> cmHandleReferences) {
-
- final String cpsPathForCmHandlesByReferences = getCpsPathForCmHandlesByReferences(cmHandleReferences);
-
- final Collection<DataNode> cmHandlesAsDataNodes =
- cmHandleQueryService.queryNcmpRegistryByCpsPath(
- cpsPathForCmHandlesByReferences, INCLUDE_ALL_DESCENDANTS, cmHandleReferences.size());
-
- return YangDataConverter.toYangModelCmHandles(cmHandlesAsDataNodes);
- }
-
@Override
public Collection<ModuleDefinition> getModuleDefinitionsByCmHandleId(final String cmHandleId) {
return cpsModuleService.getModuleDefinitionsByAnchorName(NFP_OPERATIONAL_DATASTORE_DATASPACE_NAME, cmHandleId);
def 'Execute (async) data operation from DMI service.'() {
given: 'collection of yang model cm Handles and data operation request'
- mockYangModelCmHandleCollectionRetrieval([yangModelCmHandleProperty])
+ mockYangModelCmHandleRetrievalByCmHandleId([yangModelCmHandleProperty])
def dataOperationBatchRequestJsonData = TestUtils.getResourceFileContent('dataOperationRequest.json')
def dataOperationRequest = spiedJsonObjectMapper.convertJsonString(dataOperationBatchRequestJsonData, DataOperationRequest.class)
dataOperationRequest.dataOperationDefinitions[0].cmHandleReferences = [cmHandleId]
def 'Execute (async) data operation from DMI service with Exception.'() {
given: 'collection of yang model cm Handles and data operation request'
- mockYangModelCmHandleCollectionRetrieval([yangModelCmHandleProperty])
+ mockYangModelCmHandleRetrievalByCmHandleId([yangModelCmHandleProperty])
def dataOperationBatchRequestJsonData = TestUtils.getResourceFileContent('dataOperationRequest.json')
def dataOperationRequest = spiedJsonObjectMapper.convertJsonString(dataOperationBatchRequestJsonData, DataOperationRequest.class)
dataOperationRequest.dataOperationDefinitions[0].cmHandleReferences = [cmHandleId]
mockInventoryPersistence.getYangModelCmHandle(cmHandleId) >> yangModelCmHandle
}
- def mockYangModelCmHandleCollectionRetrieval(dmiProperties) {
+ def mockYangModelCmHandleRetrievalByCmHandleId(dmiProperties) {
populateYangModelCmHandle(dmiProperties, '')
- mockInventoryPersistence.getYangModelCmHandlesFromCmHandleReferences(_) >> [yangModelCmHandle]
+ mockInventoryPersistence.getYangModelCmHandles(_) >> [yangModelCmHandle]
}
def populateYangModelCmHandle(dmiProperties, moduleSetTag) {
assert results.size() == 0
}
- def "Retrieve multiple YangModelCmHandles using cm handle references"() {
- given: 'the cps data service returns 2 data nodes from the DMI registry'
- def dataNodes = [new DataNode(xpath: xpath, leaves: ['id': cmHandleId, 'alternate-id':alternateId]), new DataNode(xpath: xpath2, leaves: ['id': cmHandleId2,'alternate-id':alternateId2])]
- mockCmHandleQueries.queryNcmpRegistryByCpsPath(_, INCLUDE_ALL_DESCENDANTS, _) >> dataNodes
- when: 'retrieving the yang modelled cm handle'
- def results = objectUnderTest.getYangModelCmHandlesFromCmHandleReferences([cmHandleId, cmHandleId2])
- then: 'verify both have returned and cmhandleIds are correct'
- assert results.size() == 2
- assert results.id.containsAll([cmHandleId, cmHandleId2])
- }
-
def 'Get a Cm Handle Composite State'() {
given: 'a valid cm handle id'
def cmHandleId = 'Some-Cm-Handle'