-
Notifications
You must be signed in to change notification settings - Fork 9.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Reset pagination when output size changes (#9652)
- Loading branch information
Showing
3 changed files
with
96 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { NDV, WorkflowPage } from '../pages'; | ||
|
||
const workflowPage = new WorkflowPage(); | ||
const ndv = new NDV(); | ||
|
||
describe('ADO-2230 NDV Pagination Reset', () => { | ||
it('should reset pagaintion if data size changes to less than current page', () => { | ||
// setup, load workflow with debughelper node with random seed | ||
workflowPage.actions.visit(); | ||
cy.createFixtureWorkflow('NDV-debug-generate-data.json', `Debug workflow`); | ||
workflowPage.actions.openNode('DebugHelper'); | ||
|
||
// execute node outputting 10 pages, check output of first page | ||
ndv.actions.execute(); | ||
workflowPage.getters | ||
.successToast() | ||
.find('.el-notification__closeBtn') | ||
.click({ multiple: true }); | ||
ndv.getters.outputTbodyCell(1, 1).invoke('text').should('eq', 'Terry.Dach@hotmail.com'); | ||
|
||
// open 4th page, check output | ||
ndv.getters.pagination().should('be.visible'); | ||
ndv.getters.pagination().find('li.number').should('have.length', 5); | ||
ndv.getters.pagination().find('li.number').eq(3).click(); | ||
ndv.getters.outputTbodyCell(1, 1).invoke('text').should('eq', 'Shane.Cormier68@yahoo.com'); | ||
|
||
// output a lot less data | ||
ndv.getters.parameterInput('randomDataCount').find('input').clear().type('20'); | ||
ndv.actions.execute(); | ||
workflowPage.getters | ||
.successToast() | ||
.find('.el-notification__closeBtn') | ||
.click({ multiple: true }); | ||
|
||
// check we are back to second page now | ||
ndv.getters.pagination().find('li.number').should('have.length', 2); | ||
ndv.getters.outputTbodyCell(1, 1).invoke('text').should('eq', 'Sylvia.Weber@hotmail.com'); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
{ | ||
"meta": { | ||
"templateCredsSetupCompleted": true, | ||
"instanceId": "5b397bc122efafc165b2a6e67d5e8d75b8138f0d24d6352fac713e4845b002a6" | ||
}, | ||
"nodes": [ | ||
{ | ||
"parameters": {}, | ||
"id": "df260de7-6f28-4d07-b7b5-29588e27335b", | ||
"name": "When clicking \"Test workflow\"", | ||
"type": "n8n-nodes-base.manualTrigger", | ||
"typeVersion": 1, | ||
"position": [ | ||
780, | ||
500 | ||
] | ||
}, | ||
{ | ||
"parameters": { | ||
"category": "randomData", | ||
"randomDataSeed": "0", | ||
"randomDataCount": 100 | ||
}, | ||
"id": "9e9a0708-86dc-474f-a60e-4315e757c08e", | ||
"name": "DebugHelper", | ||
"type": "n8n-nodes-base.debugHelper", | ||
"typeVersion": 1, | ||
"position": [ | ||
1000, | ||
500 | ||
] | ||
} | ||
], | ||
"connections": { | ||
"When clicking \"Test workflow\"": { | ||
"main": [ | ||
[ | ||
{ | ||
"node": "DebugHelper", | ||
"type": "main", | ||
"index": 0 | ||
} | ||
] | ||
] | ||
} | ||
}, | ||
"pinData": {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters