summaryrefslogtreecommitdiffstats
path: root/vid-webpack-master/src/app/shared/components/genericFormPopup/instantiationTemplatesModal/instantiation.templates.modal.service.spec.ts
blob: a17abedfcbbd971634fdb78115c1f55a905775db (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
import {getTestBed, TestBed} from '@angular/core/testing';
import {HttpClientTestingModule, HttpTestingController} from '@angular/common/http/testing';
import {InstantiationTemplatesModalService} from "./instantiation.templates.modal.service";
import {AaiService} from "../../../services/aaiService/aai.service";
import {ActivatedRoute} from "@angular/router";
import {IframeService} from "../../../utils/iframe.service";
import {NgRedux} from "@angular-redux/store";
import {FeatureFlagsService} from "../../../services/featureFlag/feature-flags.service";
import {InstantiationTemplatesRowModel} from "./instantiation.templates.row.model";


class ActivatedRouteMock<T> {
  queryParams() {
    return {
      serviceModelId: '6e59c5de-f052-46fa-aa7e-2fca9d674c44'
    }
  }
}

class MockAppStore {

}

describe('instantiation templates modal service', () => {
  let injector;
  let service: InstantiationTemplatesModalService;
  let httpMock: HttpTestingController;
  let _aaiService: AaiService;
  let _activatedRoute: ActivatedRoute;

  beforeAll(done => (async () => {
    TestBed.configureTestingModule({
      imports: [HttpClientTestingModule],
      providers: [InstantiationTemplatesModalService,
        IframeService,
        AaiService,
        FeatureFlagsService,
        {provide: ActivatedRoute, useClass: ActivatedRouteMock},
        {provide: NgRedux, useClass: MockAppStore}
      ]
    });
    await TestBed.compileComponents();

    injector = getTestBed();
    service = injector.get(InstantiationTemplatesModalService);
    httpMock = injector.get(HttpTestingController);
    _aaiService = injector.get(AaiService);
    _activatedRoute = injector.get(ActivatedRoute);

  })().then(done).catch(done.fail));


  test('service should be defined', () => {
    expect(service).toBeDefined();
  });

  test('convert map to json', () => {
    let result:InstantiationTemplatesRowModel = new InstantiationTemplatesRowModel({
      requestSummary: {
        'vnf': 2,
        'vfModule': 3,
        'network': 1
      }
    });
    expect(result.summary).toEqual( "vnf: 2, vfModule: 3, network: 1");
  });


  test('convertResponseToUI - should return table data', () => {
    const jobs = [{
      "id": 5,
      "created": 1524995555000,
      "modified": 1524995556000,
      "action": "INSTANTIATE",
      "createdId": null,
      "modifiedId": null,
      "rowNum": null,
      "auditUserId": null,
      "auditTrail": null,
      "jobId": "9f88fdb5-bb47-4bf3-8c5f-98f1ad0ec87c",
      "templateId": "ce4ec177-cfc8-483e-8a2c-b7aea53fd740",
      "userId": "16807000",
      "msoRequestId": "c0011670-0e1a-4b74-945d-8bf5aede1d91",
      "requestId": null,
      "jobStatus": "FAILED",
      "statusModifiedDate": 1524995555000,
      "hidden": false,
      "pause": false,
      "owningEntityId": "aaa1",
      "owningEntityName": "aaa1",
      "project": "WATKINS",
      "aicZoneId": "BAN1",
      "aicZoneName": "VSDKYUTP-BAN1",
      "tenantId": "1178612d2b394be4834ad77f567c0af2",
      "tenantName": "AIN Web Tool-15-D-SSPtestcustome",
      "regionId": "hvf6",
      "regionName": null,
      "serviceType": "TYLER SILVIA",
      "subscriberName": "e433710f-9217-458d-a79d-1c7aff376d89",
      "serviceInstanceId": null,
      "serviceInstanceName": 'serviceInstanceName',
      "serviceModelId": "e49fbd11-e60c-4a8e-b4bf-30fbe8f4fcc0",
      "serviceModelName": "ComplexService",
      "serviceModelVersion": "1.0",
      "createdBulkDate": 1524995555000,
    }];
    const tableRows: InstantiationTemplatesRowModel[] = service.convertResponseToUI(jobs);
    expect(tableRows).toHaveLength(1);
    expect(tableRows[0].userId).toEqual('16807000');
    expect((new Date(tableRows[0].createDate)).toISOString()).toEqual('2018-04-29T09:52:35.000Z');
    expect(tableRows[0].instanceName).toEqual('serviceInstanceName');
    expect(tableRows[0].instantiationStatus).toEqual('FAILED');
    expect(tableRows[0].region).toEqual('hvf6 (AAA1)');
    expect(tableRows[0].tenant).toEqual('AIN Web Tool-15-D-SSPtestcustome');
    expect(tableRows[0].aicZone).toEqual('VSDKYUTP-BAN1');
    expect(tableRows[0].jobId).toEqual('9f88fdb5-bb47-4bf3-8c5f-98f1ad0ec87c');
  });


  test('getCloudOwner should remove "-att" from owningEntityName : "att-owner', () => {
    let result: InstantiationTemplatesRowModel = new InstantiationTemplatesRowModel({
      owningEntityName: 'att-owner',
      regionId: 'regionId'
    });
    expect(result.region).toEqual('regionId (OWNER)');
  });

  test('getCloudOwner should not return owningEntityName if not exist', () => {
    let result: InstantiationTemplatesRowModel = new InstantiationTemplatesRowModel({owningEntityName: null, regionId: 'regionId'});
    expect(result.region).toEqual('regionId');
  });

  test('getInstanceName should  return instance name id exist if not exist', () => {
    let result: InstantiationTemplatesRowModel = new InstantiationTemplatesRowModel({serviceInstanceName: 'instanceName'});
    expect(result.instanceName).toEqual('instanceName');
  });

  test('getInstanceName should return <Automatically generated> if instance name not exist', () => {
    let result: InstantiationTemplatesRowModel = new InstantiationTemplatesRowModel({});
    expect(result.instanceName).toEqual('<Automatically generated>');
  });

  test('filterByUserId should filter table data by userId: not empty list', () => {
    const jobs : InstantiationTemplatesRowModel[] = [
      new InstantiationTemplatesRowModel({userId : 'userId_1'}),
      new InstantiationTemplatesRowModel({userId : 'userId'}),
      new InstantiationTemplatesRowModel({userId : 'userId'}),
      new InstantiationTemplatesRowModel({userId : 'userId_1'})
    ];
    let result: InstantiationTemplatesRowModel[] = service.filterByUserId('userId', jobs);
    expect(result).toHaveLength(2);
  });

  test('filterByUserId should filter table data by userId:  empty list should return empty list', () => {
    const jobs : InstantiationTemplatesRowModel[] = [];
    let result: InstantiationTemplatesRowModel[] = service.filterByUserId('userId', jobs);
    expect(result).toHaveLength(0);
  });

});