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
|
declare namespace Cypress {
interface Chainable {
initAAIMock: typeof initAAIMock;
initAlaCarteService : typeof initAlaCarteService;
initZones : typeof initZones;
initTenants : typeof initTenants;
initSearchVNFMemebers : typeof initSearchVNFMemebers;
}
}
function initGetSubscribers(response? : JSON) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/subscribers.json').then((res) => {
cy.server()
.route({
method: 'GET',
status : 200,
url : Cypress.config('baseUrl') + "/aai_get_subscribers**",
response : response ? response : res
}).as('initGetSubscribers')
});
}
function initAaiGetFullSubscribers(response? : JSON) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/subscribers.json').then((res) => {
cy.server()
.route({
method: 'GET',
status : 200,
url : Cypress.config('baseUrl') + "/aai_get_full_subscribers**",
response : response ? response : res
}).as('initGetSubscribers')
});
}
function initGetAAISubDetails(response? : JSON) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/aaiSubDetails.json').then((res) => {
cy.server()
.route({
method: 'GET',
status: 200,
url: Cypress.config('baseUrl') + "/aai_sub_details**",
response: response ? response : res
})
});
}
function initAlaCarteService(response? : JSON) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/a-la-carteService.json').then((res) => {
cy.server()
.route({
method: 'GET',
status: 200,
url: Cypress.config('baseUrl') + "/rest/models/services**",
response: response ? response : res
}).as('initAlaCarteService')
});
}
function initTenants(response? : JSON) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/tenants.json').then((res) => {
cy.server()
.route({
method: 'GET',
status: 200,
url: Cypress.config('baseUrl') + "/aai_get_tenants/**",
response: response ? response : res
}).as('initTenants')
});
}
function initAAIServices(response? : JSON) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/aaiServices.json').then((res) => {
cy.server()
.route({
method: 'GET',
status : 200,
url : Cypress.config('baseUrl') + "/aai_get_services**",
response : response ? response : res
}).as(('initAAIServices'));
});
}
function initZones(response? : JSON) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/zones.json').then((res) => {
cy.server()
.route({
method: 'GET',
status : 200,
url : Cypress.config('baseUrl') + "/aai_get_aic_zones**",
response : response ? response : res
}).as(('zones'));
});
}
//Mock of vnf's that members for VNF Group
function initSearchVNFMemebers(response? : JSON) : void {
cy.readFile('../vid-automation/src/test/resources/VnfGroup/searchMembersResponse.json').then((res) => {
cy.server()
.route({
method: 'GET',
status : 200,
url : Cypress.config('baseUrl') + "/aai_search_group_members/**",
response : response ? response : res
}).as(('searchVNFMembers'));
});
}
function initAAIMock(): void {
initAaiGetFullSubscribers();
initGetSubscribers();
initAAIServices();
initTenants();
}
Cypress.Commands.add('initAAIMock', initAAIMock);
Cypress.Commands.add('initAlaCarteService', initAlaCarteService);
Cypress.Commands.add('initZones', initZones);
Cypress.Commands.add('initTenants', initTenants);
Cypress.Commands.add('initAaiGetFullSubscribers', initAaiGetFullSubscribers);
Cypress.Commands.add('initSearchVNFMemebers', initSearchVNFMemebers);
|