Search in sources :

Example 1 with IArtifactInfo

use of org.onap.sdc.api.notification.IArtifactInfo in project so by onap.

the class ToscaResourceInstaller method isCsarAlreadyDeployed.

public boolean isCsarAlreadyDeployed(ToscaResourceStructure toscaResourceStructure) throws ArtifactInstallerException {
    boolean deployed = false;
    if (toscaResourceStructure == null) {
        return deployed;
    }
    IArtifactInfo inputToscaCsar = toscaResourceStructure.getToscaArtifact();
    String checkSum = inputToscaCsar.getArtifactChecksum();
    String artifactUuid = inputToscaCsar.getArtifactUUID();
    Optional<ToscaCsar> toscaCsarObj = toscaCsarRepo.findById(artifactUuid);
    if (toscaCsarObj.isPresent()) {
        ToscaCsar toscaCsar = toscaCsarObj.get();
        if (!toscaCsar.getArtifactChecksum().equalsIgnoreCase(checkSum)) {
            String errorMessage = String.format("Csar with UUID: %s already exists.Their checksums don't match", artifactUuid);
            throw new ArtifactInstallerException(errorMessage);
        } else if (toscaCsar.getArtifactChecksum().equalsIgnoreCase(checkSum)) {
            deployed = true;
        }
    }
    return deployed;
}
Also used : IArtifactInfo(org.onap.sdc.api.notification.IArtifactInfo) ArtifactInstallerException(org.onap.so.asdc.client.exceptions.ArtifactInstallerException) ToscaCsar(org.onap.so.db.catalog.beans.ToscaCsar)

Example 2 with IArtifactInfo

use of org.onap.sdc.api.notification.IArtifactInfo in project so by onap.

the class ASDCNotificationLogging method dumpArtifactInfoList.

private static String dumpArtifactInfoList(List<IArtifactInfo> artifactsList) {
    if (artifactsList == null || artifactsList.isEmpty()) {
        return null;
    }
    StringBuilder buffer = new StringBuilder();
    buffer.append("{");
    for (IArtifactInfo artifactInfoElem : artifactsList) {
        buffer.append(System.lineSeparator());
        buffer.append(testNull(dumpASDCArtifactInfo(artifactInfoElem)));
        buffer.append(System.lineSeparator());
        buffer.append(",");
    }
    buffer.replace(buffer.length() - 1, buffer.length(), System.lineSeparator());
    buffer.append("}");
    buffer.append(System.lineSeparator());
    return buffer.toString();
}
Also used : IArtifactInfo(org.onap.sdc.api.notification.IArtifactInfo)

Example 3 with IArtifactInfo

use of org.onap.sdc.api.notification.IArtifactInfo in project so by onap.

the class ASDCNotificationLogging method dumpASDCArtifactInfo.

private static String dumpASDCArtifactInfo(IArtifactInfo artifactInfo) {
    if (artifactInfo == null) {
        return null;
    }
    StringBuilder buffer = new StringBuilder("Service Artifacts Info:");
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactName:");
    buffer.append(testNull(artifactInfo.getArtifactName()));
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactVersion:");
    buffer.append(testNull(artifactInfo.getArtifactVersion()));
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactType:");
    buffer.append(testNull(artifactInfo.getArtifactType()));
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactDescription:");
    buffer.append(testNull(artifactInfo.getArtifactDescription()));
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactTimeout:");
    buffer.append(testNull(artifactInfo.getArtifactTimeout()));
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactURL:");
    buffer.append(testNull(artifactInfo.getArtifactURL()));
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactUUID:");
    buffer.append(testNull(artifactInfo.getArtifactUUID()));
    buffer.append(System.lineSeparator());
    buffer.append("ArtifactChecksum:");
    buffer.append(testNull(artifactInfo.getArtifactChecksum()));
    buffer.append(System.lineSeparator());
    buffer.append("GeneratedArtifact:");
    buffer.append("{");
    buffer.append(testNull(dumpASDCArtifactInfo(artifactInfo.getGeneratedArtifact())));
    buffer.append(System.lineSeparator());
    buffer.append("}");
    buffer.append(System.lineSeparator());
    buffer.append("RelatedArtifacts:");
    if (artifactInfo.getRelatedArtifacts() != null) {
        buffer.append("{");
        buffer.append(System.lineSeparator());
        for (IArtifactInfo artifactInfoElem : artifactInfo.getRelatedArtifacts()) {
            buffer.append(testNull(dumpASDCArtifactInfo(artifactInfoElem)));
            buffer.append(System.lineSeparator());
            buffer.append(",");
        }
        buffer.replace(buffer.length() - 1, buffer.length(), System.lineSeparator());
        buffer.append("}");
        buffer.append(System.lineSeparator());
    } else {
        buffer.append("NULL");
    }
    buffer.append(System.lineSeparator());
    return buffer.toString();
}
Also used : IArtifactInfo(org.onap.sdc.api.notification.IArtifactInfo)

Example 4 with IArtifactInfo

use of org.onap.sdc.api.notification.IArtifactInfo in project so by onap.

the class ToscaResourceInstallerTest method prepareToscaResourceStructure.

private ToscaResourceStructure prepareToscaResourceStructure(boolean prepareVFModuleStructures, ToscaResourceInstaller toscaInstaller) throws ArtifactInstallerException {
    Metadata metadata = mock(Metadata.class);
    IResourceInstance resourceInstance = mock(ResourceInstance.class);
    NodeTemplate nodeTemplate = mock(NodeTemplate.class);
    ISdcCsarHelper csarHelper = mock(SdcCsarHelperImpl.class);
    IArtifactInfo inputCsar = mock(IArtifactInfo.class);
    String artifactUuid = "0122c05e-e13a-4c63-b5d2-475ccf23aa74";
    String checkSum = "MGUzNjJjMzk3OTBkYzExYzQ0MDg2ZDc2M2E3ZjZiZmY=";
    doReturn(checkSum).when(inputCsar).getArtifactChecksum();
    doReturn(artifactUuid).when(inputCsar).getArtifactUUID();
    doReturn("1.0").when(inputCsar).getArtifactVersion();
    doReturn("TestCsarWithGroupAndVFModule").when(inputCsar).getArtifactName();
    doReturn("Test Csar data with Group and VF module inputs").when(inputCsar).getArtifactDescription();
    doReturn("http://localhost/dummy/url/test.csar").when(inputCsar).getArtifactURL();
    ToscaResourceStructure toscaResourceStructObj = new ToscaResourceStructure();
    toscaResourceStructObj.setToscaArtifact(inputCsar);
    ToscaCsarRepository toscaCsarRepo = spy(ToscaCsarRepository.class);
    ToscaCsar toscaCsar = mock(ToscaCsar.class);
    Optional<ToscaCsar> returnValue = Optional.of(toscaCsar);
    doReturn(artifactUuid).when(toscaCsar).getArtifactUUID();
    doReturn(checkSum).when(toscaCsar).getArtifactChecksum();
    doReturn(returnValue).when(toscaCsarRepo).findById(artifactUuid);
    ReflectionTestUtils.setField(toscaInstaller, "toscaCsarRepo", toscaCsarRepo);
    NotificationDataImpl notificationData = new NotificationDataImpl();
    notificationData.setDistributionID("testStatusSuccessfulTosca");
    notificationData.setServiceVersion("1234567");
    notificationData.setServiceUUID("serviceUUID1");
    notificationData.setWorkloadContext("workloadContext1");
    String serviceType = "test-type1";
    String serviceRole = "test-role1";
    String category = "Network L3+";
    String description = "Customer Orderable service description";
    String name = "Customer_Orderable_Service";
    String uuid = "72db5868-4575-4804-b546-0b0d3c3b5ac6";
    String invariantUUID = "6f30bbe3-4590-4185-a7e0-4f9610926c6f";
    String namingPolicy = "naming Policy1";
    String ecompGeneratedNaming = "true";
    String environmentContext = "General_Revenue-Bearing1";
    String resourceCustomizationUUID = "0177ba22-5547-4e4e-bcf8-178f7f71de3a";
    doReturn(serviceType).when(metadata).getValue("serviceType");
    doReturn(serviceRole).when(metadata).getValue("serviceRole");
    doReturn(category).when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_CATEGORY);
    doReturn(description).when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_DESCRIPTION);
    doReturn("1.0").when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_VERSION);
    doReturn(name).when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_NAME);
    doReturn(uuid).when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_UUID);
    doReturn(environmentContext).when(metadata).getValue(metadata.getValue("environmentContext"));
    doReturn(invariantUUID).when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID);
    doReturn(namingPolicy).when(metadata).getValue("namingPolicy");
    doReturn(ecompGeneratedNaming).when(metadata).getValue("ecompGeneratedNaming");
    doReturn(resourceCustomizationUUID).when(metadata).getValue("vfModuleModelCustomizationUUID");
    ServiceRepository serviceRepo = spy(ServiceRepository.class);
    VnfResourceRepository vnfRepo = spy(VnfResourceRepository.class);
    doReturn(null).when(vnfRepo).findResourceByModelUUID(uuid);
    VFModuleRepository vfModuleRepo = spy(VFModuleRepository.class);
    InstanceGroupRepository instanceGroupRepo = spy(InstanceGroupRepository.class);
    WorkflowResource workflowResource = spy(WorkflowResource.class);
    ReflectionTestUtils.setField(toscaInstaller, "serviceRepo", serviceRepo);
    ReflectionTestUtils.setField(toscaInstaller, "vnfRepo", vnfRepo);
    ReflectionTestUtils.setField(toscaInstaller, "vfModuleRepo", vfModuleRepo);
    ReflectionTestUtils.setField(toscaInstaller, "instanceGroupRepo", instanceGroupRepo);
    ReflectionTestUtils.setField(toscaInstaller, "workflowResource", workflowResource);
    // doReturn(csarHelper).when(toscaResourceStructure).getSdcCsarHelper();
    toscaResourceStructObj.setSdcCsarHelper(csarHelper);
    doReturn(resourceCustomizationUUID).when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_CUSTOMIZATIONUUID);
    doReturn(uuid).when(metadata).getValue(SdcPropertyNames.PROPERTY_NAME_VFMODULEMODELUUID);
    // vnfc instance group list
    List<Group> vnfcInstanceGroupList = new ArrayList<>();
    Group vnfcG1 = mock(Group.class);
    Map<String, Object> metaProperties = new HashMap<>();
    metaProperties.put(SdcPropertyNames.PROPERTY_NAME_UUID, "vnfc_group1_uuid");
    metaProperties.put(SdcPropertyNames.PROPERTY_NAME_NAME, "vnfc_group1_uuid");
    metaProperties.put(SdcPropertyNames.PROPERTY_NAME_INVARIANTUUID, "vnfc_group1_invariantid");
    metaProperties.put(SdcPropertyNames.PROPERTY_NAME_VERSION, "1.0");
    Metadata vnfcmetadata = new Metadata(metaProperties);
    doReturn(vnfcmetadata).when(vnfcG1).getMetadata();
    ArrayList<NodeTemplate> memberList = new ArrayList();
    doReturn(memberList).when(vnfcG1).getMemberNodes();
    vnfcInstanceGroupList.add(vnfcG1);
    SubstitutionMappings submappings = mock(SubstitutionMappings.class);
    doReturn(new ArrayList<Input>()).when(submappings).getInputs();
    doReturn(submappings).when(nodeTemplate).getSubMappingToscaTemplate();
    doReturn(notificationData).when(vfResourceStruct).getNotification();
    doReturn(resourceInstance).when(vfResourceStruct).getResourceInstance();
    if (prepareVFModuleStructures) {
        // VfModule list
        List<Group> vfModuleGroups = new ArrayList<>();
        Group g1 = mock(Group.class);
        doReturn(metadata).when(g1).getMetadata();
        vfModuleGroups.add(g1);
        doReturn(metadata).when(nodeTemplate).getMetaData();
        List<NodeTemplate> nodeList = new ArrayList<>();
        nodeList.add(nodeTemplate);
        IVfModuleData moduleMetadata = mock(IVfModuleData.class);
        doReturn(name).when(moduleMetadata).getVfModuleModelName();
        doReturn(invariantUUID).when(moduleMetadata).getVfModuleModelInvariantUUID();
        doReturn(Collections.<String>emptyList()).when(moduleMetadata).getArtifacts();
        doReturn(resourceCustomizationUUID).when(moduleMetadata).getVfModuleModelCustomizationUUID();
        doReturn(uuid).when(moduleMetadata).getVfModuleModelUUID();
        doReturn("1.0").when(moduleMetadata).getVfModuleModelVersion();
        VfModuleStructure moduleStructure = new VfModuleStructure(vfResourceStruct, moduleMetadata);
        List<VfModuleStructure> moduleStructures = new ArrayList<>();
        moduleStructures.add(moduleStructure);
        doReturn(moduleStructures).when(vfResourceStruct).getVfModuleStructure();
    }
    toscaResourceStructObj.setServiceMetadata(metadata);
    doReturn("resourceInstanceName1").when(resourceInstance).getResourceInstanceName();
    doReturn(resourceCustomizationUUID).when(resourceInstance).getResourceCustomizationUUID();
    doReturn("resourceName1").when(resourceInstance).getResourceName();
    Service service = toscaInstaller.createService(toscaResourceStructObj, vfResourceStruct);
    assertNotNull(service);
    service.setModelVersion("1.0");
    doReturn(service).when(serviceRepo).save(service);
    WatchdogComponentDistributionStatusRepository watchdogCDStatusRepository = spy(WatchdogComponentDistributionStatusRepository.class);
    ReflectionTestUtils.setField(toscaInstaller, "watchdogCDStatusRepository", watchdogCDStatusRepository);
    doReturn(null).when(watchdogCDStatusRepository).save(any(WatchdogComponentDistributionStatus.class));
    VnfcInstanceGroupCustomizationRepository vnfcInstanceGroupCustomizationRepo = spy(VnfcInstanceGroupCustomizationRepository.class);
    ReflectionTestUtils.setField(toscaInstaller, "vnfcInstanceGroupCustomizationRepo", vnfcInstanceGroupCustomizationRepo);
    doReturn(null).when(vnfcInstanceGroupCustomizationRepo).save(any(VnfcInstanceGroupCustomization.class));
    return toscaResourceStructObj;
}
Also used : Group(org.onap.sdc.toscaparser.api.Group) ISdcCsarHelper(org.onap.sdc.tosca.parser.api.ISdcCsarHelper) HashMap(java.util.HashMap) LinkedHashMap(java.util.LinkedHashMap) Metadata(org.onap.sdc.toscaparser.api.elements.Metadata) ArrayList(java.util.ArrayList) WatchdogComponentDistributionStatusRepository(org.onap.so.db.request.data.repository.WatchdogComponentDistributionStatusRepository) VfModuleStructure(org.onap.so.asdc.installer.VfModuleStructure) Input(org.onap.sdc.toscaparser.api.parameters.Input) NotificationDataImpl(org.onap.so.asdc.client.test.emulators.NotificationDataImpl) SubstitutionMappings(org.onap.sdc.toscaparser.api.SubstitutionMappings) IArtifactInfo(org.onap.sdc.api.notification.IArtifactInfo) WorkflowResource(org.onap.so.asdc.installer.bpmn.WorkflowResource) WatchdogComponentDistributionStatus(org.onap.so.db.request.beans.WatchdogComponentDistributionStatus) IResourceInstance(org.onap.sdc.api.notification.IResourceInstance) NodeTemplate(org.onap.sdc.toscaparser.api.NodeTemplate) ToscaResourceStructure(org.onap.so.asdc.installer.ToscaResourceStructure) IVfModuleData(org.onap.so.asdc.installer.IVfModuleData)

Example 5 with IArtifactInfo

use of org.onap.sdc.api.notification.IArtifactInfo in project so by onap.

the class ToscaResourceInstallerTest method isCsarAlreadyDeployedTest.

@Test
public void isCsarAlreadyDeployedTest() throws ArtifactInstallerException {
    IArtifactInfo inputCsar = mock(IArtifactInfo.class);
    String artifactUuid = "0122c05e-e13a-4c63-b5d2-475ccf13aa74";
    String checkSum = "MGUzNjJjMzk3OTBkYzExYzQ0MDg2ZDc2M2E2ZjZiZmY=";
    doReturn(checkSum).when(inputCsar).getArtifactChecksum();
    doReturn(artifactUuid).when(inputCsar).getArtifactUUID();
    doReturn(inputCsar).when(toscaResourceStructure).getToscaArtifact();
    ToscaCsar toscaCsar = mock(ToscaCsar.class);
    Optional<ToscaCsar> returnValue = Optional.of(toscaCsar);
    ToscaCsarRepository toscaCsarRepo = spy(ToscaCsarRepository.class);
    doReturn(artifactUuid).when(toscaCsar).getArtifactUUID();
    doReturn(checkSum).when(toscaCsar).getArtifactChecksum();
    doReturn(returnValue).when(toscaCsarRepo).findById(artifactUuid);
    ReflectionTestUtils.setField(toscaInstaller, "toscaCsarRepo", toscaCsarRepo);
    boolean isCsarDeployed = toscaInstaller.isCsarAlreadyDeployed(toscaResourceStructure);
    assertTrue(isCsarDeployed);
    verify(toscaCsarRepo, times(1)).findById(artifactUuid);
    verify(toscaResourceStructure, times(1)).getToscaArtifact();
    verify(toscaCsar, times(2)).getArtifactChecksum();
}
Also used : IArtifactInfo(org.onap.sdc.api.notification.IArtifactInfo) BaseTest(org.onap.so.asdc.BaseTest) Test(org.junit.Test)

Aggregations

IArtifactInfo (org.onap.sdc.api.notification.IArtifactInfo)12 ArtifactInstallerException (org.onap.so.asdc.client.exceptions.ArtifactInstallerException)5 IResourceInstance (org.onap.sdc.api.notification.IResourceInstance)4 ToscaResourceStructure (org.onap.so.asdc.installer.ToscaResourceStructure)4 JsonProcessingException (com.fasterxml.jackson.core.JsonProcessingException)3 UnsupportedEncodingException (java.io.UnsupportedEncodingException)3 ArrayList (java.util.ArrayList)3 IDistributionClientDownloadResult (org.onap.sdc.api.results.IDistributionClientDownloadResult)3 ObjectMapper (com.fasterxml.jackson.databind.ObjectMapper)2 IOException (java.io.IOException)2 HashMap (java.util.HashMap)2 LinkedHashMap (java.util.LinkedHashMap)2 List (java.util.List)2 Optional (java.util.Optional)2 Test (org.junit.Test)2 ErrorCode (org.onap.logging.filter.base.ErrorCode)2 ISdcCsarHelper (org.onap.sdc.tosca.parser.api.ISdcCsarHelper)2 Metadata (org.onap.sdc.toscaparser.api.elements.Metadata)2 DistributionStatusEnum (org.onap.sdc.utils.DistributionStatusEnum)2 ASDCControllerException (org.onap.so.asdc.client.exceptions.ASDCControllerException)2