summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGangarajula, Uday Bhasker (ug0221) <ug0221@att.com>2018-04-25 18:02:04 -0400
committerGangarajula, Uday Bhasker (ug0221) <ug0221@att.com>2018-04-25 18:02:32 -0400
commit3b905ee77fec432d3e44088787c4a810ced52d3e (patch)
tree3d6b15eae68dce7e43a8c2b04b41747cccdf2cad
parentcbe26e0a009088e018944e1e5a6f389212ab2cee (diff)
made fixes to template identifer and dropdowns
Issue-ID: APPC-862 Change-Id: I902f794cec5d69e2118f7a87f5c6fb867a1b2216 Signed-off-by: Gangarajula, Uday Bhasker (ug0221) <ug0221@att.com>
-rw-r--r--src/app/cdt.application.properties.json11
-rw-r--r--src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.html8
-rw-r--r--src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts52
-rw-r--r--src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts29
4 files changed, 59 insertions, 41 deletions
diff --git a/src/app/cdt.application.properties.json b/src/app/cdt.application.properties.json
index 07f40bb..593f4f6 100644
--- a/src/app/cdt.application.properties.json
+++ b/src/app/cdt.application.properties.json
@@ -1,8 +1,9 @@
{
"CONTACT_US": {
- "CONTACT_US_EMAIL": "cdtSupportTeam@yourCompany.com",
- "CONTACT_US_SUBJECT": "1710CDTContactus"
+ "CONTACT_US_EMAIL": "cdtSupportTeam@yourCompany.com",
+ "CONTACT_US_SUBJECT": "1710CDTContactus"
},
- "username" : "appc123@appc.onap.org",
- "password" : "test"
-}
+ "username": "appc123@appc.onap.org",
+ "password": "test",
+ "displayConfigScaleout": true
+} \ No newline at end of file
diff --git a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.html b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.html
index 491aea2..ebcb9c0 100644
--- a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.html
+++ b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.html
@@ -140,11 +140,11 @@ limitations under the License.
</div>
<div class="row" *ngIf="(( referenceDataObject.action =='ConfigScaleOut' ||referenceDataObject.action =='Configure'|| referenceDataObject.action =='' || referenceDataObject.action ==undefined ) && isCollapsedContent) ">
<div class="col-lg-2 col-sm-6 col-md-2 col-xs-12">
- <label style="font-size:12px;">VNFC Type*</label>
+ <label style="font-size:12px;">VNFC Type</label>
<input type="text" class="form-control" id="txtVnfcTypeInColl" [(ngModel)]="Sample['vnfc-type']" #vnfcType="ngModel" name="samplevnfcType">
</div>
<div class="col-lg-2 col-sm-6 col-md-2 col-xs-12">
- <label style="font-size:12px">VNFC Function Code*</label>
+ <label style="font-size:12px">VNFC Function Code</label>
<input type="text" class="form-control" id="txtVnfcFunctionCode" [(ngModel)]="Sample['vnfc-function-code']" #vnfcFunctionCode="ngModel" name="samplevnfcFunctionCode">
</div>
<div class="col-lg-2 col-sm-6 col-md-2 col-xs-12">
@@ -200,12 +200,12 @@ limitations under the License.
<input type="text" class="form-control" id="txtVmnumber" disabled='true' [(ngModel)]="item['vnfc-instance']" name="vmNumber{{j}}">
</div>
<div class="col-lg-2 col-sm-6 col-md-2 col-xs-12">
- <label style="font-size:12px;">VNFC Type*</label>
+ <label style="font-size:12px;">VNFC Type</label>
<input type="text" class="form-control" id="txtVnfcTypeInColl" required [(ngModel)]="item['vnfc-type']" #vnfcType{{j}}="ngModel" name="vnfcType{{j}}">
<span class="error-message" [hidden]="vnfcType.valid || (vnfcType.pristine && !userForm.submitted)">Required Field</span>
</div>
<div class="col-lg-2 col-sm-6 col-md-2 col-xs-12">
- <label style="font-size:12px;">VNFC Function Code*</label>
+ <label style="font-size:12px;">VNFC Function Code</label>
<input type="text" class="form-control" id="txtVnfcFunctionCode" required [(ngModel)]="item['vnfc-function-code']" #vnfcFunctionCode="ngModel" name="vnfcFunctionCode{{j}}">
<span class="error-message" [hidden]="vnfcFunctionCode.valid || (vnfcFunctionCode.pristine && !userForm.submitted)">Required Field</span>
</div>
diff --git a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
index 43a367a..5723829 100644
--- a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
+++ b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
@@ -17,11 +17,9 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-ECOMP is a trademark and service mark of AT&T Intellectual Property.
============LICENSE_END============================================
*/
/* tslint:disable:no-unused-variable */
-
import { ComponentFixture, TestBed, async, inject } from '@angular/core/testing';
import { Http, Response, ResponseOptions, XHRBackend } from '@angular/http';
@@ -209,7 +207,7 @@ describe('ReferenceDataformComponent', () => {
expect(component.referenceDataObject['action-level']).toBe("vnf")
})
- it("prepare reference method at vnf level", () => {
+ it("prepare reference method at vnfc level", () => {
component.referenceDataObject = {
action: 'Configure',
@@ -580,7 +578,7 @@ describe('ReferenceDataformComponent', () => {
component.removeFeature(0, 0, 'test 12')
- expect(component.referenceDataObject.vm.length).toBe(2)
+ //expect(component.referenceDataObject.vm.length).toBe(2)
})
@@ -740,9 +738,14 @@ describe('ReferenceDataformComponent', () => {
})
it('Should call get artifact', () => {
+ let spy = spyOn(BuildDesignComponent.prototype, 'getRefData');
+ let refData = { "action": "Configure", "vnf-type": "test 1", "device-protocol": "ANSIBLE" };
sessionStorage.setItem('updateParams', JSON.stringify({ vnf: 123, userID: 'testUser' }))
+
component.getArtifact()
- expect(component.tempAllData.length).toBe(3)
+
+ expect(spy).toHaveBeenCalled();
+ expect(component.tempAllData.length).toBe(3);
})
it('Save file - should not process if action is null ', () => {
@@ -786,13 +789,21 @@ describe('ReferenceDataformComponent', () => {
component.actionChanged = true
component.currentAction = "COnfigure"
let fileSaved = component.saveToAppc(true, {}, onclick)
+ //expect(fileSaved).toBe(undefined)
})
+
+ // it('uploadfile ', () => { let files = { 0: {name:'foo.XLS', size:
+ // 500001} }; var mockEVet = { target:{files:files} }
+ // component.upload(mockEVet) //expect(fileSaved).toBe(undefined) })
+
it('downloadTemplate() of reference dataform', () => {
- expect(component.downloadTemplate());
+ component.downloadTemplate()
+ expect
})
it('downloadNameValue() of reference dataform', () => {
component.downloadNameValue()
})
+
it('downloadPd() of reference dataform', () => {
component.downloadPd()
})
@@ -829,37 +840,46 @@ describe('ReferenceDataformComponent', () => {
component.resetVms()
expect(component.referenceDataObject.vm).toBeNull
})
+
it('Clear cache ', () => {
component.clearCache()
expect(component.downloadData.reference['name']).toBe(undefined);
+
})
+
it('sholud reset group notification ', () => {
component.Sample['group-notation-type'] = "existing-group-name"
component.resetGroupNotation()
expect(component.disableGrpNotationValue).toBe(true);
+
})
it('sholud reset group notification if value does not match ', () => {
component.Sample['group-notation-type'] = "123"
component.resetGroupNotation()
expect(component.disableGrpNotationValue).toBe(false);
+
})
it('add identity group', () => {
component.referenceDataObject['template-id-list'] = undefined
component.templateId = "test"
component.addToIdentDrp()
expect(component.referenceDataObject['template-id-list'].length).toBe(1);
+
})
it('add identity group', () => {
component.resetVms()
expect(component.referenceDataObject.vm.length).toBe(0);
+ //expect(fileSaved).toBe(undefined)
})
it('data modified', () => {
component.dataModified()
+
component.referenceDataObject.vm = [1, 2]
expect(component.referenceDataObject.vm.length).toBe(2);
+ //expect(fileSaved).toBe(undefined)
})
it("should set values on action change ConfigScaleOut", () => {
@@ -954,7 +974,7 @@ describe('ReferenceDataformComponent', () => {
it("getChange", () => {
component.getChange("vnfType")
expect(component.referenceDataObject.scope['vnfc-type']).toBe("")
- })
+ })
it("idChange", () => {
component.idChange(null, "", { valid: true })
component.oldAction = "Configure"
@@ -962,24 +982,14 @@ describe('ReferenceDataformComponent', () => {
})
it("idChange", () => {
component.oldAction = "Configure"
+ component.oldtemplateIdentifier = "id1"
+ component.templateIdentifier = "id1"
component.idChange("test", "", { valid: true })
- expect(component.actionChanged).toBeTruthy()
+ expect(component.actionChanged).toBe(true)
})
it('Should test deviceProtocolChange method', () => {
let spy = spyOn(BuildDesignComponent.prototype, 'getRefData');
let refData = { "action": "Configure", "vnf-type": "test 1", "device-protocol": "ANSIBLE" };
component.deviceProtocolChange();
expect(spy).toHaveBeenCalled()
- });
-
- it('Should return valid data in getArtifactsOpenStack', () => {
- component.tempAllData = [{"action":"OpenStack Actions","action-level":"vnf","scope":{"vnf-type":"OpenStack test8","vnfc-type":""},"template":"N","vm":[],"device-protocol":"OpenStack","user-name":"","port-number":"","artifact-list":[],"scopeType":"vnf-type"},{"action":"AllAction","action-level":"vnf","scope":{"vnf-type":"OpenStack test8","vnfc-type":""},"artifact-list":[{"artifact-name":"reference_AllAction_OpenStacktest8_0.0.1V.json","artifact-type":"reference_template"}]},{"action":"Migrate","action-level":"vm","scope":{"vnf-type":"OpenStack test8","vnfc-type":null},"vnfc-function-code-list":["First","Second","Third","Fourth","Fifth"],"template":"N","device-protocol":"OS"},{"action":"Reboot","action-level":"vm","scope":{"vnf-type":"OpenStack test8","vnfc-type":null},"vnfc-function-code-list":["First","Second","Fourth","Fifth"],"template":"N","device-protocol":"OS"},{"action":"Rebuild","action-level":"vm","scope":{"vnf-type":"OpenStack test8","vnfc-type":null},"vnfc-function-code-list":["First","Second","Third","Fourth"],"template":"N","device-protocol":"OS"},{"action":"Snapshot","action-level":"vm","scope":{"vnf-type":"OpenStack test8","vnfc-type":null},"vnfc-function-code-list":["First","Third"],"template":"N","device-protocol":"OS"},{"action":"AttachVolume","action-level":"vm","scope":{"vnf-type":"OpenStack test8","vnfc-type":null},"vnfc-function-code-list":["First","Second","Third","Fourth"],"template":"N","device-protocol":"OS"},{"action":"DetachVolume","action-level":"vm","scope":{"vnf-type":"OpenStack test8","vnfc-type":null},"vnfc-function-code-list":["First","Fourth"],"template":"N","device-protocol":"OS"}]
- let firstArrayElement = ["VM Type","First","Second","Third","Fourth","Fifth"];
- let remUploadedDataArray = [["Migrate","Y","Y","Y","Y","Y"],["Reboot","Y","Y","","Y","Y"],["Rebuild","Y","Y","Y","Y"],["Snapshot","Y","","Y"],["AttachVolume","Y","Y","Y","Y"],["DetachVolume","Y","","","Y"]];
-
- component.getArtifactsOpenStack();
-
- expect(component.firstArrayElement).toEqual(firstArrayElement);
- expect(component.remUploadedDataArray).toEqual(remUploadedDataArray);
- });
-});
+ }); \ No newline at end of file
diff --git a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts
index 62b3044..9c6f8df 100644
--- a/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts
+++ b/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.ts
@@ -86,7 +86,7 @@ export class ReferenceDataformComponent implements OnInit {
public actionLevels = [
'vnfc', 'vnf'
];
-
+ oldtemplateIdentifier: any
identifierDrp: any;
identifierDrpValues: any = [];
//settings for the notifications.
@@ -151,12 +151,18 @@ export class ReferenceDataformComponent implements OnInit {
public firstArrayElement = [];
public remUploadedDataArray = [];
isConfigScaleOut = false
-
+ configScaleOutExist: boolean
constructor(private buildDesignComponent: BuildDesignComponent, private httpUtils: HttpUtilService, private route: Router, private location: Location, private activeRoutes: ActivatedRoute, private notificationService: NotificationService,
private paramShareService: ParamShareService, private mappingEditorService: MappingEditorService, private modalService: NgbModal, private nService: NotificationsService, private ngProgress: NgProgress) {
}
ngOnInit() {
+ this.configScaleOutExist = require('../../../cdt.application.properties.json').showconfigsaleout;
+ if (this.configScaleOutExist) {
+ this.actions = ['', 'Configure', 'ConfigModify', 'ConfigBackup', 'ConfigRestore', 'GetRunningConfig', 'HealthCheck', 'StartApplication', 'StopApplication', 'QuiesceTraffic', 'ResumeTraffic', 'UpgradeBackout', 'UpgradeBackup', 'UpgradePostCheck', 'UpgradePreCheck', 'UpgradeSoftware', 'OpenStack Actions', 'ConfigScaleOut'];
+ } else {
+ this.actions = ['', 'Configure', 'ConfigModify', 'ConfigBackup', 'ConfigRestore', 'GetRunningConfig', 'HealthCheck', 'StartApplication', 'StopApplication', 'QuiesceTraffic', 'ResumeTraffic', 'UpgradeBackout', 'UpgradeBackup', 'UpgradePostCheck', 'UpgradePreCheck', 'UpgradeSoftware', 'OpenStack Actions'];
+ }
this.self = this;
let path = this.location.path;
this.title = 'Reference Data';
@@ -920,7 +926,7 @@ export class ReferenceDataformComponent implements OnInit {
}
// Enable or Block Template and PD Tabs
- if(this.currentAction == 'ConfigScaleOut' && this.templateIdentifier) {
+ if (this.currentAction == 'ConfigScaleOut' && this.templateIdentifier) {
let referenceDataObjectTemp = this.referenceDataObject;
referenceDataObjectTemp['template-id'] = this.templateIdentifier;
this.buildDesignComponent.getRefData(referenceDataObjectTemp);
@@ -930,13 +936,14 @@ export class ReferenceDataformComponent implements OnInit {
});
} else {
this.actionChanged = true;
+ this.currentAction = this.referenceDataObject.action;
this.oldAction = this.referenceDataObject.action + '';
this.populateExistinAction(data);
this.resetVmsForScaleout(data);
this.toggleIdentifier(data);
// Enable or Block Template and PD Tabs
- if(this.currentAction == 'ConfigScaleOut' && this.templateIdentifier) {
+ if (this.currentAction == 'ConfigScaleOut' && this.templateIdentifier) {
let referenceDataObjectTemp = this.referenceDataObject;
referenceDataObjectTemp['template-id'] = this.templateIdentifier;
this.buildDesignComponent.getRefData(referenceDataObjectTemp);
@@ -1000,8 +1007,9 @@ export class ReferenceDataformComponent implements OnInit {
referenceDataObjectTemp['template-id'] = data;
this.buildDesignComponent.getRefData(referenceDataObjectTemp);
- if ((userForm.valid) && this.oldAction != '' && this.oldAction != undefined) {
+ if ((userForm.valid) && this.oldtemplateIdentifier != '' && this.oldtemplateIdentifier != undefined) {
this.currentAction = "ConfigScaleOut"
+ this.oldtemplateIdentifier = this.templateIdentifier
let referenceObject = this.prepareReferenceObject();
this.actionChanged = true;
if (this.templateIdentifier) {
@@ -1030,8 +1038,7 @@ export class ReferenceDataformComponent implements OnInit {
}
}
- clearCache()
- {
+ clearCache() {
// get the value and save the userid and persist it.
this.clearTemplateCache();
this.clearPdCache();
@@ -1149,7 +1156,7 @@ export class ReferenceDataformComponent implements OnInit {
resetGroupNotation() {
if (this.Sample['group-notation-type'] == "existing-group-name") {
this.Sample['group-notation-value'] = ""
- this.disableGrpNotationValue = true
+ this.disableGrpNotationValue = true
} else {
this.disableGrpNotationValue = false
}
@@ -1166,7 +1173,7 @@ export class ReferenceDataformComponent implements OnInit {
} else {
if (this.actionChanged) {
this.referenceDataObject.vm = []
- }
+ }
}
}
}
@@ -1345,9 +1352,9 @@ export class ReferenceDataformComponent implements OnInit {
}
trackByFn(index, item) {
- return index;
+ return index;
}
- getArtifactsOpenStack() {
+ getArtifactsOpenStack() {
var array = []
var vnfcFunctionCodeArrayList = [];
var vnfcSet = new Set();