@flow-scanner/lightning-flow-scanner-core 6.16.2 → 6.17.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.husky/pre-commit +1 -0
- package/.husky/pre-push +1 -0
- package/.prettierignore +5 -0
- package/.swcrc +26 -0
- package/.turbo/turbo-build.log +17 -0
- package/.turbo/turbo-test.log +144 -0
- package/.turbo/turbo-vite$colon$dist.log +21 -0
- package/coverage/coverage-final.json +63 -0
- package/coverage/lcov-report/base.css +224 -0
- package/coverage/lcov-report/block-navigation.js +87 -0
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/index.html +236 -0
- package/coverage/lcov-report/prettify.css +1 -0
- package/coverage/lcov-report/prettify.js +2 -0
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +210 -0
- package/coverage/lcov-report/src/index.html +116 -0
- package/coverage/lcov-report/src/index.ts.html +238 -0
- package/coverage/lcov-report/src/main/adapters/RegexAdapter.ts.html +118 -0
- package/coverage/lcov-report/src/main/adapters/index.html +116 -0
- package/coverage/lcov-report/src/main/config/NodeIcons.ts.html +376 -0
- package/coverage/lcov-report/src/main/config/RuleRegistry.ts.html +646 -0
- package/coverage/lcov-report/src/main/config/VariableIcons.ts.html +253 -0
- package/coverage/lcov-report/src/main/config/index.html +146 -0
- package/coverage/lcov-report/src/main/enums/MetaType.ts.html +100 -0
- package/coverage/lcov-report/src/main/enums/MetadataType.ts.html +103 -0
- package/coverage/lcov-report/src/main/enums/MetadataTypes.ts.html +100 -0
- package/coverage/lcov-report/src/main/enums/index.html +116 -0
- package/coverage/lcov-report/src/main/interfaces/IRulesConfig.ts.html +133 -0
- package/coverage/lcov-report/src/main/interfaces/index.html +116 -0
- package/coverage/lcov-report/src/main/internals/index.html +116 -0
- package/coverage/lcov-report/src/main/internals/internals.ts.html +190 -0
- package/coverage/lcov-report/src/main/libs/BuildFlow.ts.html +127 -0
- package/coverage/lcov-report/src/main/libs/Compiler.ts.html +241 -0
- package/coverage/lcov-report/src/main/libs/ConvertFlowNodes.ts.html +97 -0
- package/coverage/lcov-report/src/main/libs/DynamicRule.ts.html +118 -0
- package/coverage/lcov-report/src/main/libs/ExportDetails.ts.html +256 -0
- package/coverage/lcov-report/src/main/libs/ExportDiagram.ts.html +331 -0
- package/coverage/lcov-report/src/main/libs/ExportSarif.ts.html +358 -0
- package/coverage/lcov-report/src/main/libs/FixFlows.ts.html +265 -0
- package/coverage/lcov-report/src/main/libs/GenerateMarkdown.ts.html +331 -0
- package/coverage/lcov-report/src/main/libs/GetRuleDefinitions.ts.html +274 -0
- package/coverage/lcov-report/src/main/libs/ParseFlows.ts.html +184 -0
- package/coverage/lcov-report/src/main/libs/RuleDocumentation.ts.html +190 -0
- package/coverage/lcov-report/src/main/libs/ScanFlows.ts.html +508 -0
- package/coverage/lcov-report/src/main/libs/exportAsDetails.ts.html +160 -0
- package/coverage/lcov-report/src/main/libs/exportAsSarif.ts.html +346 -0
- package/coverage/lcov-report/src/main/libs/index.html +251 -0
- package/coverage/lcov-report/src/main/models/FlatViolation.ts.html +106 -0
- package/coverage/lcov-report/src/main/models/Flow.ts.html +1057 -0
- package/coverage/lcov-report/src/main/models/FlowAttribute.ts.html +115 -0
- package/coverage/lcov-report/src/main/models/FlowElement.ts.html +133 -0
- package/coverage/lcov-report/src/main/models/FlowElementConnector.ts.html +169 -0
- package/coverage/lcov-report/src/main/models/FlowGraph.ts.html +1672 -0
- package/coverage/lcov-report/src/main/models/FlowMetadata.ts.html +106 -0
- package/coverage/lcov-report/src/main/models/FlowNode.ts.html +1252 -0
- package/coverage/lcov-report/src/main/models/FlowResource.ts.html +106 -0
- package/coverage/lcov-report/src/main/models/FlowType.ts.html +244 -0
- package/coverage/lcov-report/src/main/models/FlowVariable.ts.html +553 -0
- package/coverage/lcov-report/src/main/models/LoopRuleCommon.ts.html +235 -0
- package/coverage/lcov-report/src/main/models/ParsedFlow.ts.html +121 -0
- package/coverage/lcov-report/src/main/models/RuleCommon.ts.html +442 -0
- package/coverage/lcov-report/src/main/models/RuleResult.ts.html +172 -0
- package/coverage/lcov-report/src/main/models/ScanResult.ts.html +121 -0
- package/coverage/lcov-report/src/main/models/Violation.ts.html +316 -0
- package/coverage/lcov-report/src/main/models/index.html +341 -0
- package/coverage/lcov-report/src/main/rules/APIVersion.ts.html +361 -0
- package/coverage/lcov-report/src/main/rules/ActionCallsInLoop.ts.html +157 -0
- package/coverage/lcov-report/src/main/rules/AutoLayout.ts.html +220 -0
- package/coverage/lcov-report/src/main/rules/CopyAPIName.ts.html +175 -0
- package/coverage/lcov-report/src/main/rules/CyclomaticComplexity.ts.html +292 -0
- package/coverage/lcov-report/src/main/rules/DMLStatementInLoop.ts.html +163 -0
- package/coverage/lcov-report/src/main/rules/DuplicateDMLOperation.ts.html +334 -0
- package/coverage/lcov-report/src/main/rules/FlowDescription.ts.html +184 -0
- package/coverage/lcov-report/src/main/rules/FlowName.ts.html +229 -0
- package/coverage/lcov-report/src/main/rules/GetRecordAllFields.ts.html +280 -0
- package/coverage/lcov-report/src/main/rules/HardcodedId.ts.html +238 -0
- package/coverage/lcov-report/src/main/rules/HardcodedSecret.ts.html +238 -0
- package/coverage/lcov-report/src/main/rules/HardcodedUrl.ts.html +247 -0
- package/coverage/lcov-report/src/main/rules/InactiveFlow.ts.html +184 -0
- package/coverage/lcov-report/src/main/rules/MissingFaultPath.ts.html +397 -0
- package/coverage/lcov-report/src/main/rules/MissingFilterRecordTrigger.ts.html +229 -0
- package/coverage/lcov-report/src/main/rules/MissingMetadataDescription.ts.html +211 -0
- package/coverage/lcov-report/src/main/rules/MissingNullHandler.ts.html +460 -0
- package/coverage/lcov-report/src/main/rules/MissingRecordTriggerFilter.ts.html +235 -0
- package/coverage/lcov-report/src/main/rules/ProcessBuilder.ts.html +190 -0
- package/coverage/lcov-report/src/main/rules/RecordIdAsString.ts.html +274 -0
- package/coverage/lcov-report/src/main/rules/RecursiveAfterUpdate.ts.html +364 -0
- package/coverage/lcov-report/src/main/rules/SOQLQueryInLoop.ts.html +160 -0
- package/coverage/lcov-report/src/main/rules/SameRecordFieldUpdates.ts.html +283 -0
- package/coverage/lcov-report/src/main/rules/TransformInsteadOfLoop.ts.html +250 -0
- package/coverage/lcov-report/src/main/rules/TriggerOrder.ts.html +238 -0
- package/coverage/lcov-report/src/main/rules/UnconnectedElement.ts.html +178 -0
- package/coverage/lcov-report/src/main/rules/UnsafeRunningContext.ts.html +226 -0
- package/coverage/lcov-report/src/main/rules/UnusedVariable.ts.html +283 -0
- package/coverage/lcov-report/src/main/rules/index.html +521 -0
- package/coverage/lcov-report/src/main/store/DefaultRuleStore.ts.html +265 -0
- package/coverage/lcov-report/src/main/store/RuleRegistry.ts.html +118 -0
- package/coverage/lcov-report/src/main/store/index.html +116 -0
- package/coverage/lcov.info +6261 -0
- package/eslint.config.mjs +36 -0
- package/jest.config.cjs +32 -0
- package/jest.env-setup.js +101 -0
- package/lint-staged.config.mjs +8 -0
- package/out/main/config/RegexAdapter.d.ts +32 -0
- package/out/main/config/RegexAdapter.js +86 -0
- package/{main → out/main}/config/RuleRegistry.js +2 -0
- package/out/main/rules/FlowName.d.ts +15 -0
- package/{main → out/main}/rules/FlowName.js +24 -11
- package/out/main/rules/HardcodedId.d.ts +13 -0
- package/{main → out/main}/rules/HardcodedId.js +23 -4
- package/out/main/rules/HardcodedSecret.d.ts +13 -0
- package/out/main/rules/HardcodedSecret.js +101 -0
- package/{main → out/main}/rules/HardcodedUrl.d.ts +6 -0
- package/{main → out/main}/rules/HardcodedUrl.js +23 -5
- package/package.json +58 -8
- package/prettier.config.mjs +5 -0
- package/src/index.ts +52 -0
- package/src/main/config/NodeIcons.ts +98 -0
- package/src/main/config/RegexAdapter.ts +98 -0
- package/src/main/config/RuleRegistry.ts +188 -0
- package/src/main/config/VariableIcons.ts +57 -0
- package/src/main/enums/MetadataTypes.ts +6 -0
- package/src/main/interfaces/IExceptions.ts +6 -0
- package/src/main/interfaces/IRuleConfig.ts +6 -0
- package/src/main/interfaces/IRuleDefinition.ts +15 -0
- package/src/main/interfaces/IRuleOptions.ts +5 -0
- package/src/main/interfaces/IRulesConfig.ts +17 -0
- package/src/main/internals/internals.ts +35 -0
- package/src/main/libs/BuildFlow.ts +14 -0
- package/src/main/libs/Compiler.ts +53 -0
- package/src/main/libs/ExportDetails.ts +58 -0
- package/src/main/libs/ExportDiagram.ts +83 -0
- package/src/main/libs/ExportSarif.ts +92 -0
- package/src/main/libs/FixFlows.ts +61 -0
- package/src/main/libs/GetRuleDefinitions.ts +64 -0
- package/src/main/libs/ParseFlows.ts +34 -0
- package/src/main/libs/RuleDocumentation.ts +35 -0
- package/src/main/libs/ScanFlows.ts +142 -0
- package/src/main/models/FlatViolation.ts +16 -0
- package/src/main/models/Flow.ts +325 -0
- package/src/main/models/FlowAttribute.ts +11 -0
- package/src/main/models/FlowElement.ts +16 -0
- package/src/main/models/FlowElementConnector.ts +28 -0
- package/src/main/models/FlowGraph.ts +530 -0
- package/src/main/models/FlowMetadata.ts +8 -0
- package/src/main/models/FlowNode.ts +390 -0
- package/src/main/models/FlowResource.ts +8 -0
- package/src/main/models/FlowType.ts +53 -0
- package/src/main/models/FlowVariable.ts +157 -0
- package/src/main/models/LoopRuleCommon.ts +51 -0
- package/src/main/models/ParsedFlow.ts +13 -0
- package/src/main/models/RuleCommon.ts +120 -0
- package/src/main/models/RuleInfo.ts +54 -0
- package/src/main/models/RuleResult.ts +29 -0
- package/src/main/models/ScanResult.ts +12 -0
- package/src/main/models/Violation.ts +78 -0
- package/src/main/rules/APIVersion.ts +93 -0
- package/src/main/rules/ActionCallsInLoop.ts +25 -0
- package/src/main/rules/AutoLayout.ts +46 -0
- package/src/main/rules/CopyAPIName.ts +31 -0
- package/src/main/rules/CyclomaticComplexity.ts +70 -0
- package/src/main/rules/DMLStatementInLoop.ts +26 -0
- package/src/main/rules/DuplicateDMLOperation.ts +83 -0
- package/src/main/rules/FlowDescription.ts +34 -0
- package/src/main/rules/FlowName.ts +49 -0
- package/src/main/rules/GetRecordAllFields.ts +65 -0
- package/src/main/rules/HardcodedId.ts +51 -0
- package/src/main/rules/HardcodedSecret.ts +51 -0
- package/src/main/rules/HardcodedUrl.ts +54 -0
- package/src/main/rules/InactiveFlow.ts +33 -0
- package/src/main/rules/MissingFaultPath.ts +105 -0
- package/src/main/rules/MissingMetadataDescription.ts +42 -0
- package/src/main/rules/MissingNullHandler.ts +126 -0
- package/src/main/rules/MissingRecordTriggerFilter.ts +51 -0
- package/src/main/rules/ProcessBuilder.ts +35 -0
- package/src/main/rules/RecordIdAsString.ts +64 -0
- package/src/main/rules/RecursiveAfterUpdate.ts +94 -0
- package/src/main/rules/SOQLQueryInLoop.ts +26 -0
- package/src/main/rules/SameRecordFieldUpdates.ts +66 -0
- package/src/main/rules/TransformInsteadOfLoop.ts +56 -0
- package/src/main/rules/TriggerOrder.ts +51 -0
- package/src/main/rules/UnconnectedElement.ts +32 -0
- package/src/main/rules/UnsafeRunningContext.ts +47 -0
- package/src/main/rules/UnusedVariable.ts +66 -0
- package/stryker.config.mjs +23 -0
- package/tests/APIVersion.test.ts +87 -0
- package/tests/AutoLayout.test.ts +41 -0
- package/tests/Config.test.ts +122 -0
- package/tests/ConfigBetaMode.test.ts +26 -0
- package/tests/CopyAPIName.test.ts +45 -0
- package/tests/CyclomaticComplexity.test.ts +125 -0
- package/tests/DMLStatementInLoop.test.ts +32 -0
- package/tests/DuplicateDMLOperation.test.ts +43 -0
- package/tests/EnabledFalse.test.ts +63 -0
- package/tests/Exceptions.test.ts +815 -0
- package/tests/ExportSarif.test.ts +62 -0
- package/tests/FlowDescription.test.ts +44 -0
- package/tests/FlowDocumentation.test.ts +74 -0
- package/tests/FlowName.test.ts +61 -0
- package/tests/GetRecordElementAllFields.test.ts +182 -0
- package/tests/HardcodedId.test.ts +16 -0
- package/tests/HardcodedSecret.test.ts +32 -0
- package/tests/HardcodedUrl.test.ts +253 -0
- package/tests/InactiveFlow.test.ts +103 -0
- package/tests/MissingFaultPath.test.ts +52 -0
- package/tests/MissingMetadataDescription.test.ts +25 -0
- package/tests/MissingNullHandler.test.ts +45 -0
- package/tests/MissingRecordTriggerFilter.test.ts +54 -0
- package/tests/RecordIdAsString.test.ts +60 -0
- package/tests/RecursiveAfterUpdate.test.ts +183 -0
- package/tests/SOQLQueryInLoop.test.ts +33 -0
- package/tests/SameRecordFieldUpdates.test.ts +205 -0
- package/tests/SanityTest.test.ts +15 -0
- package/tests/TransformInsteadOfLoop.test.ts +33 -0
- package/tests/TriggerOrder.test.ts +112 -0
- package/tests/UnconnectedElement.test.ts +76 -0
- package/tests/UnsafeRunningContext.test.ts +46 -0
- package/tests/UnusedVariable.test.ts +59 -0
- package/tests/UnusedVariableExceptions.test.ts +87 -0
- package/tests/jsonfiles/MissingFaultPath_BeforeSave_Bypass.json +128 -0
- package/tests/jsonfiles/MissingFaultPath_WaitConditions.json +102 -0
- package/tests/jsonfiles/MissingFaultPath_WaitDate.json +88 -0
- package/tests/jsonfiles/MissingFaultPath_WaitDuration.json +90 -0
- package/tests/models/Flow.test.ts +107 -0
- package/tests/models/LoopRuleCommon.test.ts +246 -0
- package/tests/models/RuleCommon.test.ts +41 -0
- package/tsconfig.json +28 -0
- package/tsconfig.types.json +26 -0
- package/types/index.d.ts +27 -0
- package/types/index.d.ts.map +1 -0
- package/types/main/adapters/RegexAdapter.d.ts +33 -0
- package/types/main/adapters/RegexAdapter.d.ts.map +1 -0
- package/types/main/config/NodeIcons.d.ts +25 -0
- package/types/main/config/NodeIcons.d.ts.map +1 -0
- package/types/main/config/RegexAdapter.d.ts +33 -0
- package/types/main/config/RegexAdapter.d.ts.map +1 -0
- package/types/main/config/RuleRegistry.d.ts +23 -0
- package/types/main/config/RuleRegistry.d.ts.map +1 -0
- package/types/main/config/VariableIcons.d.ts +26 -0
- package/types/main/config/VariableIcons.d.ts.map +1 -0
- package/types/main/enums/MetadataTypes.d.ts +7 -0
- package/types/main/enums/MetadataTypes.d.ts.map +1 -0
- package/types/main/interfaces/IExceptions.d.ts +6 -0
- package/types/main/interfaces/IExceptions.d.ts.map +1 -0
- package/types/main/interfaces/IRuleConfig.d.ts +7 -0
- package/types/main/interfaces/IRuleConfig.d.ts.map +1 -0
- package/types/main/interfaces/IRuleDefinition.d.ts +18 -0
- package/types/main/interfaces/IRuleDefinition.d.ts.map +1 -0
- package/types/main/interfaces/IRuleOptions.d.ts +5 -0
- package/types/main/interfaces/IRuleOptions.d.ts.map +1 -0
- package/types/main/interfaces/IRulesConfig.d.ts +16 -0
- package/types/main/interfaces/IRulesConfig.d.ts.map +1 -0
- package/types/main/internals/internals.d.ts +19 -0
- package/types/main/internals/internals.d.ts.map +1 -0
- package/types/main/libs/BuildFlow.d.ts +2 -0
- package/types/main/libs/BuildFlow.d.ts.map +1 -0
- package/types/main/libs/Compiler.d.ts +8 -0
- package/types/main/libs/Compiler.d.ts.map +1 -0
- package/types/main/libs/ConvertFlowNodes.d.ts +2 -0
- package/types/main/libs/ConvertFlowNodes.d.ts.map +1 -0
- package/types/main/libs/DynamicRule.d.ts +5 -0
- package/types/main/libs/DynamicRule.d.ts.map +1 -0
- package/types/main/libs/ExportDetails.d.ts +4 -0
- package/types/main/libs/ExportDetails.d.ts.map +1 -0
- package/types/main/libs/ExportDiagram.d.ts +42 -0
- package/types/main/libs/ExportDiagram.d.ts.map +1 -0
- package/types/main/libs/ExportSarif.d.ts +3 -0
- package/types/main/libs/ExportSarif.d.ts.map +1 -0
- package/types/main/libs/FixFlows.d.ts +4 -0
- package/types/main/libs/FixFlows.d.ts.map +1 -0
- package/types/main/libs/GetRuleDefinitions.d.ts +5 -0
- package/types/main/libs/GetRuleDefinitions.d.ts.map +1 -0
- package/types/main/libs/ParseFlows.d.ts +3 -0
- package/types/main/libs/ParseFlows.d.ts.map +1 -0
- package/types/main/libs/RuleDocumentation.d.ts +21 -0
- package/types/main/libs/RuleDocumentation.d.ts.map +1 -0
- package/types/main/libs/ScanFlows.d.ts +5 -0
- package/types/main/libs/ScanFlows.d.ts.map +1 -0
- package/types/main/libs/exportAsDetails.d.ts +4 -0
- package/types/main/libs/exportAsDetails.d.ts.map +1 -0
- package/types/main/libs/exportAsSarif.d.ts +3 -0
- package/types/main/libs/exportAsSarif.d.ts.map +1 -0
- package/types/main/models/FlatViolation.d.ts +16 -0
- package/types/main/models/FlatViolation.d.ts.map +1 -0
- package/types/main/models/Flow.d.ts +70 -0
- package/types/main/models/Flow.d.ts.map +1 -0
- package/types/main/models/FlowAttribute.d.ts +6 -0
- package/types/main/models/FlowAttribute.d.ts.map +1 -0
- package/types/main/models/FlowElement.d.ts +11 -0
- package/types/main/models/FlowElement.d.ts.map +1 -0
- package/types/main/models/FlowElementConnector.d.ts +16 -0
- package/types/main/models/FlowElementConnector.d.ts.map +1 -0
- package/types/main/models/FlowGraph.d.ts +86 -0
- package/types/main/models/FlowGraph.d.ts.map +1 -0
- package/types/main/models/FlowMetadata.d.ts +5 -0
- package/types/main/models/FlowMetadata.d.ts.map +1 -0
- package/types/main/models/FlowNode.d.ts +66 -0
- package/types/main/models/FlowNode.d.ts.map +1 -0
- package/types/main/models/FlowResource.d.ts +5 -0
- package/types/main/models/FlowResource.d.ts.map +1 -0
- package/types/main/models/FlowType.d.ts +24 -0
- package/types/main/models/FlowType.d.ts.map +1 -0
- package/types/main/models/FlowVariable.d.ts +64 -0
- package/types/main/models/FlowVariable.d.ts.map +1 -0
- package/types/main/models/LoopRuleCommon.d.ts +15 -0
- package/types/main/models/LoopRuleCommon.d.ts.map +1 -0
- package/types/main/models/ParsedFlow.d.ts +8 -0
- package/types/main/models/ParsedFlow.d.ts.map +1 -0
- package/types/main/models/RuleCommon.d.ts +58 -0
- package/types/main/models/RuleCommon.d.ts.map +1 -0
- package/types/main/models/RuleInfo.d.ts +50 -0
- package/types/main/models/RuleInfo.d.ts.map +1 -0
- package/types/main/models/RuleResult.d.ts +15 -0
- package/types/main/models/RuleResult.d.ts.map +1 -0
- package/types/main/models/ScanResult.d.ts +8 -0
- package/types/main/models/ScanResult.d.ts.map +1 -0
- package/types/main/models/Violation.d.ts +12 -0
- package/types/main/models/Violation.d.ts.map +1 -0
- package/{main/rules/FlowName.d.ts → types/main/rules/APIVersion.d.ts} +2 -1
- package/types/main/rules/APIVersion.d.ts.map +1 -0
- package/types/main/rules/ActionCallsInLoop.d.ts +7 -0
- package/types/main/rules/ActionCallsInLoop.d.ts.map +1 -0
- package/types/main/rules/AutoLayout.d.ts +8 -0
- package/types/main/rules/AutoLayout.d.ts.map +1 -0
- package/types/main/rules/CopyAPIName.d.ts +8 -0
- package/types/main/rules/CopyAPIName.d.ts.map +1 -0
- package/types/main/rules/CyclomaticComplexity.d.ts +12 -0
- package/types/main/rules/CyclomaticComplexity.d.ts.map +1 -0
- package/types/main/rules/DMLStatementInLoop.d.ts +7 -0
- package/types/main/rules/DMLStatementInLoop.d.ts.map +1 -0
- package/types/main/rules/DuplicateDMLOperation.d.ts +9 -0
- package/types/main/rules/DuplicateDMLOperation.d.ts.map +1 -0
- package/{main/rules/HardcodedId.d.ts → types/main/rules/FlowDescription.d.ts} +2 -1
- package/types/main/rules/FlowDescription.d.ts.map +1 -0
- package/types/main/rules/FlowName.d.ts +16 -0
- package/types/main/rules/FlowName.d.ts.map +1 -0
- package/types/main/rules/GetRecordAllFields.d.ts +8 -0
- package/types/main/rules/GetRecordAllFields.d.ts.map +1 -0
- package/types/main/rules/HardcodedId.d.ts +14 -0
- package/types/main/rules/HardcodedId.d.ts.map +1 -0
- package/types/main/rules/HardcodedSecret.d.ts +14 -0
- package/types/main/rules/HardcodedSecret.d.ts.map +1 -0
- package/types/main/rules/HardcodedUrl.d.ts +14 -0
- package/types/main/rules/HardcodedUrl.d.ts.map +1 -0
- package/types/main/rules/InactiveFlow.d.ts +8 -0
- package/types/main/rules/InactiveFlow.d.ts.map +1 -0
- package/types/main/rules/MissingFaultPath.d.ts +15 -0
- package/types/main/rules/MissingFaultPath.d.ts.map +1 -0
- package/types/main/rules/MissingFilterRecordTrigger.d.ts +8 -0
- package/types/main/rules/MissingFilterRecordTrigger.d.ts.map +1 -0
- package/types/main/rules/MissingMetadataDescription.d.ts +8 -0
- package/types/main/rules/MissingMetadataDescription.d.ts.map +1 -0
- package/types/main/rules/MissingNullHandler.d.ts +8 -0
- package/types/main/rules/MissingNullHandler.d.ts.map +1 -0
- package/types/main/rules/MissingRecordTriggerFilter.d.ts +8 -0
- package/types/main/rules/MissingRecordTriggerFilter.d.ts.map +1 -0
- package/types/main/rules/ProcessBuilder.d.ts +8 -0
- package/types/main/rules/ProcessBuilder.d.ts.map +1 -0
- package/types/main/rules/RecordIdAsString.d.ts +8 -0
- package/types/main/rules/RecordIdAsString.d.ts.map +1 -0
- package/types/main/rules/RecursiveAfterUpdate.d.ts +9 -0
- package/types/main/rules/RecursiveAfterUpdate.d.ts.map +1 -0
- package/types/main/rules/SOQLQueryInLoop.d.ts +7 -0
- package/types/main/rules/SOQLQueryInLoop.d.ts.map +1 -0
- package/types/main/rules/SameRecordFieldUpdates.d.ts +9 -0
- package/types/main/rules/SameRecordFieldUpdates.d.ts.map +1 -0
- package/types/main/rules/TransformInsteadOfLoop.d.ts +8 -0
- package/types/main/rules/TransformInsteadOfLoop.d.ts.map +1 -0
- package/types/main/rules/TriggerOrder.d.ts +8 -0
- package/types/main/rules/TriggerOrder.d.ts.map +1 -0
- package/types/main/rules/UnconnectedElement.d.ts +8 -0
- package/types/main/rules/UnconnectedElement.d.ts.map +1 -0
- package/types/main/rules/UnsafeRunningContext.d.ts +8 -0
- package/types/main/rules/UnsafeRunningContext.d.ts.map +1 -0
- package/types/main/rules/UnusedVariable.d.ts +8 -0
- package/types/main/rules/UnusedVariable.d.ts.map +1 -0
- package/types/main/store/DefaultRuleStore.d.ts +3 -0
- package/types/main/store/DefaultRuleStore.d.ts.map +1 -0
- package/types/main/store/RuleRegistry.d.ts +23 -0
- package/types/main/store/RuleRegistry.d.ts.map +1 -0
- package/vite.config.ts +33 -0
- package/README.md +0 -635
- /package/{index.d.ts → out/index.d.ts} +0 -0
- /package/{index.js → out/index.js} +0 -0
- /package/{main → out/main}/config/NodeIcons.d.ts +0 -0
- /package/{main → out/main}/config/NodeIcons.js +0 -0
- /package/{main → out/main}/config/RuleRegistry.d.ts +0 -0
- /package/{main → out/main}/config/VariableIcons.d.ts +0 -0
- /package/{main → out/main}/config/VariableIcons.js +0 -0
- /package/{main → out/main}/enums/MetadataTypes.d.ts +0 -0
- /package/{main → out/main}/enums/MetadataTypes.js +0 -0
- /package/{main → out/main}/interfaces/IExceptions.d.ts +0 -0
- /package/{main → out/main}/interfaces/IExceptions.js +0 -0
- /package/{main → out/main}/interfaces/IRuleConfig.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRuleConfig.js +0 -0
- /package/{main → out/main}/interfaces/IRuleDefinition.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRuleDefinition.js +0 -0
- /package/{main → out/main}/interfaces/IRuleOptions.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRuleOptions.js +0 -0
- /package/{main → out/main}/interfaces/IRulesConfig.d.ts +0 -0
- /package/{main → out/main}/interfaces/IRulesConfig.js +0 -0
- /package/{main → out/main}/internals/internals.d.ts +0 -0
- /package/{main → out/main}/internals/internals.js +0 -0
- /package/{main → out/main}/libs/BuildFlow.d.ts +0 -0
- /package/{main → out/main}/libs/BuildFlow.js +0 -0
- /package/{main → out/main}/libs/Compiler.d.ts +0 -0
- /package/{main → out/main}/libs/Compiler.js +0 -0
- /package/{main → out/main}/libs/ExportDetails.d.ts +0 -0
- /package/{main → out/main}/libs/ExportDetails.js +0 -0
- /package/{main → out/main}/libs/ExportDiagram.d.ts +0 -0
- /package/{main → out/main}/libs/ExportDiagram.js +0 -0
- /package/{main → out/main}/libs/ExportSarif.d.ts +0 -0
- /package/{main → out/main}/libs/ExportSarif.js +0 -0
- /package/{main → out/main}/libs/FixFlows.d.ts +0 -0
- /package/{main → out/main}/libs/FixFlows.js +0 -0
- /package/{main → out/main}/libs/GetRuleDefinitions.d.ts +0 -0
- /package/{main → out/main}/libs/GetRuleDefinitions.js +0 -0
- /package/{main → out/main}/libs/ParseFlows.d.ts +0 -0
- /package/{main → out/main}/libs/ParseFlows.js +0 -0
- /package/{main → out/main}/libs/RuleDocumentation.d.ts +0 -0
- /package/{main → out/main}/libs/RuleDocumentation.js +0 -0
- /package/{main → out/main}/libs/ScanFlows.d.ts +0 -0
- /package/{main → out/main}/libs/ScanFlows.js +0 -0
- /package/{main → out/main}/models/FlatViolation.d.ts +0 -0
- /package/{main → out/main}/models/FlatViolation.js +0 -0
- /package/{main → out/main}/models/Flow.d.ts +0 -0
- /package/{main → out/main}/models/Flow.js +0 -0
- /package/{main → out/main}/models/FlowAttribute.d.ts +0 -0
- /package/{main → out/main}/models/FlowAttribute.js +0 -0
- /package/{main → out/main}/models/FlowElement.d.ts +0 -0
- /package/{main → out/main}/models/FlowElement.js +0 -0
- /package/{main → out/main}/models/FlowElementConnector.d.ts +0 -0
- /package/{main → out/main}/models/FlowElementConnector.js +0 -0
- /package/{main → out/main}/models/FlowGraph.d.ts +0 -0
- /package/{main → out/main}/models/FlowGraph.js +0 -0
- /package/{main → out/main}/models/FlowMetadata.d.ts +0 -0
- /package/{main → out/main}/models/FlowMetadata.js +0 -0
- /package/{main → out/main}/models/FlowNode.d.ts +0 -0
- /package/{main → out/main}/models/FlowNode.js +0 -0
- /package/{main → out/main}/models/FlowResource.d.ts +0 -0
- /package/{main → out/main}/models/FlowResource.js +0 -0
- /package/{main → out/main}/models/FlowType.d.ts +0 -0
- /package/{main → out/main}/models/FlowType.js +0 -0
- /package/{main → out/main}/models/FlowVariable.d.ts +0 -0
- /package/{main → out/main}/models/FlowVariable.js +0 -0
- /package/{main → out/main}/models/LoopRuleCommon.d.ts +0 -0
- /package/{main → out/main}/models/LoopRuleCommon.js +0 -0
- /package/{main → out/main}/models/ParsedFlow.d.ts +0 -0
- /package/{main → out/main}/models/ParsedFlow.js +0 -0
- /package/{main → out/main}/models/RuleCommon.d.ts +0 -0
- /package/{main → out/main}/models/RuleCommon.js +0 -0
- /package/{main → out/main}/models/RuleInfo.d.ts +0 -0
- /package/{main → out/main}/models/RuleInfo.js +0 -0
- /package/{main → out/main}/models/RuleResult.d.ts +0 -0
- /package/{main → out/main}/models/RuleResult.js +0 -0
- /package/{main → out/main}/models/ScanResult.d.ts +0 -0
- /package/{main → out/main}/models/ScanResult.js +0 -0
- /package/{main → out/main}/models/Violation.d.ts +0 -0
- /package/{main → out/main}/models/Violation.js +0 -0
- /package/{main → out/main}/rules/APIVersion.d.ts +0 -0
- /package/{main → out/main}/rules/APIVersion.js +0 -0
- /package/{main → out/main}/rules/ActionCallsInLoop.d.ts +0 -0
- /package/{main → out/main}/rules/ActionCallsInLoop.js +0 -0
- /package/{main → out/main}/rules/AutoLayout.d.ts +0 -0
- /package/{main → out/main}/rules/AutoLayout.js +0 -0
- /package/{main → out/main}/rules/CopyAPIName.d.ts +0 -0
- /package/{main → out/main}/rules/CopyAPIName.js +0 -0
- /package/{main → out/main}/rules/CyclomaticComplexity.d.ts +0 -0
- /package/{main → out/main}/rules/CyclomaticComplexity.js +0 -0
- /package/{main → out/main}/rules/DMLStatementInLoop.d.ts +0 -0
- /package/{main → out/main}/rules/DMLStatementInLoop.js +0 -0
- /package/{main → out/main}/rules/DuplicateDMLOperation.d.ts +0 -0
- /package/{main → out/main}/rules/DuplicateDMLOperation.js +0 -0
- /package/{main → out/main}/rules/FlowDescription.d.ts +0 -0
- /package/{main → out/main}/rules/FlowDescription.js +0 -0
- /package/{main → out/main}/rules/GetRecordAllFields.d.ts +0 -0
- /package/{main → out/main}/rules/GetRecordAllFields.js +0 -0
- /package/{main → out/main}/rules/InactiveFlow.d.ts +0 -0
- /package/{main → out/main}/rules/InactiveFlow.js +0 -0
- /package/{main → out/main}/rules/MissingFaultPath.d.ts +0 -0
- /package/{main → out/main}/rules/MissingFaultPath.js +0 -0
- /package/{main → out/main}/rules/MissingMetadataDescription.d.ts +0 -0
- /package/{main → out/main}/rules/MissingMetadataDescription.js +0 -0
- /package/{main → out/main}/rules/MissingNullHandler.d.ts +0 -0
- /package/{main → out/main}/rules/MissingNullHandler.js +0 -0
- /package/{main → out/main}/rules/MissingRecordTriggerFilter.d.ts +0 -0
- /package/{main → out/main}/rules/MissingRecordTriggerFilter.js +0 -0
- /package/{main → out/main}/rules/ProcessBuilder.d.ts +0 -0
- /package/{main → out/main}/rules/ProcessBuilder.js +0 -0
- /package/{main → out/main}/rules/RecordIdAsString.d.ts +0 -0
- /package/{main → out/main}/rules/RecordIdAsString.js +0 -0
- /package/{main → out/main}/rules/RecursiveAfterUpdate.d.ts +0 -0
- /package/{main → out/main}/rules/RecursiveAfterUpdate.js +0 -0
- /package/{main → out/main}/rules/SOQLQueryInLoop.d.ts +0 -0
- /package/{main → out/main}/rules/SOQLQueryInLoop.js +0 -0
- /package/{main → out/main}/rules/SameRecordFieldUpdates.d.ts +0 -0
- /package/{main → out/main}/rules/SameRecordFieldUpdates.js +0 -0
- /package/{main → out/main}/rules/TransformInsteadOfLoop.d.ts +0 -0
- /package/{main → out/main}/rules/TransformInsteadOfLoop.js +0 -0
- /package/{main → out/main}/rules/TriggerOrder.d.ts +0 -0
- /package/{main → out/main}/rules/TriggerOrder.js +0 -0
- /package/{main → out/main}/rules/UnconnectedElement.d.ts +0 -0
- /package/{main → out/main}/rules/UnconnectedElement.js +0 -0
- /package/{main → out/main}/rules/UnsafeRunningContext.d.ts +0 -0
- /package/{main → out/main}/rules/UnsafeRunningContext.js +0 -0
- /package/{main → out/main}/rules/UnusedVariable.d.ts +0 -0
- /package/{main → out/main}/rules/UnusedVariable.js +0 -0
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
import { describe, expect, it } from "@jest/globals";
|
|
2
|
+
import { Flow, RuleResult, scan } from "../src";
|
|
3
|
+
import { ParsedFlow } from "../src/main/models/ParsedFlow";
|
|
4
|
+
import { RecursiveAfterUpdate } from "../src/main/rules/RecursiveAfterUpdate";
|
|
5
|
+
|
|
6
|
+
describe("RecursiveAfterUpdate", () => {
|
|
7
|
+
const rule = new RecursiveAfterUpdate();
|
|
8
|
+
|
|
9
|
+
describe("e2e", () => {
|
|
10
|
+
it("should trigger from when opt-in", () => {
|
|
11
|
+
const testData: ParsedFlow = {
|
|
12
|
+
flow: {
|
|
13
|
+
elements: [
|
|
14
|
+
{
|
|
15
|
+
element: {
|
|
16
|
+
inputReference: "$Record",
|
|
17
|
+
},
|
|
18
|
+
metaType: "node",
|
|
19
|
+
subtype: "recordUpdates",
|
|
20
|
+
},
|
|
21
|
+
],
|
|
22
|
+
startNode: {
|
|
23
|
+
element: {
|
|
24
|
+
recordTriggerType: "Create",
|
|
25
|
+
triggerType: "RecordAfterSave",
|
|
26
|
+
object: "Account"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
type: "AutoLaunchedFlow",
|
|
30
|
+
},
|
|
31
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
32
|
+
|
|
33
|
+
const ruleConfig = {
|
|
34
|
+
ruleMode: "isolated",
|
|
35
|
+
exceptions: {},
|
|
36
|
+
rules: {
|
|
37
|
+
RecursiveAfterUpdate: {
|
|
38
|
+
severity: "error",
|
|
39
|
+
},
|
|
40
|
+
},
|
|
41
|
+
};
|
|
42
|
+
const results = scan([testData], ruleConfig);
|
|
43
|
+
const scanResults = results.pop();
|
|
44
|
+
|
|
45
|
+
expect(
|
|
46
|
+
scanResults?.ruleResults.some(
|
|
47
|
+
(ruleResult) => ruleResult.ruleName === "RecursiveAfterUpdate"
|
|
48
|
+
)
|
|
49
|
+
).toBeTruthy();
|
|
50
|
+
expect(
|
|
51
|
+
scanResults?.ruleResults?.find(
|
|
52
|
+
(ruleResult) => ruleResult.ruleName === "RecursiveAfterUpdate"
|
|
53
|
+
)?.occurs
|
|
54
|
+
).toBeTruthy();
|
|
55
|
+
});
|
|
56
|
+
});
|
|
57
|
+
|
|
58
|
+
describe("units", () => {
|
|
59
|
+
describe("when using inputReference as $Record", () => {
|
|
60
|
+
it("should trigger when matching record input reference", () => {
|
|
61
|
+
const testData: ParsedFlow = {
|
|
62
|
+
flow: {
|
|
63
|
+
elements: [
|
|
64
|
+
{
|
|
65
|
+
element: {
|
|
66
|
+
inputReference: "$Record",
|
|
67
|
+
},
|
|
68
|
+
metaType: "node",
|
|
69
|
+
subtype: "recordUpdates",
|
|
70
|
+
},
|
|
71
|
+
],
|
|
72
|
+
startNode: {
|
|
73
|
+
element: {
|
|
74
|
+
recordTriggerType: "CreateAndUpdate",
|
|
75
|
+
triggerType: "RecordAfterSave",
|
|
76
|
+
object: "Account"
|
|
77
|
+
}
|
|
78
|
+
},
|
|
79
|
+
},
|
|
80
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
81
|
+
|
|
82
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
83
|
+
expect(ruleResult.occurs).toBe(true);
|
|
84
|
+
});
|
|
85
|
+
|
|
86
|
+
it("should not trigger when not matching record input reference", () => {
|
|
87
|
+
const testData: ParsedFlow = {
|
|
88
|
+
flow: {
|
|
89
|
+
elements: [
|
|
90
|
+
{
|
|
91
|
+
element: {
|
|
92
|
+
inputReference: "SomethingElse",
|
|
93
|
+
},
|
|
94
|
+
metaType: "node",
|
|
95
|
+
subtype: "recordUpdates",
|
|
96
|
+
},
|
|
97
|
+
],
|
|
98
|
+
startNode: {
|
|
99
|
+
element: {
|
|
100
|
+
recordTriggerType: "CreateAndUpdate",
|
|
101
|
+
triggerType: "RecordAfterSave",
|
|
102
|
+
object: "Account"
|
|
103
|
+
}
|
|
104
|
+
},
|
|
105
|
+
},
|
|
106
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
107
|
+
|
|
108
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
109
|
+
expect(ruleResult.occurs).toBe(false);
|
|
110
|
+
});
|
|
111
|
+
});
|
|
112
|
+
|
|
113
|
+
describe("when using inputReference as lookup element", () => {
|
|
114
|
+
it("should trigger when inferred type matches inputReference", () => {
|
|
115
|
+
const testData: ParsedFlow = {
|
|
116
|
+
flow: {
|
|
117
|
+
elements: [
|
|
118
|
+
{
|
|
119
|
+
element: {
|
|
120
|
+
object: "Case",
|
|
121
|
+
},
|
|
122
|
+
metaType: "node",
|
|
123
|
+
name: "lookupElement",
|
|
124
|
+
subtype: "recordLookups",
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
element: {
|
|
128
|
+
inputReference: "lookupElement",
|
|
129
|
+
},
|
|
130
|
+
metaType: "node",
|
|
131
|
+
subtype: "recordUpdates",
|
|
132
|
+
},
|
|
133
|
+
],
|
|
134
|
+
startNode: {
|
|
135
|
+
element: {
|
|
136
|
+
object: "Case",
|
|
137
|
+
recordTriggerType: "CreateAndUpdate",
|
|
138
|
+
triggerType: "RecordAfterSave",
|
|
139
|
+
}
|
|
140
|
+
},
|
|
141
|
+
},
|
|
142
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
143
|
+
|
|
144
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
145
|
+
expect(ruleResult.occurs).toBe(true);
|
|
146
|
+
});
|
|
147
|
+
|
|
148
|
+
it("should not trigger when no matching inferred reference", () => {
|
|
149
|
+
const testData: ParsedFlow = {
|
|
150
|
+
flow: {
|
|
151
|
+
elements: [
|
|
152
|
+
{
|
|
153
|
+
element: {
|
|
154
|
+
object: "Case",
|
|
155
|
+
},
|
|
156
|
+
metaType: "node",
|
|
157
|
+
name: "lookupElement",
|
|
158
|
+
subtype: "recordLookups",
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
element: {
|
|
162
|
+
inputReference: "SomethingElse",
|
|
163
|
+
},
|
|
164
|
+
metaType: "node",
|
|
165
|
+
subtype: "recordUpdates",
|
|
166
|
+
},
|
|
167
|
+
],
|
|
168
|
+
startNode: {
|
|
169
|
+
element: {
|
|
170
|
+
object: "Case",
|
|
171
|
+
recordTriggerType: "CreateAndUpdate",
|
|
172
|
+
triggerType: "RecordAfterSave",
|
|
173
|
+
}
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
177
|
+
|
|
178
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
179
|
+
expect(ruleResult.occurs).toBe(false);
|
|
180
|
+
});
|
|
181
|
+
});
|
|
182
|
+
});
|
|
183
|
+
});
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { describe, expect, it } from "@jest/globals";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
|
|
4
|
+
import * as core from "../src";
|
|
5
|
+
|
|
6
|
+
describe("SOQLQueryInLoop ", () => {
|
|
7
|
+
const example_uri = path.join(__dirname, "../../../example-flows/force-app/demo/SOQL_Query_In_A_Loop.flow-meta.xml");
|
|
8
|
+
|
|
9
|
+
const config = {
|
|
10
|
+
ruleMode: "isolated",
|
|
11
|
+
rules: {
|
|
12
|
+
SOQLQueryInLoop: {
|
|
13
|
+
severity: "error",
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
|
|
18
|
+
it("there should be one result for the rule SOQLQueryInLoop", async () => {
|
|
19
|
+
const flows = await core.parse([example_uri]);
|
|
20
|
+
const results: core.ScanResult[] = core.scan(flows, config);
|
|
21
|
+
const SOQLQueryInLoop = results[0].ruleResults.find(
|
|
22
|
+
(rule) => rule.occurs && rule.ruleName === "SOQLQueryInLoop"
|
|
23
|
+
);
|
|
24
|
+
expect(SOQLQueryInLoop?.occurs).toBe(true);
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it("there should be no result for the rule SOQLQueryInLoop", async () => {
|
|
28
|
+
const flows = await core.parse([example_uri]);
|
|
29
|
+
const results: core.ScanResult[] = core.scan(flows, config);
|
|
30
|
+
const occurringResults = results[0].ruleResults.filter((rule) => rule.occurs);
|
|
31
|
+
expect(occurringResults).toEqual(expect.not.arrayContaining(["SOQLQueryInLoop"]));
|
|
32
|
+
});
|
|
33
|
+
});
|
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
import { ParsedFlow } from "../src/main/models/ParsedFlow";
|
|
2
|
+
import { SameRecordFieldUpdates } from "../src/main/rules/SameRecordFieldUpdates";
|
|
3
|
+
import { RuleResult, Flow, parse, scan, ScanResult } from "../src";
|
|
4
|
+
import * as path from "path";
|
|
5
|
+
|
|
6
|
+
import { describe, it, expect } from "@jest/globals";
|
|
7
|
+
|
|
8
|
+
describe("SameRecordFieldUpdates", () => {
|
|
9
|
+
const rule = new SameRecordFieldUpdates();
|
|
10
|
+
|
|
11
|
+
it("should flag same record updates on before context flows", async () => {
|
|
12
|
+
const testData: ParsedFlow = {
|
|
13
|
+
flow: {
|
|
14
|
+
status: "Active",
|
|
15
|
+
startNode: {
|
|
16
|
+
element: {
|
|
17
|
+
recordTriggerType: "Create",
|
|
18
|
+
triggerType: "RecordBeforeSave",
|
|
19
|
+
object: "Account",
|
|
20
|
+
connector: { targetReference: "Update_triggering_records" },
|
|
21
|
+
locationX: "50",
|
|
22
|
+
locationY: "0",
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
elements: [
|
|
26
|
+
{
|
|
27
|
+
element: {
|
|
28
|
+
description: "test",
|
|
29
|
+
name: "Update_triggering_records",
|
|
30
|
+
label: "Update triggering records",
|
|
31
|
+
locationX: "176",
|
|
32
|
+
locationY: "287",
|
|
33
|
+
inputAssignments: { field: "Active__c", value: { stringValue: "Yes" } },
|
|
34
|
+
inputReference: "$Record",
|
|
35
|
+
},
|
|
36
|
+
subtype: "recordUpdates",
|
|
37
|
+
metaType: "node",
|
|
38
|
+
connectors: [],
|
|
39
|
+
name: "Update_triggering_records",
|
|
40
|
+
locationX: "176",
|
|
41
|
+
locationY: "287",
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
},
|
|
45
|
+
} as unknown as Partial<ParsedFlow> as ParsedFlow;
|
|
46
|
+
|
|
47
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
48
|
+
|
|
49
|
+
expect(ruleResult.occurs).toBe(true);
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it("should not flag same record updates on after context flows", async () => {
|
|
53
|
+
const testData: ParsedFlow = {
|
|
54
|
+
flow: {
|
|
55
|
+
status: "Active",
|
|
56
|
+
startNode: {
|
|
57
|
+
element: {
|
|
58
|
+
recordTriggerType: "Create",
|
|
59
|
+
triggerType: "RecordAfterSave",
|
|
60
|
+
object: "Account",
|
|
61
|
+
connector: { targetReference: "Update_triggering_records" },
|
|
62
|
+
locationX: "50",
|
|
63
|
+
locationY: "0",
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
elements: [
|
|
67
|
+
{
|
|
68
|
+
element: {
|
|
69
|
+
description: "test",
|
|
70
|
+
name: "Update_triggering_records",
|
|
71
|
+
label: "Update triggering records",
|
|
72
|
+
locationX: "176",
|
|
73
|
+
locationY: "287",
|
|
74
|
+
inputAssignments: { field: "Active__c", value: { stringValue: "Yes" } },
|
|
75
|
+
inputReference: "$Record",
|
|
76
|
+
},
|
|
77
|
+
subtype: "recordUpdates",
|
|
78
|
+
metaType: "node",
|
|
79
|
+
connectors: [],
|
|
80
|
+
name: "Update_triggering_records",
|
|
81
|
+
locationX: "176",
|
|
82
|
+
locationY: "287",
|
|
83
|
+
}
|
|
84
|
+
],
|
|
85
|
+
},
|
|
86
|
+
} as unknown as Partial<ParsedFlow> as ParsedFlow;
|
|
87
|
+
|
|
88
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
89
|
+
|
|
90
|
+
expect(ruleResult.occurs).toBe(false);
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
it("should trigger from default configuration on store", async () => {
|
|
94
|
+
const example_uri1 = path.join(__dirname, "../../../example-flows/force-app/demo/Same_Record_Field_Updates.flow-meta.xml");
|
|
95
|
+
const flows = await parse([example_uri1]);
|
|
96
|
+
const ruleConfig = {
|
|
97
|
+
ruleMode: "isolated",
|
|
98
|
+
rules: {},
|
|
99
|
+
exceptions: {},
|
|
100
|
+
};
|
|
101
|
+
const results: ScanResult[] = scan(flows, ruleConfig);
|
|
102
|
+
const scanResults = results.pop();
|
|
103
|
+
|
|
104
|
+
const foundRule = scanResults?.ruleResults.find((rule) => {
|
|
105
|
+
return rule.ruleDefinition.name === "SameRecordFieldUpdates";
|
|
106
|
+
});
|
|
107
|
+
expect(foundRule?.occurs).toBe(true);
|
|
108
|
+
});
|
|
109
|
+
|
|
110
|
+
it("should trigger when opt-in configuration", async () => {
|
|
111
|
+
const example_uri1 = path.join(__dirname, "../../../example-flows/force-app/demo/Same_Record_Field_Updates.flow-meta.xml");
|
|
112
|
+
const flows = await parse([example_uri1]);
|
|
113
|
+
const ruleConfig = {
|
|
114
|
+
ruleMode: "isolated",
|
|
115
|
+
rules: {
|
|
116
|
+
SameRecordFieldUpdates: {
|
|
117
|
+
severity: "error",
|
|
118
|
+
},
|
|
119
|
+
},
|
|
120
|
+
exceptions: {},
|
|
121
|
+
};
|
|
122
|
+
const results: ScanResult[] = scan(flows, ruleConfig);
|
|
123
|
+
const scanResults = results.pop();
|
|
124
|
+
|
|
125
|
+
const expectedRule = scanResults?.ruleResults.find(
|
|
126
|
+
(rule) => rule.ruleName === "SameRecordFieldUpdates"
|
|
127
|
+
);
|
|
128
|
+
expect(expectedRule).toBeTruthy();
|
|
129
|
+
expect(expectedRule?.occurs).toBe(true);
|
|
130
|
+
});
|
|
131
|
+
|
|
132
|
+
it("should not error when start element is not existing", async () => {
|
|
133
|
+
const testData: ParsedFlow = {
|
|
134
|
+
flow: {
|
|
135
|
+
status: "Active",
|
|
136
|
+
elements: [
|
|
137
|
+
{
|
|
138
|
+
element: {
|
|
139
|
+
description: "test",
|
|
140
|
+
name: "Update_triggering_records",
|
|
141
|
+
label: "Update triggering records",
|
|
142
|
+
locationX: "176",
|
|
143
|
+
locationY: "287",
|
|
144
|
+
inputAssignments: { field: "Active__c", value: { stringValue: "Yes" } },
|
|
145
|
+
inputReference: "$Record",
|
|
146
|
+
},
|
|
147
|
+
subtype: "recordUpdates",
|
|
148
|
+
metaType: "node",
|
|
149
|
+
connectors: [],
|
|
150
|
+
name: "Update_triggering_records",
|
|
151
|
+
locationX: "176",
|
|
152
|
+
locationY: "287",
|
|
153
|
+
},
|
|
154
|
+
{
|
|
155
|
+
element: {
|
|
156
|
+
locationX: "50",
|
|
157
|
+
locationY: "0",
|
|
158
|
+
connector: { targetReference: "Update_triggering_records" },
|
|
159
|
+
object: "Account",
|
|
160
|
+
recordTriggerType: "Create",
|
|
161
|
+
triggerType: "RecordBeforeSave",
|
|
162
|
+
},
|
|
163
|
+
subtype: "start",
|
|
164
|
+
metaType: "node",
|
|
165
|
+
connectors: [
|
|
166
|
+
{
|
|
167
|
+
element: { targetReference: "Update_triggering_records" },
|
|
168
|
+
processed: false,
|
|
169
|
+
type: "connector",
|
|
170
|
+
reference: "Update_triggering_records",
|
|
171
|
+
},
|
|
172
|
+
],
|
|
173
|
+
name: "flowstart",
|
|
174
|
+
locationX: "50",
|
|
175
|
+
locationY: "0",
|
|
176
|
+
},
|
|
177
|
+
],
|
|
178
|
+
},
|
|
179
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
180
|
+
|
|
181
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
182
|
+
|
|
183
|
+
expect(ruleResult.occurs).toBe(false);
|
|
184
|
+
});
|
|
185
|
+
|
|
186
|
+
it("should not error when elements are missing", async () => {
|
|
187
|
+
const testData: ParsedFlow = {
|
|
188
|
+
flow: {
|
|
189
|
+
status: "Active",
|
|
190
|
+
start: {
|
|
191
|
+
locationX: "50",
|
|
192
|
+
locationY: "0",
|
|
193
|
+
connector: { targetReference: "Update_triggering_records" },
|
|
194
|
+
object: "Account",
|
|
195
|
+
recordTriggerType: "Create",
|
|
196
|
+
triggerType: "RecordBeforeSave",
|
|
197
|
+
},
|
|
198
|
+
},
|
|
199
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
200
|
+
|
|
201
|
+
const ruleResult: RuleResult = rule.execute(testData.flow as Flow);
|
|
202
|
+
|
|
203
|
+
expect(ruleResult.occurs).toBe(false);
|
|
204
|
+
});
|
|
205
|
+
});
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as core from "../src";
|
|
2
|
+
|
|
3
|
+
test("core exports sanity", () => {
|
|
4
|
+
expect(core.scan).toBeDefined();
|
|
5
|
+
expect(core.parse).toBeDefined();
|
|
6
|
+
});
|
|
7
|
+
|
|
8
|
+
describe('UMD Global', () => {
|
|
9
|
+
it('exposes exports', () => {
|
|
10
|
+
const scanner = global.lightningflowscanner;
|
|
11
|
+
expect(scanner).toBeDefined();
|
|
12
|
+
expect(typeof scanner.scan).toBe('function');
|
|
13
|
+
expect(scanner.Flow).toBeDefined();
|
|
14
|
+
});
|
|
15
|
+
});
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { describe, expect, it } from "@jest/globals";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
import * as core from "../src";
|
|
4
|
+
|
|
5
|
+
describe("TransformInsteadOfLoop", () => {
|
|
6
|
+
const violating_uri = path.join(
|
|
7
|
+
__dirname,
|
|
8
|
+
"../../../example-flows/force-app/testing/Loop_Assignment_Pattern.flow-meta.xml"
|
|
9
|
+
);
|
|
10
|
+
|
|
11
|
+
it("should flag loop that connects directly to assignment", async () => {
|
|
12
|
+
const flows = await core.parse([violating_uri]);
|
|
13
|
+
expect(flows.length).toBeGreaterThan(0);
|
|
14
|
+
|
|
15
|
+
const ruleConfig = {
|
|
16
|
+
betaMode: true,
|
|
17
|
+
ruleMode: "isolated",
|
|
18
|
+
rules: {
|
|
19
|
+
TransformInsteadOfLoop: {
|
|
20
|
+
severity: "note"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
|
|
25
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
26
|
+
expect(results.length).toBeGreaterThan(0);
|
|
27
|
+
|
|
28
|
+
const ruleResult = results[0].ruleResults.find(r => r.ruleName === "TransformInsteadOfLoop");
|
|
29
|
+
expect(ruleResult).toBeDefined();
|
|
30
|
+
expect(ruleResult.occurs).toBe(true);
|
|
31
|
+
expect(ruleResult.details.length).toBeGreaterThan(0);
|
|
32
|
+
});
|
|
33
|
+
});
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { describe, expect, it } from "@jest/globals";
|
|
2
|
+
import { Flow, RuleResult, scan, ScanResult } from "../src";
|
|
3
|
+
import { ParsedFlow } from "../src/main/models/ParsedFlow";
|
|
4
|
+
import { TriggerOrder } from "../src/main/rules/TriggerOrder";
|
|
5
|
+
|
|
6
|
+
describe("TriggerOrder", () => {
|
|
7
|
+
it("should not trigger from default configuration on store", async () => {
|
|
8
|
+
const ruleConfig = {
|
|
9
|
+
ruleMode: "isolated",
|
|
10
|
+
exceptions: {},
|
|
11
|
+
rules: {
|
|
12
|
+
FlowDescription: {
|
|
13
|
+
severity: "error",
|
|
14
|
+
},
|
|
15
|
+
},
|
|
16
|
+
};
|
|
17
|
+
const flows: ParsedFlow[] = [
|
|
18
|
+
{
|
|
19
|
+
flow: {
|
|
20
|
+
status: "Active",
|
|
21
|
+
type: "AutoLaunchedFlow",
|
|
22
|
+
startNode: {
|
|
23
|
+
element: {
|
|
24
|
+
triggerType: "RecordAfterSave",
|
|
25
|
+
object: "Account"
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
type: "AutoLaunchedFlow",
|
|
30
|
+
} as unknown as Partial<ParsedFlow> as ParsedFlow,
|
|
31
|
+
];
|
|
32
|
+
const results: ScanResult[] = scan(flows, ruleConfig);
|
|
33
|
+
const scanResults = results.pop();
|
|
34
|
+
|
|
35
|
+
const ruleResults = scanResults?.ruleResults.find((rule) => {
|
|
36
|
+
return rule.ruleDefinition.name === "TriggerOrder";
|
|
37
|
+
});
|
|
38
|
+
expect(ruleResults).toBeFalsy();
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
it("should trigger when opt-in configuration", async () => {
|
|
42
|
+
const flows: ParsedFlow[] = [
|
|
43
|
+
{
|
|
44
|
+
flow: {
|
|
45
|
+
status: "Active",
|
|
46
|
+
type: "AutoLaunchedFlow",
|
|
47
|
+
startNode: {
|
|
48
|
+
element: {
|
|
49
|
+
object: "Account",
|
|
50
|
+
triggerType: "RecordAfterSave"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
} as unknown as Partial<ParsedFlow> as ParsedFlow,
|
|
55
|
+
];
|
|
56
|
+
|
|
57
|
+
const ruleConfig = {
|
|
58
|
+
exceptions: {},
|
|
59
|
+
rules: {
|
|
60
|
+
ruleMode: "isolated",
|
|
61
|
+
TriggerOrder: {
|
|
62
|
+
severity: "error",
|
|
63
|
+
},
|
|
64
|
+
},
|
|
65
|
+
};
|
|
66
|
+
const results: ScanResult[] = scan(flows, ruleConfig);
|
|
67
|
+
const scanResults = results.pop();
|
|
68
|
+
|
|
69
|
+
const expectedRule = scanResults?.ruleResults.find((rule) => rule.ruleName === "TriggerOrder");
|
|
70
|
+
expect(expectedRule).toBeTruthy();
|
|
71
|
+
expect(expectedRule?.occurs).toBe(true);
|
|
72
|
+
expect(expectedRule?.details[0].details).toEqual({ expression: "10, 20, 30 ..." });
|
|
73
|
+
});
|
|
74
|
+
|
|
75
|
+
it("should flag trigger order when not present", async () => {
|
|
76
|
+
const testData: ParsedFlow = {
|
|
77
|
+
flow: {
|
|
78
|
+
status: "Active",
|
|
79
|
+
type: "AutoLaunchedFlow",
|
|
80
|
+
startNode: {
|
|
81
|
+
element: {
|
|
82
|
+
object: "Account",
|
|
83
|
+
triggerType: "RecordAfterSave"
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
} as unknown as Partial<ParsedFlow> as ParsedFlow;
|
|
88
|
+
|
|
89
|
+
const ruleResult: RuleResult = new TriggerOrder().execute(testData.flow as Flow);
|
|
90
|
+
|
|
91
|
+
expect(ruleResult.occurs).toBeTruthy();
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
it("should not flag trigger order when present", async () => {
|
|
95
|
+
const testData: ParsedFlow = {
|
|
96
|
+
flow: {
|
|
97
|
+
status: "Active",
|
|
98
|
+
type: "AutoLaunchedFlow",
|
|
99
|
+
triggerOrder: 10,
|
|
100
|
+
startNode: {
|
|
101
|
+
element: {
|
|
102
|
+
object: "Account",
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
} as Partial<ParsedFlow> as ParsedFlow;
|
|
107
|
+
|
|
108
|
+
const ruleResult: RuleResult = new TriggerOrder().execute(testData.flow as Flow);
|
|
109
|
+
|
|
110
|
+
expect(ruleResult.occurs).toBeFalsy();
|
|
111
|
+
});
|
|
112
|
+
});
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
import * as core from "../src";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
import { parse } from "../src/main/libs/ParseFlows";
|
|
4
|
+
import { ParsedFlow } from "../src/main/models/ParsedFlow";
|
|
5
|
+
import { UnconnectedElement } from "../src/main/rules/UnconnectedElement";
|
|
6
|
+
import { describe, it, expect } from "@jest/globals";
|
|
7
|
+
|
|
8
|
+
describe("UnconnectedElement", () => {
|
|
9
|
+
const unconnectedElementRule: UnconnectedElement = new UnconnectedElement();
|
|
10
|
+
it("there should be checks for unconnected element", async () => {
|
|
11
|
+
const connectedElementTestFile = path.join(
|
|
12
|
+
__dirname,
|
|
13
|
+
"../../../example-flows/force-app/demo/Unreachable_Element.flow-meta.xml"
|
|
14
|
+
);
|
|
15
|
+
const parsed: ParsedFlow = (await parse([connectedElementTestFile])).pop() as ParsedFlow;
|
|
16
|
+
const ruleResult: core.RuleResult = unconnectedElementRule.execute(parsed.flow as core.Flow);
|
|
17
|
+
expect(ruleResult.occurs).toBe(true);
|
|
18
|
+
expect(ruleResult.details).not.toHaveLength(0);
|
|
19
|
+
ruleResult.details.forEach((detail) => {
|
|
20
|
+
expect(detail.name).toBe("unused_assignment");
|
|
21
|
+
});
|
|
22
|
+
});
|
|
23
|
+
it("async path there should be checks for unconnected element", async () => {
|
|
24
|
+
const connectedElementTestFile = path.join(
|
|
25
|
+
__dirname,
|
|
26
|
+
"../../../example-flows/force-app/testing/Unconnected_Element_Async.flow-meta.xml"
|
|
27
|
+
);
|
|
28
|
+
const parsed: ParsedFlow = (await parse([connectedElementTestFile])).pop() as ParsedFlow;
|
|
29
|
+
const ruleResult: core.RuleResult = unconnectedElementRule.execute(parsed.flow as core.Flow);
|
|
30
|
+
expect(ruleResult.occurs).toBe(true);
|
|
31
|
+
ruleResult.details.forEach((ruleDetail) => {
|
|
32
|
+
expect(ruleDetail.name).toBe("UnconnectedElementTestOnAsync");
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
it("should fix the unconnected element error", async () => {
|
|
36
|
+
const connectedElementTestFile = path.join(
|
|
37
|
+
__dirname,
|
|
38
|
+
"../../../example-flows/force-app/demo/Unreachable_Element.flow-meta.xml"
|
|
39
|
+
);
|
|
40
|
+
const flows = await core.parse([connectedElementTestFile]);
|
|
41
|
+
const ruleConfig = {
|
|
42
|
+
ruleMode: "isolated",
|
|
43
|
+
rules: {
|
|
44
|
+
UnconnectedElement: {
|
|
45
|
+
severity: "error",
|
|
46
|
+
},
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
50
|
+
const fixedResults: core.ScanResult[] = core.fix(results);
|
|
51
|
+
const fixedFlow: ParsedFlow = new ParsedFlow(connectedElementTestFile, fixedResults[0].flow);
|
|
52
|
+
const newResults: core.ScanResult[] = core.scan([fixedFlow], ruleConfig);
|
|
53
|
+
const fixedResultsOccurring = newResults[0].ruleResults.filter((rule) => rule.occurs);
|
|
54
|
+
expect(fixedResultsOccurring).toHaveLength(0);
|
|
55
|
+
});
|
|
56
|
+
it("should not include enriched details with detailLevel simple", async () => {
|
|
57
|
+
const testFile = path.join(
|
|
58
|
+
__dirname,
|
|
59
|
+
"../../../example-flows/force-app/demo/Unreachable_Element.flow-meta.xml"
|
|
60
|
+
);
|
|
61
|
+
const flows = await core.parse([testFile]);
|
|
62
|
+
const ruleConfig = {
|
|
63
|
+
ruleMode: "isolated",
|
|
64
|
+
detailLevel: "simple",
|
|
65
|
+
};
|
|
66
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
67
|
+
const ruleResult = results[0].ruleResults.find((r) => r.ruleName === "UnconnectedElement");
|
|
68
|
+
expect(ruleResult).toBeDefined();
|
|
69
|
+
expect(ruleResult.occurs).toBe(true);
|
|
70
|
+
expect(ruleResult.details).not.toHaveLength(0);
|
|
71
|
+
ruleResult.details.forEach((detail) => {
|
|
72
|
+
expect(detail.name).toBe("unused_assignment");
|
|
73
|
+
expect(detail.details).toBeUndefined();
|
|
74
|
+
});
|
|
75
|
+
});
|
|
76
|
+
});
|