aboutsummaryrefslogtreecommitdiffstats
path: root/src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts')
-rw-r--r--src/app/vnfs/build-artifacts/reference-dataform/reference-dataform.component.spec.ts30
1 files changed, 30 insertions, 0 deletions
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 41d3288..a3d87d2 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
@@ -1054,4 +1054,34 @@ describe('ReferenceDataformComponent', () => {
component.fileChange(input);
}));
+
+ it('should test validateVnfcName function with empty name value', ()=>{
+ component.validateVnfcName('');
+ expect(component.errorMessage).toBe('');
+ expect(component.invalid).toBe(true);
+ });
+
+ it('should test validateVnfcName function with name value leading and trailing white spaces', ()=>{
+ component.validateVnfcName(' name ');
+ expect(component.errorMessage).toBe('Leading and trailing spaces are not allowed');
+ expect(component.invalid).toBe(true);
+ });
+
+ it('should test validateVnfcName function with name including more than one space', ()=>{
+ component.validateVnfcName('na me');
+ expect(component.errorMessage).toBe('More than one space is not allowed in VNFC Type');
+ expect(component.invalid).toBe(true);
+ });
+
+ it('should test validateVnfcName function with name length greated than 150', ()=>{
+ component.validateVnfcName('namenamenamenamenamenamenamenanamenamenamenamenamenamenamenanamenamenamenamenamenamenamenanamenamenamenamenamenamenamenanamenamenamenamenamenamenamenanamenamenamenamenamenamenamenanamenamenamenamenamenamenamenanamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenamenanamenamnamenamename');
+ expect(component.errorMessage).toBe('VNFC Type should be of minimum one character and maximum 50 character');
+ expect(component.invalid).toBe(true);
+ });
+
+ it('should test validateVnfcName function with valid name value', ()=>{
+ component.validateVnfcName('name');
+ expect(component.errorMessage).toBe('');
+ expect(component.invalid).toBe(false);
+ });
}); \ No newline at end of file