Implementing JIRA APPC-1778 Story - new LCM actions support 75/99175/2
authorod7427 <od7427@att.com>
Tue, 3 Dec 2019 22:14:31 +0000 (17:14 -0500)
committerTaka Cho <takamune.cho@att.com>
Tue, 7 Jan 2020 22:01:37 +0000 (17:01 -0500)
- sub-task JIRA APPC-1785 - add new LCMs in CDT GUI

The new LCM actions names to be added in GUI drop-downs.

Issue-ID: APPC-1785
Change-Id: Ie4868e1920954cd6a4cd4f28c00884bcd1629f30
Signed-off-by: Taka Cho <takamune.cho@att.com>
src/app/about-us/appVersion.json
src/app/about-us/versionLog.txt
src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts
src/cdt.application.properties.json

index 4df1d6d..a12d5f0 100644 (file)
@@ -1,4 +1,4 @@
 {
-    "versionNo": "1.0.0",
+    "versionNo": "2.0.1",
     "releaseName": "ONAP"
-}
\ No newline at end of file
+}
index 9c5bd18..206eeca 100644 (file)
@@ -1,4 +1,10 @@
 
+Version 2.0.1(ONAP Release)
+==========================================================
+1. Implementing JIRA ticket APPC-1785 - add new LCMs in CDT GUI
+(new actions: LicenseManagement, PreConfigure, GetConfig, PostRebuild, PreRebuild, PreEvacuate, PostEvacuate, PreMigrate, PostMigrate, Provisioning, StartTraffic, StatusTraffic, StopTraffic)
+- which is a sub-task of Story JIRA APPC-1778 - develop new LCMs to support pre/post actions
+
 Version 1.0.0(ONAP Release)
 ==========================================================
 First released version.
index b0fc7d2..6223282 100644 (file)
@@ -128,7 +128,44 @@ export class ReferenceDataformComponent implements OnInit {
         'artifact-list': []
     };
     public refernceScopeObj = { sourceType: '', from: '', to: '' };
-    public actions = ['', 'Configure', 'ConfigModify', 'ConfigBackup', 'ConfigRestore', 'GetRunningConfig', 'HealthCheck', 'StartApplication', 'StopApplication', 'QuiesceTraffic', 'ResumeTraffic', 'DistributeTraffic', 'DistributeTrafficCheck', 'UpgradeBackout', 'UpgradeBackup', 'UpgradePostCheck', 'UpgradePreCheck', 'UpgradeSoftware', 'OpenStack Actions', 'ConfigScaleOut'];
+    public actions = ['', // using comma as prefix hereafter for easy reordering
+        , 'ConfigBackup'
+        , 'ConfigModify'
+        , 'ConfigRestore'
+        , 'ConfigScaleOut'
+        , 'Configure'
+        , 'DistributeTraffic'
+        , 'DistributeTrafficCheck'
+        , 'GetConfig'
+        , 'GetRunningConfig'
+        , 'HealthCheck'
+        , 'LicenseManagement'
+        , 'PostConfigure'
+        , 'PostEvacuate'
+        , 'PostMigrate'
+        , 'PostRebuild'
+        , 'PreConfigCheck'
+        , 'PreConfigure'
+        , 'PreEvacuate'
+        , 'PreMigrate'
+        , 'PreRebuild'
+        , 'ProvisionConfig'
+        , 'ProvisionData'
+        , 'Provisioning'
+        , 'QuiesceTraffic'
+        , 'ResumeTraffic'
+        , 'StartApplication'
+        , 'StartTraffic'
+        , 'StatusTraffic'
+        , 'StopApplication'
+        , 'StopTraffic'
+        , 'UpgradeBackout'
+        , 'UpgradeBackup'
+        , 'UpgradePostCheck'
+        , 'UpgradePreCheck'
+        , 'UpgradeSoftware'
+        , 'OpenStack Actions'
+        ]; //.. manual ordering
     public groupAnotationValue = ['', 'Pair'];
     public groupAnotationType = ['', 'first-vnfc-name', 'fixed-value', 'relative-value'];
     public deviceProtocols = ['', 'ANSIBLE', 'CHEF', 'NETCONF-XML', 'REST', 'CLI', 'RESTCONF'];
@@ -170,7 +207,6 @@ export class ReferenceDataformComponent implements OnInit {
     public remUploadedDataArray = [];
     isConfigScaleOut = false
     isConfigOrConfigModify = false
-    configScaleOutExist: boolean
     displayVnfc = 'false';
     isVnfcType: boolean;
     isVnfcTypeList: boolean = true;
@@ -212,21 +248,25 @@ export class ReferenceDataformComponent implements OnInit {
     ngOnInit() {
       let methName= "ngOnInit";
       if( this.utilityService.getTracelvl() > 0 )
-        console.log( this.classNm+": ngOnInit: start ");
+        console.log( this.classNm+": "+methName+": start ");
         // this.handleVMBlockDisplay();
-
-        //initializing the variables and checking for configscaleout fromm properties file
-        this.configScaleOutExist = require('../../../../cdt.application.properties.json').displayConfigScaleout;
-        this.displayVnfc = sessionStorage.getItem("vnfcSelectionFlag");
-        if (this.configScaleOutExist) {
-            this.actions = ['', 'Configure', 'ConfigModify', 'ConfigBackup', 'ConfigRestore', 'GetRunningConfig', 'HealthCheck', 'StartApplication', 'StopApplication', 'QuiesceTraffic', 'ResumeTraffic', 'DistributeTraffic', 'DistributeTrafficCheck', 'UpgradeBackout', 'UpgradeBackup', 'UpgradePostCheck', 'UpgradePreCheck', 'UpgradeSoftware', 'OpenStack Actions', 'ConfigScaleOut'];
-        } else {
-            this.actions = ['', 'Configure', 'ConfigModify', 'ConfigBackup', 'ConfigRestore', 'GetRunningConfig', 'HealthCheck', 'StartApplication', 'StopApplication', 'QuiesceTraffic', 'ResumeTraffic', 'DistributeTraffic', 'DistributeTrafficCheck', 'UpgradeBackout', 'UpgradeBackup', 'UpgradePostCheck', 'UpgradePreCheck', 'UpgradeSoftware', 'OpenStack Actions'];
-        }
-        this.self = this;
+      if( this.utilityService.getTracelvl() > 0 ) {
+        console.log( this.classNm+": "+methName+
+          ": actions: count="+this.actions.length );
+        for( var i0=0; i0 < this.actions.length; i0++ ) {
+          console.log( this.classNm+": "+methName+
+            ": action #"+i0+" ["+this.actions[i0]+"]");
+        };
+      };
+      this.self = this;
         let path = this.location.path;
         this.title = 'Reference Data';
-        // setting the structure for the reference data object 
+      this.displayVnfc = sessionStorage.getItem("vnfcSelectionFlag");
+      this.vnfcIdentifier= ' ';
+      if( this.utilityService.getTracelvl() > 0 )
+        console.log( this.classNm+": "+methName+
+          ": from storage: displayVnfc:["+this.displayVnfc+"]");
+      //.. setting the structure for the reference data object 
         this.referenceDataObject = {
             action: '',
             'action-level': 'vnf',
@@ -1072,66 +1112,95 @@ export class ReferenceDataformComponent implements OnInit {
         this.Sample['vnfc-type'] = '';
     }
 
-    // this method gets called with the action as parameter and the respective action details are fetched and assigned to the current page
-    populateExistinAction(data) {
+    //.. this method gets called with the action as parameter and
+    // the respective action details are fetched and assigned to the current page
+    populateExistinAction( action) {
       let methName= "populateExistinAction";
       if( this.utilityService.getTracelvl() > 0 )
-        console.log( this.classNm+": "+methName+": start: data:["+data+"]");
+        console.log( this.classNm+": "+methName+": start: action:["+action+"]");
       if( this.utilityService.getTracelvl() > 0 )
         console.log( this.classNm+": "+methName+": tempAllData:["+
           JSON.stringify(this.tempAllData)+"]");
-        let existAction = this.tempAllData.findIndex(obj => {
-            return obj.action == data;
-        });
-        if (existAction > -1) {
-            let obj = $.extend(true, {}, this.tempAllData[existAction]);
-            this.referenceDataObject = obj;
-            this.referenceDataObject.scope['vnf-type'] = obj['scope']['vnf-type'];
-            this.referenceDataObject.scope['vnfc-type-list'] = obj['scope']['vnfc-type-list'];
-            this.referenceDataObject['device-protocol'] = obj['device-protocol'];
-            this.refernceScopeObj['sourceType'] = obj['scopeType'];
-            if(obj['scope']['vnfc-type-list'] != undefined && obj['scope']['vnfc-type-list'].length >0) {
-                this.referenceDataObject['vnfcIdentifier'] = obj['scope']['vnfc-type-list'][0];
-            }
-        } else {
-            console.log( this.classNm+": populateExistinAction: action not found");
-            this.resetForm();
-            this.referenceDataObject.action = data;
-        }
-        //# iof healthCeck change deviceprotocol drp vaues
-        switch (data) {
-            case 'HealthCheck':
-                this.deviceProtocols = ['', 'ANSIBLE', 'CHEF', 'REST'];
-                this.actionHealthCheck = true;
-                break;
-            case 'UpgradeBackout':
-            case 'ResumeTraffic':
-            case 'DistributeTraffic':
-            case 'DistributeTrafficCheck':
-            case 'QuiesceTraffic':
-            case 'UpgradeBackup':
-            case 'UpgradePostCheck':
-            case 'UpgradePreCheck':
-            case 'UpgradeSoftware':
-            case 'ConfigRestore':
-            case 'StartApplication':
-            case 'StopApplication':
-            case 'ConfigBackup':
-                this.deviceProtocols = ['', 'CHEF', 'ANSIBLE'];
-                break;
-            case 'OpenStack Actions':
-                this.deviceProtocols = ['', 'OpenStack'];
-                break;
-            case 'ConfigScaleOut':
-                this.deviceProtocols = ['', 'CHEF', 'ANSIBLE', 'NETCONF-XML', 'RESTCONF'];
-                break;
-            case 'GetRunningConfig':
-                this.deviceProtocols = ['', 'CHEF', 'ANSIBLE', 'NETCONF-XML', 'RESTCONF', 'CLI', 'REST'];
-                break;
-            default:
-                this.deviceProtocols = ['', 'ANSIBLE', 'CHEF', 'NETCONF-XML', 'RESTCONF', 'CLI'];
-                this.actionHealthCheck = false;
-        }
+      let existAction = this.tempAllData.findIndex(obj => {
+        return obj.action == action;
+      });
+      if( this.utilityService.getTracelvl() > 0 )
+        console.log( this.classNm+": "+methName+": existAction="+existAction );
+      if( existAction > -1) {
+        let obj = $.extend(true, {}, this.tempAllData[existAction]);
+        this.referenceDataObject = obj;
+        this.referenceDataObject.scope['vnf-type'] = obj['scope']['vnf-type'];
+        this.referenceDataObject.scope['vnfc-type-list'] = obj['scope']['vnfc-type-list'];
+        this.referenceDataObject['device-protocol'] = obj['device-protocol'];
+        this.refernceScopeObj['sourceType'] = obj['scopeType'];
+        if( obj['scope']['vnfc-type-list'] != undefined &&
+            obj['scope']['vnfc-type-list'].length >0)
+        {
+          this.referenceDataObject['vnfcIdentifier']=
+            obj['scope']['vnfc-type-list'][0];
+        };
+      }
+      else {
+        console.log( this.classNm+": populateExistinAction: action not found");
+        this.resetForm();
+        this.referenceDataObject.action = action;
+      }
+      //# iof healthCeck change deviceprotocol drp vaues
+      switch( action) {
+        case 'HealthCheck':
+          this.deviceProtocols = ['', 'ANSIBLE', 'CHEF', 'REST'];
+          this.actionHealthCheck = true;
+          break;
+        case 'UpgradeBackout':
+        case 'ResumeTraffic':
+        case 'DistributeTraffic':
+        case 'DistributeTrafficCheck':
+        case 'QuiesceTraffic':
+        case 'UpgradeBackup':
+        case 'UpgradePostCheck':
+        case 'UpgradePreCheck':
+        case 'UpgradeSoftware':
+        case 'ConfigRestore':
+        case 'StartApplication':
+        case 'StopApplication':
+        case 'ConfigBackup':
+          this.deviceProtocols = ['', 'CHEF', 'ANSIBLE'];
+          break;
+        case 'GetConfig':
+        case 'LicenseManagement':
+        case 'PostConfigure':
+        case 'PostEvacuate':
+        case 'PostMigrate':
+        case 'PostRebuild':
+        case 'PreConfigCheck':
+        case 'PreConfigure':
+        case 'PreEvacuate':
+        case 'PreMigrate':
+        case 'PreRebuild':
+        case 'ProvisionConfig':
+        case 'ProvisionData':
+        case 'Provisioning':
+        case 'StartTraffic':
+        case 'StatusTraffic':
+        case 'StopTraffic':
+          this.deviceProtocols = ['', 'ANSIBLE'];
+          break;
+        case 'OpenStack Actions':
+          this.deviceProtocols = ['', 'OpenStack'];
+          break;
+        case 'ConfigScaleOut':
+          this.deviceProtocols = ['', 'CHEF', 'ANSIBLE', 'NETCONF-XML', 'RESTCONF'];
+          break;
+        case 'GetRunningConfig':
+          this.deviceProtocols = ['', 'CHEF', 'ANSIBLE', 'NETCONF-XML', 'RESTCONF', 'CLI', 'REST'];
+          break;
+        default:
+          this.deviceProtocols = ['', 'ANSIBLE', 'CHEF', 'NETCONF-XML', 'RESTCONF', 'CLI'];
+          this.actionHealthCheck = false;
+      };
+      if( this.utilityService.getTracelvl() > 0 )
+        console.log( this.classNm+": "+methName+
+          ": deviceProtocols count="+this.deviceProtocols.length+" finish.");
     }
 
     //Modal pop up for action change with values entered. 
index f635d23..61f9e1e 100644 (file)
@@ -6,10 +6,9 @@
     },
     "username": "admin",
     "password": "admin",
-    "displayConfigScaleout": true,
     "Actions": {
         "ConfigScaleOut": "ConfigScaleOut",
         "Configure": "Configure"
     },
     "versionNoForApiCall": "0.0.1"
-}
\ No newline at end of file
+}