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
|
declare namespace Cypress {
interface Chainable {
setReduxState : typeof setReduxState;
getReduxState : typeof getReduxState;
setTestApiParamToGR: typeof setTestApiParamToGR;
setTestApiParamToVNF: typeof setTestApiParamToVNF;
buildReduxStateWithServiceRespone: typeof buildReduxStateWithServiceRespone;
}
}
/**********************************
Type to input with id some text
*********************************/
function setReduxState(state?: string) : void {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicRedux.json').then((res) => {
cy.window().then((win) => {
win.sessionStorage.setItem('reduxState', JSON.stringify(state ? state : res));
});
});
}
function getReduxState(): Chainable<any> {
return cy.window().then((win) => {
let stateRaw = win.sessionStorage.getItem('reduxState');
return JSON.parse(stateRaw ? stateRaw : '{}');
});
}
function setTestApiParamToGR() : void {
cy.window().then((win) => {
win.sessionStorage.setItem('msoRequestParametersTestApiValue', 'GR_API');
});
}
function setTestApiParamToVNF() : void {
cy.window().then((win) => {
win.sessionStorage.setItem('msoRequestParametersTestApiValue', 'VNF_API');
});
}
function updateObject(obj: any, key: string, val: any, value:any) {
return JSON.parse(JSON.stringify(obj)
.replace(new RegExp(`"${key}":"${val}"`), `"${key}":"${value}"`))
}
function buildReduxStateWithServiceRespone(res: any, serviceId:string, isEcompGeneratedNaming:boolean) :void {
res = updateObject(res, "ecomp_generated_naming", !isEcompGeneratedNaming, isEcompGeneratedNaming);
cy.window().then((win) => {
win.sessionStorage.setItem('reduxState', JSON.stringify({
"global": {
"name": null
},
"service": {
"serviceHierarchy": {
[serviceId] : res
},
"serviceInstance": {
[serviceId]: {
"existingVNFCounterMap": {},
"existingVnfGroupCounterMap": {},
"existingNetworksCounterMap": {},
"vnfs": {},
"vnfGroups": {},
"isEcompGeneratedNaming": isEcompGeneratedNaming,
"existingNames": {}
}
}
}
}));
});
}
Cypress.Commands.add('setReduxState', setReduxState);
Cypress.Commands.add('getReduxState', getReduxState);
Cypress.Commands.add('setTestApiParamToGR', setTestApiParamToGR);
Cypress.Commands.add('setTestApiParamToVNF',setTestApiParamToVNF);
Cypress.Commands.add('buildReduxStateWithServiceRespone', buildReduxStateWithServiceRespone);
|