-
Notifications
You must be signed in to change notification settings - Fork 11.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test: Add e2e for data transformation expressions (#5375)
* 🧪 Add e2e for data transormation expressions * ♻️ Apply feedback
- Loading branch information
Showing
3 changed files
with
128 additions
and
1 deletion.
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,120 @@ | ||
import { WorkflowPage, NDV } from '../pages'; | ||
|
||
const wf = new WorkflowPage(); | ||
const ndv = new NDV(); | ||
|
||
describe('Data transformation expressions', () => { | ||
before(() => { | ||
cy.resetAll(); | ||
cy.skipSetup(); | ||
cy.waitForLoad(); | ||
}); | ||
|
||
it('$json + native string methods', () => { | ||
wf.actions.visit(); | ||
|
||
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true }); | ||
ndv.actions.setPinnedData([{ myStr: 'Monday' }]); | ||
ndv.actions.close(); | ||
addSet(); | ||
|
||
const input = '{{$json.myStr.toLowerCase() + " is " + "today".toUpperCase()'; | ||
const output = 'monday is TODAY'; | ||
|
||
ndv.getters.inlineExpressionEditorInput().clear().type(input); | ||
ndv.actions.execute(); | ||
ndv.getters.outputDataContainer().contains(output).should('be.visible'); | ||
}); | ||
|
||
it('$json + n8n string methods', () => { | ||
wf.actions.visit(); | ||
|
||
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true }); | ||
ndv.actions.setPinnedData([{ myStr: 'hello@n8n.io is an email' }]); | ||
ndv.actions.close(); | ||
addSet(); | ||
|
||
const input = '{{$json.myStr.extractEmail() + " " + $json.myStr.isEmpty()'; | ||
const output = 'hello@n8n.io false'; | ||
|
||
ndv.getters.inlineExpressionEditorInput().clear().type(input); | ||
ndv.actions.execute(); | ||
ndv.getters.outputDataContainer().contains(output).should('be.visible'); | ||
}); | ||
|
||
it('$json + native numeric methods', () => { | ||
wf.actions.visit(); | ||
|
||
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true }); | ||
ndv.actions.setPinnedData([{ myNum: 9.123 }]); | ||
ndv.actions.close(); | ||
addSet(); | ||
|
||
const input = '{{$json.myNum.toPrecision(3)'; | ||
const output = '9.12'; | ||
|
||
ndv.getters.inlineExpressionEditorInput().clear().type(input); | ||
ndv.actions.execute(); | ||
ndv.getters.outputDataContainer().contains(output).should('be.visible'); | ||
}); | ||
|
||
it('$json + n8n numeric methods', () => { | ||
wf.actions.visit(); | ||
|
||
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true }); | ||
ndv.actions.setPinnedData([{ myStr: 'hello@n8n.io is an email' }]); | ||
ndv.actions.close(); | ||
addSet(); | ||
|
||
const input = '{{$json.myStr.extractEmail() + " " + $json.myStr.isEmpty()'; | ||
const output = 'hello@n8n.io false'; | ||
|
||
ndv.getters.inlineExpressionEditorInput().clear().type(input); | ||
ndv.actions.execute(); | ||
ndv.getters.outputDataContainer().contains(output).should('be.visible'); | ||
}); | ||
|
||
it('$json + native array methods', () => { | ||
wf.actions.visit(); | ||
|
||
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true }); | ||
ndv.actions.setPinnedData([{ myArr: [1, 2, 3] }]); | ||
ndv.actions.close(); | ||
addSet(); | ||
|
||
const input = '{{$json.myArr.includes(1) + " " + $json.myArr.at(2)'; | ||
const output = 'true 3'; | ||
|
||
ndv.getters.inlineExpressionEditorInput().clear().type(input); | ||
ndv.actions.execute(); | ||
ndv.getters.outputDataContainer().contains(output).should('be.visible'); | ||
}); | ||
|
||
it('$json + n8n array methods', () => { | ||
wf.actions.visit(); | ||
|
||
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true }); | ||
ndv.actions.setPinnedData([{ myArr: [1, 2, 3] }]); | ||
ndv.actions.close(); | ||
addSet(); | ||
|
||
const input = '{{$json.myArr.first() + " " + $json.myArr.last()'; | ||
const output = '1 3'; | ||
|
||
ndv.getters.inlineExpressionEditorInput().clear().type(input); | ||
ndv.actions.execute(); | ||
ndv.getters.outputDataContainer().contains(output).should('be.visible'); | ||
}); | ||
}); | ||
|
||
// ---------------------------------- | ||
// utils | ||
// ---------------------------------- | ||
|
||
const addSet = () => { | ||
wf.actions.addNodeToCanvas('Set', true, true); | ||
ndv.getters.parameterInput('keepOnlySet').find('div[role=switch]').click(); // shorten output | ||
cy.get('input[placeholder="Add Value"]').click(); | ||
cy.get('span').contains('String').click(); | ||
ndv.getters.nthParam(3).contains('Expression').invoke('show').click(); // Values to Set > String > Value | ||
}; |
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
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