mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
3a474552b2
Github issue / Community forum post (link here to close automatically): https://github.com/n8n-io/n8n/pull/6348 --------- Co-authored-by: Giulio Andreini <g.andreini@gmail.com> Co-authored-by: Marcus <marcus@n8n.io>
112 lines
3.9 KiB
TypeScript
112 lines
3.9 KiB
TypeScript
import { WorkflowPage, NDV } from '../pages';
|
|
|
|
const wf = new WorkflowPage();
|
|
const ndv = new NDV();
|
|
|
|
describe('Data transformation expressions', () => {
|
|
beforeEach(() => {
|
|
wf.actions.visit();
|
|
});
|
|
|
|
it('$json + native string methods', () => {
|
|
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true });
|
|
ndv.actions.setPinnedData([{ myStr: 'Monday' }]);
|
|
ndv.actions.close();
|
|
addEditFields();
|
|
|
|
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().should('be.visible');
|
|
ndv.getters.outputDataContainer().contains(output);
|
|
});
|
|
|
|
it('$json + n8n string methods', () => {
|
|
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true });
|
|
ndv.actions.setPinnedData([{ myStr: 'hello@n8n.io is an email' }]);
|
|
ndv.actions.close();
|
|
addEditFields();
|
|
|
|
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().should('be.visible');
|
|
ndv.getters.outputDataContainer().contains(output);
|
|
});
|
|
|
|
it('$json + native numeric methods', () => {
|
|
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true });
|
|
ndv.actions.setPinnedData([{ myNum: 9.123 }]);
|
|
ndv.actions.close();
|
|
addEditFields();
|
|
|
|
const input = '{{$json.myNum.toPrecision(3)';
|
|
const output = '9.12';
|
|
|
|
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
|
ndv.actions.execute();
|
|
ndv.getters.outputDataContainer().should('be.visible');
|
|
ndv.getters.outputDataContainer().contains(output);
|
|
});
|
|
|
|
it('$json + n8n numeric methods', () => {
|
|
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true });
|
|
ndv.actions.setPinnedData([{ myStr: 'hello@n8n.io is an email' }]);
|
|
ndv.actions.close();
|
|
addEditFields();
|
|
|
|
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().should('be.visible');
|
|
ndv.getters.outputDataContainer().contains(output);
|
|
});
|
|
|
|
it('$json + native array access', () => {
|
|
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true });
|
|
ndv.actions.setPinnedData([{ myArr: [1, 2, 3] }]);
|
|
ndv.actions.close();
|
|
addEditFields();
|
|
const input = '{{$json.myArr.includes(1) + " " + $json.myArr[2]';
|
|
const output = 'true 3';
|
|
|
|
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
|
ndv.actions.execute();
|
|
ndv.getters.outputDataContainer().find('[class*=value_]').should('exist');
|
|
ndv.getters.outputDataContainer().find('[class*=value_]').should('contain', output);
|
|
});
|
|
|
|
it('$json + n8n array methods', () => {
|
|
wf.actions.addInitialNodeToCanvas('Schedule Trigger', { keepNdvOpen: true });
|
|
ndv.actions.setPinnedData([{ myArr: [1, 2, 3] }]);
|
|
ndv.actions.close();
|
|
addEditFields();
|
|
|
|
const input = '{{$json.myArr.first() + " " + $json.myArr.last()';
|
|
const output = '1 3';
|
|
|
|
ndv.getters.inlineExpressionEditorInput().clear().type(input);
|
|
ndv.actions.execute();
|
|
ndv.getters.outputDataContainer().find('[class*=value_]').should('exist');
|
|
ndv.getters.outputDataContainer().find('[class*=value_]').should('contain', output);
|
|
});
|
|
});
|
|
|
|
// ----------------------------------
|
|
// utils
|
|
// ----------------------------------
|
|
|
|
const addEditFields = () => {
|
|
wf.actions.addNodeToCanvas('Edit Fields', true, true);
|
|
cy.get('.fixed-collection-parameter > :nth-child(2) > .button > span').click();
|
|
ndv.getters.parameterInput('include').click(); // shorten output
|
|
cy.get('div').contains('No Input Fields').click();
|
|
ndv.getters.nthParam(4).contains('Expression').invoke('show').click();
|
|
};
|