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
|
///<reference path="../../../node_modules/cypress/types/index.d.ts"/>
/// <reference types="Cypress" />
import { JsonBuilder } from '../../support/jsonBuilders/jsonBuilder';
import { ServiceModel } from '../../support/jsonBuilders/models/service.model';
describe('A la carte', function () {
describe('check service name', () => {
var jsonBuilderAAIService : JsonBuilder<ServiceModel> = new JsonBuilder<ServiceModel>();
beforeEach(() => {
cy.window().then((win) => {
win.sessionStorage.clear();
cy.setReduxState();
cy.preventErrorsOnLoading();
cy.initAAIMock();
cy.initVidMock();
cy.initAlaCarteService();
cy.initZones();
cy.login();
});
});
const SERVICE_ID: string = '4d71990b-d8ad-4510-ac61-496288d9078e';
const INSTANCE_NAME_MANDATORY_MESSAGE: string = 'Missing data ("Instance Name" and 3 other fields';
const INSTANCE_NAME_NOT_MANDATORY_MESSAGE: string = 'Missing data ("Subscriber Name" and 2 other fields)';
const CONFIRM_BUTTON : string = 'confirmButton';
// function changeServiceName(obj : AAIServiceModel){
// obj.service.version = "NEW VALUE";
// return obj;
// }
it(`service name should be mandatory : serviceEcompNaming = false`, function () {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicService.json').then((res) => {
jsonBuilderAAIService.basicJson(res,
Cypress.config('baseUrl') + '/rest/models/services/4d71990b-d8ad-4510-ac61-496288d9078e',
200,
0,
SERVICE_ID + ' - service',
changeServiceEcompNamingToFalse);
checkServiceNameInputIdMandatory();
});
});
it(`service name should be mandatory : serviceEcompNaming = true`, function () {
cy.readFile('/cypress/support/jsonBuilders/mocks/jsons/basicService.json').then((res) => {
jsonBuilderAAIService.basicJson(res,
Cypress.config('baseUrl') + '/rest/models/services/4d71990b-d8ad-4510-ac61-496288d9078e',
200,
0,
SERVICE_ID + ' - service',
changeServiceEcompNamingToTrue);
checkServiceNameInputIdMandatory();
});
});
function changeServiceEcompNamingToTrue(obj : ServiceModel){
obj.service.serviceEcompNaming = "true";
return obj;
}
function changeServiceEcompNamingToFalse(obj : ServiceModel){
obj.service.serviceEcompNaming = "false";
return obj;
}
function checkServiceNameInputIdMandatory(){
cy.get('span').contains('Browse ASDC Service Models').click({force: true})
.getElementByDataTestsId('deploy-' + SERVICE_ID).click({force: true})
.wait(1000).getElementByDataTestsId(CONFIRM_BUTTON).click({force: true})
.get('.error').contains(INSTANCE_NAME_MANDATORY_MESSAGE)
.typeToInput('instanceName', 'testService');
cy.getElementByDataTestsId(CONFIRM_BUTTON).click({force: true})
.get('.error').contains(INSTANCE_NAME_NOT_MANDATORY_MESSAGE);
}
});
});
|