diff options
author | Sonsino, Ofir (os0695) <os0695@intl.att.com> | 2018-07-10 15:57:37 +0300 |
---|---|---|
committer | Sonsino, Ofir (os0695) <os0695@intl.att.com> | 2018-07-10 15:57:37 +0300 |
commit | ff76b5ed0aa91d5fdf9dc4f95e8b20f91ed9d072 (patch) | |
tree | aae42404a93fdffdd16ff050eaa28129959f7577 /vid-webpack-master/cypress/support/jsonBuilders/mocks/aai.mock.ts | |
parent | c72d565bb58226b20625b2bce5f0019046bee649 (diff) |
New Angular UI from 1806
Change-Id: I39c160db0e0a6ec2e587ccf007ee1b23c6a08666
Issue-ID: VID-208
Signed-off-by: Sonsino, Ofir (os0695) <os0695@intl.att.com>
Diffstat (limited to 'vid-webpack-master/cypress/support/jsonBuilders/mocks/aai.mock.ts')
-rw-r--r-- | vid-webpack-master/cypress/support/jsonBuilders/mocks/aai.mock.ts | 80 |
1 files changed, 80 insertions, 0 deletions
diff --git a/vid-webpack-master/cypress/support/jsonBuilders/mocks/aai.mock.ts b/vid-webpack-master/cypress/support/jsonBuilders/mocks/aai.mock.ts new file mode 100644 index 000000000..a95487731 --- /dev/null +++ b/vid-webpack-master/cypress/support/jsonBuilders/mocks/aai.mock.ts @@ -0,0 +1,80 @@ +declare namespace Cypress { + interface Chainable { + initAAIMock: typeof initAAIMock; + initAlaCarteService : typeof initAlaCarteService; + initZones : typeof initZones; + } +} + +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 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 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')); + }); +} + + +function initAAIMock(): void { + initGetSubscribers(); + initAAIServices(); +} + + +Cypress.Commands.add('initAAIMock', initAAIMock); +Cypress.Commands.add('initAlaCarteService', initAlaCarteService); +Cypress.Commands.add('initZones', initZones); + + |