-
Notifications
You must be signed in to change notification settings - Fork 10.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(Code Node): Warning if pairedItem absent or could not be auto ma…
…pped (#11737) Co-authored-by: Shireen Missi <[email protected]>
- Loading branch information
1 parent
af61dbf
commit 3a5bd12
Showing
9 changed files
with
110 additions
and
16 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
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
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
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
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 @@ | ||
import type { INodeExecutionData } from 'n8n-workflow'; | ||
import { NodeExecutionOutput } from 'n8n-workflow'; | ||
import { addPostExecutionWarning } from '../utils'; | ||
|
||
describe('addPostExecutionWarning', () => { | ||
const inputItemsLength = 2; | ||
|
||
it('should return a NodeExecutionOutput warning when returnData length differs from inputItemsLength', () => { | ||
const returnData: INodeExecutionData[] = [{ json: {}, pairedItem: 0 }]; | ||
|
||
const result = addPostExecutionWarning(returnData, inputItemsLength); | ||
|
||
expect(result).toBeInstanceOf(NodeExecutionOutput); | ||
expect((result as NodeExecutionOutput)?.getHints()).toEqual([ | ||
{ | ||
message: | ||
'To make sure expressions after this node work, return the input items that produced each output item. <a target="_blank" href="https://docs.n8n.io/data/data-mapping/data-item-linking/item-linking-code-node/">More info</a>', | ||
location: 'outputPane', | ||
}, | ||
]); | ||
}); | ||
|
||
it('should return a NodeExecutionOutput warning when any item has undefined pairedItem', () => { | ||
const returnData: INodeExecutionData[] = [{ json: {}, pairedItem: 0 }, { json: {} }]; | ||
|
||
const result = addPostExecutionWarning(returnData, inputItemsLength); | ||
|
||
expect(result).toBeInstanceOf(NodeExecutionOutput); | ||
expect((result as NodeExecutionOutput)?.getHints()).toEqual([ | ||
{ | ||
message: | ||
'To make sure expressions after this node work, return the input items that produced each output item. <a target="_blank" href="https://docs.n8n.io/data/data-mapping/data-item-linking/item-linking-code-node/">More info</a>', | ||
location: 'outputPane', | ||
}, | ||
]); | ||
}); | ||
|
||
it('should return returnData array when all items match inputItemsLength and have defined pairedItem', () => { | ||
const returnData: INodeExecutionData[] = [ | ||
{ json: {}, pairedItem: 0 }, | ||
{ json: {}, pairedItem: 1 }, | ||
]; | ||
|
||
const result = addPostExecutionWarning(returnData, inputItemsLength); | ||
|
||
expect(result).toEqual([returnData]); | ||
}); | ||
}); |
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