From 12226e5a7874dcc1d5b4cdb305188391b4b97cc5 Mon Sep 17 00:00:00 2001 From: Kruthi Bhat Date: Fri, 9 Oct 2020 00:37:39 +0530 Subject: Sorting functionality on audit info screen Change-Id: If2fed947ccc0cbcb68ad656fb6010aa9cb829acd Issue-ID: VID-904 Signed-off-by: rachitha.ramappa@att.com --- .../integration/iFrames/auditInfo.modal.e2e.ts | 77 ++++++++++++++++++++-- 1 file changed, 73 insertions(+), 4 deletions(-) (limited to 'vid-webpack-master/cypress/integration/iFrames') diff --git a/vid-webpack-master/cypress/integration/iFrames/auditInfo.modal.e2e.ts b/vid-webpack-master/cypress/integration/iFrames/auditInfo.modal.e2e.ts index c28d77b79..d43b07ecb 100644 --- a/vid-webpack-master/cypress/integration/iFrames/auditInfo.modal.e2e.ts +++ b/vid-webpack-master/cypress/integration/iFrames/auditInfo.modal.e2e.ts @@ -22,7 +22,7 @@ describe('Audit information modal', function () { afterEach(() => { cy.screenshot(); - }); + }); it(`should display 2 tables with information's`, function () { cy.initAuditInfoMSOALaCarte(); @@ -81,18 +81,87 @@ describe('Audit information modal', function () { }); it('Refresh link should be visible and clicking refresh should fetch latest data', function () { - cy.initAuditInfoMSOALaCarte(); + cy.initAuditInfoMSOALaCarte(); cy.openIframe('app/ui/#/instantiationStatus'); cy.get('.instantiation-status-data tbody tr').each(function (row, index) { cy.get('.icon-menu').eq(index).click({force: true}).then(()=>{ cy.getElementByDataTestsId('context-menu-audit-info').click({force:true}).then(()=>{ cy.setViewportToSmallPopup(); - cy.get('#refreshButton').should('be.visible'); + cy.get('#refreshButton').should('be.visible') + cy.get('#refreshButton').click({force: true}).then(() => { + cy.initAuditInfoMSOALaCarteNew(); + }) }) - + }) }); }); + it('Check if the table data is sorted in descending order by start time', function () { + const expectedResult = getExpectedResult(); + cy.readFile('../vid-automation/src/test/resources/a-la-carte/auditInfoMSOALaCarteNew.json').then((res) => { + cy.initAuditInfoMSOALaCarteNew(res); + cy.openIframe('app/ui/#/instantiationStatus'); + cy.get('.icon-menu').eq(7).click({force:true}).then(() => { + cy.getElementByDataTestsId('context-menu-audit-info').click({force:true}).then(() => { + cy.setViewportToSmallPopup(); + cy.get('#service-instantiation-audit-info-mso thead tr th#instanceName').should("be.visible") + .get('#service-instantiation-audit-info-mso tbody tr').each(function (row, index) { + assert.equal(row.find('#msoRequestId').text().trim(), expectedResult[index]['requestId']); + assert.equal(row.find('.msoInstanceName').text().trim(), expectedResult[index]['instanceName']); + assert.equal(row.find('#msostartTime').text().trim(), expectedResult[index]['startTime']); + }); + }); + }) + }); + }); + }); }); + + + +function getExpectedResult() { + return [ + { + "requestId": "1fc2ef3b-26f0-4e62-a00a-6a31502d39e2", + "instanceName": "zrdm54cfmgw01_sup_1", + "modelType": "vfModule", + "instanceType": "createInstance", + "startTime": "Mon, 24 Aug 2020 22:54:29 GMT", + "finishTime": "Mon, 24 Aug 2020 22:56:35 GMT", + "jobStatus": "ROLLED_BACK_TO_ASSIGNED", + "additionalInfo": "Source: VID
StatusMessage:STATUS: Error Source: OPENSTACK, Error Message: Received vfModuleException from VnfAdapter: category='INTERNAL' message='Exception during create VF 400 Bad Request: The server could not comply with the request since it is either malformed or otherwise incorrect., error.type=UserParameterMissing, error.message=The Parameter (VSFO_CP0_compute_node) was not provided.' rolledBack='true'
FlowStatus: All Rollback flows have completed successfully
TestAPI: GR_API
TenantId: ad299b37da30413391e9c28138f0b0cd
TenantName: FNCORE-30052-D-MC-RDM54c
CloudOwner: att-nc
" + }, + { + "requestId": "a4e43d9e-4813-42e4-94bf-c5c6f22ed0bc", + "instanceName": "zrdm54cfmgw01_base", + "modelType": "vfModule", + "instanceType": "createInstance", + "startTime": "Mon, 24 Aug 2020 22:44:42 GMT", + "finishTime": "Mon, 24 Aug 2020 22:54:17 GMT", + "jobStatus": "COMPLETE", + "additionalInfo": "Source: VID
StatusMessage:STATUS: ALaCarte-VfModule-createInstance request was executed correctly.
FlowStatus: Successfully completed all Building Blocks
TestAPI: GR_API
TenantId: ad299b37da30413391e9c28138f0b0cd
TenantName: FNCORE-30052-D-MC-RDM54c
CloudOwner: att-nc
" + }, + { + "requestId": "f1aa7175-c237-4b56-ba64-7cb728a38ff2", + "instanceName": "zrdm54cfmgw01", + "modelType": "vnf", + "instanceType": "createInstance", + "startTime": "Mon, 24 Aug 2020 22:38:18 GMT", + "finishTime": "Mon, 24 Aug 2020 22:44:24 GMT", + "jobStatus": "COMPLETE", + "additionalInfo": "Source: VID
StatusMessage:STATUS: ALaCarte-Vnf-createInstance request was executed correctly.
FlowStatus: Successfully completed all Building Blocks
TestAPI: GR_API
TenantId: ad299b37da30413391e9c28138f0b0cd
TenantName: FNCORE-30052-D-MC-RDM54c
CloudOwner: att-nc
PlatformName: FIRSTNET-DEDICATED,NETWORK-CLOUD
LineOfBusiness: FIRSTNET
" + }, + { + "requestId": "7ba7900c-3e51-4d87-b1b4-3c53bdfaaa7d", + "instanceName": "zrdm54cfmgw01_svc", + "modelType": "service", + "instanceType": "createInstance", + "startTime": "Mon, 24 Aug 2020 22:37:53 GMT", + "finishTime": "Mon, 24 Aug 2020 22:38:10 GMT", + "jobStatus": "COMPLETE", + "additionalInfo": "Source: VID
StatusMessage:STATUS: ALaCarte-Service-createInstance request was executed correctly.
FlowStatus: Successfully completed all Building Blocks
SubscriptionServiceType: FIRSTNET
Alacarte: true
TestAPI: GR_API
ProjectName: FIRSTNET
OwningEntityId: 10c645f5-9924-4b89-bec0-b17cf49d3cad
OwningEntityName: MOBILITY-CORE
" + } + ]; +} -- cgit 1.2.3-korg