@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,62 @@
|
|
|
1
|
+
import { describe, expect, it } from "@jest/globals";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
import * as core from "../src";
|
|
4
|
+
|
|
5
|
+
describe("exportSarif()", () => {
|
|
6
|
+
const badFlowPath = path.join(__dirname, "../../../example-flows/force-app/demo/DML_Statement_In_A_Loop.flow-meta.xml");
|
|
7
|
+
const goodFlowPath = path.join(__dirname, "../../../example-flows/force-app/testing/Duplicate_DML_Operation_Fixed.flow-meta.xml");
|
|
8
|
+
const config = {
|
|
9
|
+
ruleMode: "isolated",
|
|
10
|
+
rules: {
|
|
11
|
+
DMLStatementInLoop: { severity: "error" },
|
|
12
|
+
},
|
|
13
|
+
};
|
|
14
|
+
it("generates valid SARIF with real file path and line numbers", async () => {
|
|
15
|
+
const flows = await core.parse([badFlowPath]);
|
|
16
|
+
const results = core.scan(flows, config);
|
|
17
|
+
const sarif = core.exportSarif(results);
|
|
18
|
+
|
|
19
|
+
const json = JSON.parse(sarif);
|
|
20
|
+
// SARIF structure
|
|
21
|
+
expect(json.version).toBe("2.1.0");
|
|
22
|
+
expect(json.runs).toHaveLength(1);
|
|
23
|
+
expect(json.runs[0].tool.driver.name).toBe("Lightning Flow Scanner");
|
|
24
|
+
// Artifacts: real path (relative or absolute containing the substring)
|
|
25
|
+
const artifactUri = json.runs[0].artifacts[0].location.uri;
|
|
26
|
+
expect(artifactUri).toContain("force-app/demo/DML_Statement_In_A_Loop.flow-meta.xml");
|
|
27
|
+
// Results: one issue
|
|
28
|
+
const resultsArray = json.runs[0].results;
|
|
29
|
+
expect(resultsArray).toHaveLength(1);
|
|
30
|
+
expect(resultsArray[0].ruleId).toBe("dml-in-loop");
|
|
31
|
+
expect(resultsArray[0].level).toBe("warning");
|
|
32
|
+
// Location: has region
|
|
33
|
+
const region = resultsArray[0].locations[0].physicalLocation.region;
|
|
34
|
+
expect(region).toBeDefined();
|
|
35
|
+
expect(typeof region.startLine).toBe("number");
|
|
36
|
+
expect(typeof region.startColumn).toBe("number");
|
|
37
|
+
expect(region.startLine).toBeGreaterThanOrEqual(1);
|
|
38
|
+
expect(region.startColumn).toBeGreaterThanOrEqual(1);
|
|
39
|
+
// Message
|
|
40
|
+
expect(resultsArray[0].message.text).toContain("createNewCase");
|
|
41
|
+
});
|
|
42
|
+
it("generates empty results for fixed flow", async () => {
|
|
43
|
+
const flows = await core.parse([goodFlowPath]);
|
|
44
|
+
const results = core.scan(flows, config);
|
|
45
|
+
const sarif = core.exportSarif(results);
|
|
46
|
+
|
|
47
|
+
const json = JSON.parse(sarif);
|
|
48
|
+
expect(json.runs[0].results).toHaveLength(0);
|
|
49
|
+
});
|
|
50
|
+
it("falls back to virtual URI when no fsPath", async () => {
|
|
51
|
+
const flows = await core.parse([badFlowPath]);
|
|
52
|
+
// Simulate browser: remove fsPath and set virtual uri with subdir structure
|
|
53
|
+
flows[0].flow.fsPath = undefined;
|
|
54
|
+
flows[0].flow.uri = "flows/demo/DML_Statement_In_A_Loop.flow-meta.xml";
|
|
55
|
+
const results = core.scan(flows, config);
|
|
56
|
+
const sarif = core.exportSarif(results);
|
|
57
|
+
const json = JSON.parse(sarif);
|
|
58
|
+
|
|
59
|
+
const uri = json.runs[0].artifacts[0].location.uri;
|
|
60
|
+
expect(uri).toBe("flows/demo/DML_Statement_In_A_Loop.flow-meta.xml");
|
|
61
|
+
});
|
|
62
|
+
});
|
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import * as core from "../src";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
|
|
4
|
+
import { describe, it, expect } from "@jest/globals";
|
|
5
|
+
|
|
6
|
+
describe("FlowDescription", () => {
|
|
7
|
+
const example_uri = path.join(__dirname, "../../../example-flows/force-app/demo/Missing_Flow_Description.flow-meta.xml");
|
|
8
|
+
const fixed_uri = path.join(__dirname, "../../../example-flows/force-app/testing/Missing_Flow_Description_Fixed.flow-meta.xml");
|
|
9
|
+
|
|
10
|
+
it("should return a result when missing a description", async () => {
|
|
11
|
+
const flows = await core.parse([example_uri]);
|
|
12
|
+
const ruleConfig = {
|
|
13
|
+
ruleMode: "isolated",
|
|
14
|
+
rules: {
|
|
15
|
+
FlowDescription: {
|
|
16
|
+
severity: "error",
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
22
|
+
const occurringResults = results[0].ruleResults.filter((rule) => rule.occurs);
|
|
23
|
+
expect(occurringResults).toHaveLength(1);
|
|
24
|
+
expect(occurringResults[0].ruleName).toBe("FlowDescription");
|
|
25
|
+
});
|
|
26
|
+
|
|
27
|
+
it("should have no result when provided a description", async () => {
|
|
28
|
+
const flows = await core.parse([fixed_uri]);
|
|
29
|
+
const ruleConfig = {
|
|
30
|
+
ruleMode: "isolated",
|
|
31
|
+
rules: {
|
|
32
|
+
FlowDescription: {
|
|
33
|
+
severity: "error",
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
39
|
+
|
|
40
|
+
expect(results[0].ruleResults).toHaveLength(1);
|
|
41
|
+
expect(results[0].ruleResults[0].ruleName).toBe("FlowDescription");
|
|
42
|
+
expect(results[0].ruleResults[0].occurs).toBe(false);
|
|
43
|
+
});
|
|
44
|
+
});
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import * as core from "../src";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
import * as fs from "fs";
|
|
4
|
+
import * as os from "os";
|
|
5
|
+
|
|
6
|
+
import { describe, it, expect } from "@jest/globals";
|
|
7
|
+
|
|
8
|
+
describe("FlowDocumentation", () => {
|
|
9
|
+
const example_uri = path.join(__dirname, "../../../example-flows/force-app/demo/Invalid_API_Version.flow-meta.xml");
|
|
10
|
+
const fixed_uri = path.join(__dirname, "../../../example-flows/force-app/testing/Outdated_API_Version_Fixed.flow-meta.xml");
|
|
11
|
+
|
|
12
|
+
it("should generate markdown for a single flow with default options", async () => {
|
|
13
|
+
const parsed = await core.parse([example_uri]);
|
|
14
|
+
const md = core.exportDiagram(parsed);
|
|
15
|
+
|
|
16
|
+
expect(md).toContain("# Flow Documentation");
|
|
17
|
+
expect(md).toContain("## Invalid_API_Version");
|
|
18
|
+
expect(md).toContain("```mermaid");
|
|
19
|
+
expect(md).toMatch(/flowchart TB/); // Updated to match current Mermaid syntax
|
|
20
|
+
// Check no errors section since parse should succeed
|
|
21
|
+
expect(md).not.toContain("## Parse Errors");
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
it("should generate markdown with custom options", async () => {
|
|
25
|
+
const parsed = await core.parse([fixed_uri]);
|
|
26
|
+
const options = {
|
|
27
|
+
includeDetails: true,
|
|
28
|
+
includeMarkdownDocs: true,
|
|
29
|
+
collapsedDetails: true
|
|
30
|
+
};
|
|
31
|
+
const md = core.exportDiagram(parsed, options);
|
|
32
|
+
|
|
33
|
+
expect(md).toContain("# Flow Documentation");
|
|
34
|
+
expect(md).toContain("## Outdated_API_Version_Fixed");
|
|
35
|
+
expect(md).toContain("```mermaid");
|
|
36
|
+
// Assuming visualize with these options includes details like <details> tags
|
|
37
|
+
expect(md).toMatch(/<details>/);
|
|
38
|
+
expect(md).not.toContain("## Parse Errors");
|
|
39
|
+
});
|
|
40
|
+
|
|
41
|
+
it("should handle multiple flows", async () => {
|
|
42
|
+
const parsed = await core.parse([example_uri, fixed_uri]);
|
|
43
|
+
const md = core.exportDiagram(parsed);
|
|
44
|
+
|
|
45
|
+
expect(md).toContain("# Flow Documentation");
|
|
46
|
+
expect(md).toContain("## Invalid_API_Version");
|
|
47
|
+
expect(md).toContain("## Outdated_API_Version_Fixed");
|
|
48
|
+
expect(md).toContain("```mermaid");
|
|
49
|
+
expect(md).not.toContain("No valid flows found.");
|
|
50
|
+
});
|
|
51
|
+
|
|
52
|
+
it("should include parse errors if any", async () => {
|
|
53
|
+
const invalid_uri = path.join(__dirname, "non-existent-file.xml");
|
|
54
|
+
const parsed = await core.parse([example_uri, invalid_uri]);
|
|
55
|
+
const md = core.exportDiagram(parsed);
|
|
56
|
+
|
|
57
|
+
expect(md).toContain("# Flow Documentation");
|
|
58
|
+
expect(md).toContain("## Invalid_API_Version");
|
|
59
|
+
expect(md).toContain("## Parse Errors");
|
|
60
|
+
expect(md).toContain(`- ${invalid_uri}`);
|
|
61
|
+
expect(md).toContain("ENOENT"); // Part of file not found error
|
|
62
|
+
});
|
|
63
|
+
|
|
64
|
+
it("should handle no valid flows", async () => {
|
|
65
|
+
const invalid_uri = path.join(__dirname, "non-existent-file.xml");
|
|
66
|
+
const parsed = await core.parse([invalid_uri]);
|
|
67
|
+
const md = core.exportDiagram(parsed);
|
|
68
|
+
|
|
69
|
+
expect(md).toContain("# Flow Documentation");
|
|
70
|
+
expect(md).toContain("No valid flows found.");
|
|
71
|
+
expect(md).toContain("## Parse Errors");
|
|
72
|
+
expect(md).toContain(`- ${invalid_uri}`);
|
|
73
|
+
});
|
|
74
|
+
});
|
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
import * as core from "../src";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
import { describe, it, expect } from "@jest/globals";
|
|
4
|
+
|
|
5
|
+
describe("FlowName", () => {
|
|
6
|
+
const example_uri = path.join(__dirname, "../../../example-flows/force-app/demo/FlowNamingConvention.flow-meta.xml");
|
|
7
|
+
const fixed_uri = path.join(__dirname, "../../../example-flows/force-app/testing/Flow_Naming_Convention_Fixed.flow-meta.xml");
|
|
8
|
+
|
|
9
|
+
it("should have a result when not in line with conventions", async () => {
|
|
10
|
+
const flows = await core.parse([example_uri]);
|
|
11
|
+
const ruleConfig = {
|
|
12
|
+
ruleMode: "isolated",
|
|
13
|
+
rules: {
|
|
14
|
+
FlowName: {
|
|
15
|
+
severity: "error",
|
|
16
|
+
expression: "[A-Za-z0-9]+_[A-Za-z0-9]+",
|
|
17
|
+
},
|
|
18
|
+
},
|
|
19
|
+
};
|
|
20
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
21
|
+
expect(results[0].ruleResults).toHaveLength(1);
|
|
22
|
+
expect(results[0].ruleResults[0].ruleName).toBe("FlowName");
|
|
23
|
+
expect(results[0].ruleResults[0].occurs).toBe(true);
|
|
24
|
+
});
|
|
25
|
+
|
|
26
|
+
it("should have no result when defined as exception", async () => {
|
|
27
|
+
const flows = await core.parse([example_uri]);
|
|
28
|
+
const ruleConfig = {
|
|
29
|
+
ruleMode: "isolated" as const,
|
|
30
|
+
rules: {
|
|
31
|
+
FlowName: {
|
|
32
|
+
severity: "error",
|
|
33
|
+
expression: "[0-9]",
|
|
34
|
+
},
|
|
35
|
+
},
|
|
36
|
+
exceptions: {
|
|
37
|
+
FlowNamingConvention: { FlowName: ["FlowNamingConvention"] },
|
|
38
|
+
},
|
|
39
|
+
};
|
|
40
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
41
|
+
expect(results[0].ruleResults).toHaveLength(1);
|
|
42
|
+
expect(results[0].ruleResults[0].ruleName).toBe("FlowName");
|
|
43
|
+
expect(results[0].ruleResults[0].occurs).toBe(false);
|
|
44
|
+
});
|
|
45
|
+
|
|
46
|
+
it("should not have a result when in line with conventions", async () => {
|
|
47
|
+
const flows = await core.parse([fixed_uri]);
|
|
48
|
+
const ruleConfig = {
|
|
49
|
+
ruleMode: "isolated" as const,
|
|
50
|
+
rules: {
|
|
51
|
+
FlowName: {
|
|
52
|
+
severity: "error",
|
|
53
|
+
expression: "[A-Za-z0-9]+_[A-Za-z0-9]+",
|
|
54
|
+
},
|
|
55
|
+
},
|
|
56
|
+
};
|
|
57
|
+
const results: core.ScanResult[] = core.scan(flows, ruleConfig);
|
|
58
|
+
const occurringResults = results[0].ruleResults.filter((rule) => rule.occurs);
|
|
59
|
+
expect(occurringResults).toHaveLength(0);
|
|
60
|
+
});
|
|
61
|
+
});
|
|
@@ -0,0 +1,182 @@
|
|
|
1
|
+
import { ParsedFlow } from "../src/main/models/ParsedFlow";
|
|
2
|
+
import { RuleResult, Flow, scan, ScanResult } from "../src";
|
|
3
|
+
import { GetRecordAllFields } from "../src/main/rules/GetRecordAllFields";
|
|
4
|
+
|
|
5
|
+
import { describe, it, expect } from "@jest/globals";
|
|
6
|
+
|
|
7
|
+
describe("GetRecordAllFields", () => {
|
|
8
|
+
it("should be defined", () => {
|
|
9
|
+
expect(GetRecordAllFields).toBeDefined();
|
|
10
|
+
});
|
|
11
|
+
|
|
12
|
+
let rule: GetRecordAllFields;
|
|
13
|
+
beforeEach(() => {
|
|
14
|
+
rule = new GetRecordAllFields();
|
|
15
|
+
});
|
|
16
|
+
|
|
17
|
+
describe("e2e", () => {
|
|
18
|
+
it("should be empty when no Get Record elements are present", () => {
|
|
19
|
+
const config = {
|
|
20
|
+
ruleMode: "isolated",
|
|
21
|
+
rules: {
|
|
22
|
+
GetRecordAllFields: {
|
|
23
|
+
severity: "error",
|
|
24
|
+
},
|
|
25
|
+
},
|
|
26
|
+
};
|
|
27
|
+
|
|
28
|
+
const flows: ParsedFlow[] = [
|
|
29
|
+
{
|
|
30
|
+
flow: {
|
|
31
|
+
type: "AutoLaunchedFlow",
|
|
32
|
+
},
|
|
33
|
+
} as Partial<ParsedFlow> as ParsedFlow,
|
|
34
|
+
];
|
|
35
|
+
|
|
36
|
+
const results: ScanResult[] = scan(flows, config);
|
|
37
|
+
const scanResults = results.pop();
|
|
38
|
+
const ruleResults = scanResults?.ruleResults.filter((rule) => {
|
|
39
|
+
return rule.ruleDefinition.name === "GetRecordAllFields" && rule.occurs;
|
|
40
|
+
});
|
|
41
|
+
expect(ruleResults).toHaveLength(0);
|
|
42
|
+
});
|
|
43
|
+
|
|
44
|
+
it("should error when getRecord element has storeOutputAutomatically", () => {
|
|
45
|
+
const config = {
|
|
46
|
+
ruleMode: "isolated",
|
|
47
|
+
rules: {
|
|
48
|
+
GetRecordAllFields: {
|
|
49
|
+
severity: "error",
|
|
50
|
+
},
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
|
|
54
|
+
const flows: ParsedFlow[] = [
|
|
55
|
+
{
|
|
56
|
+
flow: {
|
|
57
|
+
type: "AutoLaunchedFlow",
|
|
58
|
+
elements: [
|
|
59
|
+
{
|
|
60
|
+
name: "GetRecord",
|
|
61
|
+
subtype: "recordLookups",
|
|
62
|
+
metaType: "node",
|
|
63
|
+
element: {
|
|
64
|
+
storeOutputAutomatically: true,
|
|
65
|
+
},
|
|
66
|
+
},
|
|
67
|
+
],
|
|
68
|
+
},
|
|
69
|
+
} as Partial<ParsedFlow> as ParsedFlow,
|
|
70
|
+
];
|
|
71
|
+
|
|
72
|
+
const results: ScanResult[] = scan(flows, config);
|
|
73
|
+
const scanResults = results.pop();
|
|
74
|
+
const ruleResults = scanResults?.ruleResults.filter((rule) => {
|
|
75
|
+
return rule.ruleDefinition.name === "GetRecordAllFields" && rule.occurs;
|
|
76
|
+
});
|
|
77
|
+
expect(ruleResults).toHaveLength(1);
|
|
78
|
+
});
|
|
79
|
+
});
|
|
80
|
+
|
|
81
|
+
describe("empty unit", () => {
|
|
82
|
+
it("should be empty results when no Get Record elements are present", () => {
|
|
83
|
+
const flow: Flow = {
|
|
84
|
+
type: "AutoLaunchedFlow",
|
|
85
|
+
} as Partial<Flow> as Flow;
|
|
86
|
+
const result: RuleResult = rule.execute(flow);
|
|
87
|
+
expect(result.occurs).toBeFalsy();
|
|
88
|
+
});
|
|
89
|
+
|
|
90
|
+
it("should be empty when no qualified node", () => {
|
|
91
|
+
const flow: Flow = {
|
|
92
|
+
type: "AutoLaunchedFlow",
|
|
93
|
+
elements: [
|
|
94
|
+
{
|
|
95
|
+
name: "GetRecord",
|
|
96
|
+
subtype: "recordLookups",
|
|
97
|
+
metaType: "node",
|
|
98
|
+
element: "attribute",
|
|
99
|
+
},
|
|
100
|
+
],
|
|
101
|
+
} as Partial<Flow> as Flow;
|
|
102
|
+
const result: RuleResult = rule.execute(flow);
|
|
103
|
+
expect(result.occurs).toBeFalsy();
|
|
104
|
+
});
|
|
105
|
+
|
|
106
|
+
it("should be empty when outputReference and queriedFields are present", () => {
|
|
107
|
+
const flow: Flow = {
|
|
108
|
+
type: "AutoLaunchedFlow",
|
|
109
|
+
elements: [
|
|
110
|
+
{
|
|
111
|
+
name: "GetRecord",
|
|
112
|
+
subtype: "recordLookups",
|
|
113
|
+
metaType: "node",
|
|
114
|
+
element: {
|
|
115
|
+
queriedFields: ["Id", "AccountId"],
|
|
116
|
+
outputReference: "outputReference",
|
|
117
|
+
},
|
|
118
|
+
},
|
|
119
|
+
],
|
|
120
|
+
} as Partial<Flow> as Flow;
|
|
121
|
+
const result: RuleResult = rule.execute(flow);
|
|
122
|
+
expect(result.occurs).toBeFalsy();
|
|
123
|
+
});
|
|
124
|
+
|
|
125
|
+
it("should be empty when outputAssignments are present", () => {
|
|
126
|
+
const flow: Flow = {
|
|
127
|
+
type: "AutoLaunchedFlow",
|
|
128
|
+
elements: [
|
|
129
|
+
{
|
|
130
|
+
name: "GetRecord",
|
|
131
|
+
subtype: "recordLookups",
|
|
132
|
+
metaType: "node",
|
|
133
|
+
element: {
|
|
134
|
+
outputAssignments: [{ assignToReference: "testVar", field: "AccountId" }],
|
|
135
|
+
},
|
|
136
|
+
},
|
|
137
|
+
],
|
|
138
|
+
} as Partial<Flow> as Flow;
|
|
139
|
+
const result: RuleResult = rule.execute(flow);
|
|
140
|
+
expect(result.occurs).toBeFalsy();
|
|
141
|
+
});
|
|
142
|
+
|
|
143
|
+
it("should be empty when storeOutputAutomatically and queriedFields", () => {
|
|
144
|
+
const flow: Flow = {
|
|
145
|
+
type: "AutoLaunchedFlow",
|
|
146
|
+
elements: [
|
|
147
|
+
{
|
|
148
|
+
name: "GetRecord",
|
|
149
|
+
subtype: "recordLookups",
|
|
150
|
+
metaType: "node",
|
|
151
|
+
element: {
|
|
152
|
+
storeOutputAutomatically: true,
|
|
153
|
+
queriedFields: ["Id", "AccountId"],
|
|
154
|
+
},
|
|
155
|
+
},
|
|
156
|
+
],
|
|
157
|
+
} as Partial<Flow> as Flow;
|
|
158
|
+
const result: RuleResult = rule.execute(flow);
|
|
159
|
+
expect(result.occurs).toBeFalsy();
|
|
160
|
+
});
|
|
161
|
+
});
|
|
162
|
+
|
|
163
|
+
describe("error unit", () => {
|
|
164
|
+
it("should error when Get Record element has storeOutputAutomatically and no queriedFields", () => {
|
|
165
|
+
const flow: Flow = {
|
|
166
|
+
type: "AutoLaunchedFlow",
|
|
167
|
+
elements: [
|
|
168
|
+
{
|
|
169
|
+
name: "GetRecord",
|
|
170
|
+
subtype: "recordLookups",
|
|
171
|
+
metaType: "node",
|
|
172
|
+
element: {
|
|
173
|
+
storeOutputAutomatically: true,
|
|
174
|
+
},
|
|
175
|
+
},
|
|
176
|
+
],
|
|
177
|
+
} as Partial<Flow> as Flow;
|
|
178
|
+
const result: RuleResult = rule.execute(flow);
|
|
179
|
+
expect(result.occurs).toBe(true);
|
|
180
|
+
});
|
|
181
|
+
});
|
|
182
|
+
});
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as core from "../src";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
|
|
4
|
+
import { describe, it, expect } from "@jest/globals";
|
|
5
|
+
|
|
6
|
+
describe("HardcodedId", () => {
|
|
7
|
+
const example_uri = path.join(__dirname, "../../../example-flows/force-app/demo/Hardcoded_Id.flow-meta.xml");
|
|
8
|
+
|
|
9
|
+
it("there should be one result for the rule HardcodedIds", async () => {
|
|
10
|
+
const flows = await core.parse([example_uri]);
|
|
11
|
+
const results: core.ScanResult[] = core.scan(flows);
|
|
12
|
+
const occurringResults = results[0].ruleResults.filter((rule) => rule.occurs);
|
|
13
|
+
expect(occurringResults).toHaveLength(1);
|
|
14
|
+
expect(occurringResults[0].ruleName).toBe("HardcodedId");
|
|
15
|
+
});
|
|
16
|
+
});
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import * as core from "../src";
|
|
2
|
+
import * as path from "path";
|
|
3
|
+
|
|
4
|
+
import { describe, it, expect } from "@jest/globals";
|
|
5
|
+
|
|
6
|
+
describe("HardcodedSecret", () => {
|
|
7
|
+
const example_uri = path.join(__dirname, "../../../example-flows/force-app/testing/Hardcoded_Secret.flow-meta.xml");
|
|
8
|
+
|
|
9
|
+
it("should not be available without betaMode", async () => {
|
|
10
|
+
const flows = await core.parse([example_uri]);
|
|
11
|
+
const results: core.ScanResult[] = core.scan(flows);
|
|
12
|
+
const ruleNames = results[0].ruleResults.map((r) => r.ruleName);
|
|
13
|
+
expect(ruleNames).not.toContain("HardcodedSecret");
|
|
14
|
+
});
|
|
15
|
+
|
|
16
|
+
it("should be available with betaMode enabled", async () => {
|
|
17
|
+
const flows = await core.parse([example_uri]);
|
|
18
|
+
const results: core.ScanResult[] = core.scan(flows, { betaMode: true });
|
|
19
|
+
const ruleNames = results[0].ruleResults.map((r) => r.ruleName);
|
|
20
|
+
expect(ruleNames).toContain("HardcodedSecret");
|
|
21
|
+
});
|
|
22
|
+
|
|
23
|
+
it("should detect Stripe secret key in flow variable", async () => {
|
|
24
|
+
const flows = await core.parse([example_uri]);
|
|
25
|
+
const results: core.ScanResult[] = core.scan(flows, { betaMode: true });
|
|
26
|
+
const secretRule = results[0].ruleResults.find((r) => r.ruleName === "HardcodedSecret");
|
|
27
|
+
|
|
28
|
+
expect(secretRule).toBeDefined();
|
|
29
|
+
expect(secretRule!.occurs).toBe(true);
|
|
30
|
+
expect(secretRule!.details.length).toBeGreaterThan(0);
|
|
31
|
+
});
|
|
32
|
+
});
|