@dataparade/cli 0.0.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/LICENSE +674 -0
- package/README.md +592 -0
- package/dist/bin/cli.d.ts +2 -0
- package/dist/bin/cli.js +7 -0
- package/dist/bin/load-env.d.ts +2 -0
- package/dist/bin/load-env.js +4 -0
- package/dist/src/ai-enrichment/agent-orchestrator.d.ts +28 -0
- package/dist/src/ai-enrichment/agent-orchestrator.js +476 -0
- package/dist/src/ai-enrichment/agents/index.d.ts +4 -0
- package/dist/src/ai-enrichment/agents/index.js +50 -0
- package/dist/src/ai-enrichment/candidate-selector.d.ts +10 -0
- package/dist/src/ai-enrichment/candidate-selector.js +158 -0
- package/dist/src/ai-enrichment/fallbacks.d.ts +6 -0
- package/dist/src/ai-enrichment/fallbacks.js +762 -0
- package/dist/src/ai-enrichment/index.d.ts +15 -0
- package/dist/src/ai-enrichment/index.js +31 -0
- package/dist/src/ai-enrichment/merge-rules.d.ts +12 -0
- package/dist/src/ai-enrichment/merge-rules.js +321 -0
- package/dist/src/ai-enrichment/non-pii-signal-rules.d.ts +10 -0
- package/dist/src/ai-enrichment/non-pii-signal-rules.js +72 -0
- package/dist/src/ai-enrichment/openai-proposals-response.schema.d.ts +94 -0
- package/dist/src/ai-enrichment/openai-proposals-response.schema.js +82 -0
- package/dist/src/ai-enrichment/pii-signal-rules.d.ts +8 -0
- package/dist/src/ai-enrichment/pii-signal-rules.js +68 -0
- package/dist/src/ai-enrichment/pipeline.d.ts +2 -0
- package/dist/src/ai-enrichment/pipeline.js +48 -0
- package/dist/src/ai-enrichment/planner.d.ts +2 -0
- package/dist/src/ai-enrichment/planner.js +60 -0
- package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.d.ts +12 -0
- package/dist/src/ai-enrichment/prompts/provider-enrichment-prompts.js +45 -0
- package/dist/src/ai-enrichment/provider-prompt.d.ts +32 -0
- package/dist/src/ai-enrichment/provider-prompt.js +222 -0
- package/dist/src/ai-enrichment/provider-topology-rules.d.ts +52 -0
- package/dist/src/ai-enrichment/provider-topology-rules.js +190 -0
- package/dist/src/ai-enrichment/provider-topology-shared.d.ts +48 -0
- package/dist/src/ai-enrichment/provider-topology-shared.js +329 -0
- package/dist/src/ai-enrichment/providers/endpoint-resolution.d.ts +13 -0
- package/dist/src/ai-enrichment/providers/endpoint-resolution.js +41 -0
- package/dist/src/ai-enrichment/providers/families/chat-completions-family.d.ts +13 -0
- package/dist/src/ai-enrichment/providers/families/chat-completions-family.js +181 -0
- package/dist/src/ai-enrichment/providers/families/generate-content-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/generate-content-family.js +93 -0
- package/dist/src/ai-enrichment/providers/families/messages-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/messages-family.js +86 -0
- package/dist/src/ai-enrichment/providers/families/ollama-generate-family.d.ts +10 -0
- package/dist/src/ai-enrichment/providers/families/ollama-generate-family.js +69 -0
- package/dist/src/ai-enrichment/providers/fetch-with-timeout.d.ts +2 -0
- package/dist/src/ai-enrichment/providers/fetch-with-timeout.js +22 -0
- package/dist/src/ai-enrichment/providers/index.d.ts +16 -0
- package/dist/src/ai-enrichment/providers/index.js +40 -0
- package/dist/src/ai-enrichment/providers/mock.d.ts +5 -0
- package/dist/src/ai-enrichment/providers/mock.js +12 -0
- package/dist/src/ai-enrichment/providers/platform-proxy-provider.d.ts +20 -0
- package/dist/src/ai-enrichment/providers/platform-proxy-provider.js +116 -0
- package/dist/src/ai-enrichment/providers/presets.d.ts +14 -0
- package/dist/src/ai-enrichment/providers/presets.js +50 -0
- package/dist/src/ai-enrichment/providers/provider-contract.d.ts +20 -0
- package/dist/src/ai-enrichment/providers/provider-contract.js +703 -0
- package/dist/src/ai-enrichment/providers/provider-json-parse.d.ts +23 -0
- package/dist/src/ai-enrichment/providers/provider-json-parse.js +96 -0
- package/dist/src/ai-enrichment/providers/provider-output-token-budget.d.ts +5 -0
- package/dist/src/ai-enrichment/providers/provider-output-token-budget.js +11 -0
- package/dist/src/ai-enrichment/providers/provider-pricing.d.ts +7 -0
- package/dist/src/ai-enrichment/providers/provider-pricing.js +32 -0
- package/dist/src/ai-enrichment/providers/provider-runtime.d.ts +9 -0
- package/dist/src/ai-enrichment/providers/provider-runtime.js +54 -0
- package/dist/src/ai-enrichment/providers/resolve-provider.d.ts +27 -0
- package/dist/src/ai-enrichment/providers/resolve-provider.js +41 -0
- package/dist/src/ai-enrichment/providers/types.d.ts +24 -0
- package/dist/src/ai-enrichment/providers/types.js +2 -0
- package/dist/src/ai-enrichment/scan-paths.d.ts +9 -0
- package/dist/src/ai-enrichment/scan-paths.js +28 -0
- package/dist/src/ai-enrichment/sensitive-paths.d.ts +5 -0
- package/dist/src/ai-enrichment/sensitive-paths.js +10 -0
- package/dist/src/ai-enrichment/third-party-data-flow.d.ts +27 -0
- package/dist/src/ai-enrichment/third-party-data-flow.js +518 -0
- package/dist/src/ai-enrichment/third-party-evidence.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-evidence.js +426 -0
- package/dist/src/ai-enrichment/third-party-property-matrix.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-property-matrix.js +52 -0
- package/dist/src/ai-enrichment/third-party-subtype.d.ts +14 -0
- package/dist/src/ai-enrichment/third-party-subtype.js +166 -0
- package/dist/src/ai-enrichment/tools/index.d.ts +39 -0
- package/dist/src/ai-enrichment/tools/index.js +121 -0
- package/dist/src/ai-enrichment/types.d.ts +170 -0
- package/dist/src/ai-enrichment/types.js +12 -0
- package/dist/src/analyzers/python/dependency-manifests.d.ts +8 -0
- package/dist/src/analyzers/python/dependency-manifests.js +131 -0
- package/dist/src/analyzers/python/detector.d.ts +3 -0
- package/dist/src/analyzers/python/detector.js +22 -0
- package/dist/src/analyzers/python/index.d.ts +2 -0
- package/dist/src/analyzers/python/index.js +11 -0
- package/dist/src/analyzers/python/manifest-parsers.d.ts +3 -0
- package/dist/src/analyzers/python/manifest-parsers.js +134 -0
- package/dist/src/analyzers/python/parser.d.ts +26 -0
- package/dist/src/analyzers/python/parser.js +187 -0
- package/dist/src/analyzers/python/patterns.d.ts +7 -0
- package/dist/src/analyzers/python/patterns.js +106 -0
- package/dist/src/analyzers/python/python-detection-config.d.ts +75 -0
- package/dist/src/analyzers/python/python-detection-config.js +148 -0
- package/dist/src/analyzers/registry.d.ts +13 -0
- package/dist/src/analyzers/registry.js +60 -0
- package/dist/src/analyzers/shared/manifest-budgets.d.ts +19 -0
- package/dist/src/analyzers/shared/manifest-budgets.js +21 -0
- package/dist/src/analyzers/shared/manifest-fs.d.ts +13 -0
- package/dist/src/analyzers/shared/manifest-fs.js +138 -0
- package/dist/src/analyzers/shared/property-inference.d.ts +8 -0
- package/dist/src/analyzers/shared/property-inference.js +165 -0
- package/dist/src/analyzers/terraform/detector.d.ts +10 -0
- package/dist/src/analyzers/terraform/detector.js +198 -0
- package/dist/src/analyzers/terraform/index.d.ts +2 -0
- package/dist/src/analyzers/terraform/index.js +13 -0
- package/dist/src/analyzers/terraform/parser.d.ts +29 -0
- package/dist/src/analyzers/terraform/parser.js +202 -0
- package/dist/src/analyzers/terraform/terraform-detection-config.d.ts +48 -0
- package/dist/src/analyzers/terraform/terraform-detection-config.js +218 -0
- package/dist/src/analyzers/terraform/terraform-exec.d.ts +11 -0
- package/dist/src/analyzers/terraform/terraform-exec.js +35 -0
- package/dist/src/analyzers/terraform/terraform-module-manifest.d.ts +19 -0
- package/dist/src/analyzers/terraform/terraform-module-manifest.js +75 -0
- package/dist/src/analyzers/terraform/terraform-show-json.d.ts +15 -0
- package/dist/src/analyzers/terraform/terraform-show-json.js +188 -0
- package/dist/src/analyzers/terraform/terraform-utility-resource.d.ts +12 -0
- package/dist/src/analyzers/terraform/terraform-utility-resource.js +30 -0
- package/dist/src/analyzers/types.d.ts +5 -0
- package/dist/src/analyzers/types.js +2 -0
- package/dist/src/analyzers/typescript/actor-detection.d.ts +4 -0
- package/dist/src/analyzers/typescript/actor-detection.js +15 -0
- package/dist/src/analyzers/typescript/dependency-manifests.d.ts +9 -0
- package/dist/src/analyzers/typescript/dependency-manifests.js +131 -0
- package/dist/src/analyzers/typescript/detector.d.ts +3 -0
- package/dist/src/analyzers/typescript/detector.js +23 -0
- package/dist/src/analyzers/typescript/index.d.ts +2 -0
- package/dist/src/analyzers/typescript/index.js +11 -0
- package/dist/src/analyzers/typescript/manifest-parsers.d.ts +1 -0
- package/dist/src/analyzers/typescript/manifest-parsers.js +30 -0
- package/dist/src/analyzers/typescript/parser.d.ts +44 -0
- package/dist/src/analyzers/typescript/parser.js +287 -0
- package/dist/src/analyzers/typescript/third-party-detection.d.ts +4 -0
- package/dist/src/analyzers/typescript/third-party-detection.js +16 -0
- package/dist/src/analyzers/typescript/typescript-detection-config.d.ts +68 -0
- package/dist/src/analyzers/typescript/typescript-detection-config.js +171 -0
- package/dist/src/analyzers/typescript/typescript-detection.d.ts +10 -0
- package/dist/src/analyzers/typescript/typescript-detection.js +57 -0
- package/dist/src/classifier/application-injection.d.ts +12 -0
- package/dist/src/classifier/application-injection.js +335 -0
- package/dist/src/classifier/classify.d.ts +3 -0
- package/dist/src/classifier/classify.js +15 -0
- package/dist/src/classifier/component-factory.d.ts +3 -0
- package/dist/src/classifier/component-factory.js +488 -0
- package/dist/src/classifier/config.d.ts +38 -0
- package/dist/src/classifier/config.js +260 -0
- package/dist/src/classifier/enhance-defaults.d.ts +28 -0
- package/dist/src/classifier/enhance-defaults.js +369 -0
- package/dist/src/classifier/enhance.d.ts +13 -0
- package/dist/src/classifier/enhance.js +295 -0
- package/dist/src/classifier/external-url-third-party.d.ts +26 -0
- package/dist/src/classifier/external-url-third-party.js +195 -0
- package/dist/src/classifier/grouping.d.ts +1 -0
- package/dist/src/classifier/grouping.js +2 -0
- package/dist/src/classifier/main-application-selection.d.ts +41 -0
- package/dist/src/classifier/main-application-selection.js +222 -0
- package/dist/src/classifier/naming.d.ts +4 -0
- package/dist/src/classifier/naming.js +78 -0
- package/dist/src/classifier/postprocessing.d.ts +12 -0
- package/dist/src/classifier/postprocessing.js +510 -0
- package/dist/src/classifier/sectioning.d.ts +5 -0
- package/dist/src/classifier/sectioning.js +60 -0
- package/dist/src/classifier/terraform-provider-hub.d.ts +6 -0
- package/dist/src/classifier/terraform-provider-hub.js +38 -0
- package/dist/src/cli.d.ts +2 -0
- package/dist/src/cli.js +498 -0
- package/dist/src/config/actor-detection-config.d.ts +21 -0
- package/dist/src/config/actor-detection-config.js +97 -0
- package/dist/src/config/env.d.ts +2 -0
- package/dist/src/config/env.js +75 -0
- package/dist/src/config/file.d.ts +6 -0
- package/dist/src/config/file.js +74 -0
- package/dist/src/config/inference-scope.d.ts +2 -0
- package/dist/src/config/inference-scope.js +15 -0
- package/dist/src/config/load-cli-env.d.ts +1 -0
- package/dist/src/config/load-cli-env.js +54 -0
- package/dist/src/config/normalize-ai-provider.d.ts +5 -0
- package/dist/src/config/normalize-ai-provider.js +18 -0
- package/dist/src/config/property-detection-config.d.ts +27 -0
- package/dist/src/config/property-detection-config.js +355 -0
- package/dist/src/config/redact.d.ts +3 -0
- package/dist/src/config/redact.js +14 -0
- package/dist/src/config/resolve.d.ts +15 -0
- package/dist/src/config/resolve.js +361 -0
- package/dist/src/config/scan-env.d.ts +7 -0
- package/dist/src/config/scan-env.js +38 -0
- package/dist/src/config/third-party-detection-config.d.ts +25 -0
- package/dist/src/config/third-party-detection-config.js +97 -0
- package/dist/src/config/types.d.ts +106 -0
- package/dist/src/config/types.js +2 -0
- package/dist/src/config/validate-scan-ai.d.ts +3 -0
- package/dist/src/config/validate-scan-ai.js +33 -0
- package/dist/src/core/pipeline/ai-orchestrator-options.d.ts +6 -0
- package/dist/src/core/pipeline/ai-orchestrator-options.js +46 -0
- package/dist/src/core/pipeline/classifier-phase.d.ts +7 -0
- package/dist/src/core/pipeline/classifier-phase.js +78 -0
- package/dist/src/core/pipeline/dataflow-phase.d.ts +7 -0
- package/dist/src/core/pipeline/dataflow-phase.js +10 -0
- package/dist/src/core/pipeline/diagram-layout/app-section-layout.d.ts +7 -0
- package/dist/src/core/pipeline/diagram-layout/app-section-layout.js +74 -0
- package/dist/src/core/pipeline/diagram-layout/constants.d.ts +11 -0
- package/dist/src/core/pipeline/diagram-layout/constants.js +14 -0
- package/dist/src/core/pipeline/diagram-layout/edge-handles.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/edge-handles.js +26 -0
- package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/managed-provider-layout.js +40 -0
- package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.d.ts +6 -0
- package/dist/src/core/pipeline/diagram-layout/minimal-terraform-layout.js +53 -0
- package/dist/src/core/pipeline/diagram-layout/section-helpers.d.ts +30 -0
- package/dist/src/core/pipeline/diagram-layout/section-helpers.js +62 -0
- package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.d.ts +3 -0
- package/dist/src/core/pipeline/diagram-layout/terraform-lane-layout.js +109 -0
- package/dist/src/core/pipeline/diagram-layout/types.d.ts +2 -0
- package/dist/src/core/pipeline/diagram-layout/types.js +2 -0
- package/dist/src/core/pipeline/graph-mapping.d.ts +6 -0
- package/dist/src/core/pipeline/graph-mapping.js +308 -0
- package/dist/src/core/pipeline/mixed-app-terraform-scan.d.ts +13 -0
- package/dist/src/core/pipeline/mixed-app-terraform-scan.js +81 -0
- package/dist/src/core/pipeline/orchestrator-result.d.ts +6 -0
- package/dist/src/core/pipeline/orchestrator-result.js +2 -0
- package/dist/src/core/pipeline/orchestrator.d.ts +26 -0
- package/dist/src/core/pipeline/orchestrator.js +79 -0
- package/dist/src/core/pipeline/resolve-path-under-scan-root.d.ts +7 -0
- package/dist/src/core/pipeline/resolve-path-under-scan-root.js +55 -0
- package/dist/src/core/pipeline/scan-pipeline.d.ts +6 -0
- package/dist/src/core/pipeline/scan-pipeline.js +364 -0
- package/dist/src/core/pipeline/sorting.d.ts +3 -0
- package/dist/src/core/pipeline/sorting.js +48 -0
- package/dist/src/core/pipeline/stable-component-ids.d.ts +15 -0
- package/dist/src/core/pipeline/stable-component-ids.js +68 -0
- package/dist/src/core/pipeline/structural-scan.d.ts +19 -0
- package/dist/src/core/pipeline/structural-scan.js +304 -0
- package/dist/src/core/pipeline/terraform-flow-utils.d.ts +6 -0
- package/dist/src/core/pipeline/terraform-flow-utils.js +32 -0
- package/dist/src/core/pipeline/terraform-minimal-services.d.ts +31 -0
- package/dist/src/core/pipeline/terraform-minimal-services.js +225 -0
- package/dist/src/core/schema/dataflow-wrapper.schema.d.ts +83 -0
- package/dist/src/core/schema/dataflow-wrapper.schema.js +40 -0
- package/dist/src/core/schema/diagram-graph.schema.d.ts +93 -0
- package/dist/src/core/schema/diagram-graph.schema.js +55 -0
- package/dist/src/core/schema/index.d.ts +4 -0
- package/dist/src/core/schema/index.js +20 -0
- package/dist/src/core/schema/scan-config.schema.d.ts +66 -0
- package/dist/src/core/schema/scan-config.schema.js +67 -0
- package/dist/src/core/schema/scan-result.schema.d.ts +450 -0
- package/dist/src/core/schema/scan-result.schema.js +236 -0
- package/dist/src/core/sectioning/discover-service-sections.d.ts +80 -0
- package/dist/src/core/sectioning/discover-service-sections.js +468 -0
- package/dist/src/core/sectioning/section-runtime.d.ts +21 -0
- package/dist/src/core/sectioning/section-runtime.js +148 -0
- package/dist/src/core/terraform/component-predicates.d.ts +13 -0
- package/dist/src/core/terraform/component-predicates.js +71 -0
- package/dist/src/core/types/component.d.ts +18 -0
- package/dist/src/core/types/component.js +2 -0
- package/dist/src/core/types/config.d.ts +57 -0
- package/dist/src/core/types/config.js +2 -0
- package/dist/src/core/types/data-flow.d.ts +24 -0
- package/dist/src/core/types/data-flow.js +2 -0
- package/dist/src/core/types/detection.d.ts +12 -0
- package/dist/src/core/types/detection.js +19 -0
- package/dist/src/core/types/file.d.ts +14 -0
- package/dist/src/core/types/file.js +2 -0
- package/dist/src/core/types/index.d.ts +7 -0
- package/dist/src/core/types/index.js +23 -0
- package/dist/src/core/types/progress.d.ts +9 -0
- package/dist/src/core/types/progress.js +2 -0
- package/dist/src/core/types/result.d.ts +140 -0
- package/dist/src/core/types/result.js +2 -0
- package/dist/src/data-flow/application-hub.d.ts +7 -0
- package/dist/src/data-flow/application-hub.js +88 -0
- package/dist/src/data-flow/dedupe.d.ts +7 -0
- package/dist/src/data-flow/dedupe.js +92 -0
- package/dist/src/data-flow/detect.d.ts +16 -0
- package/dist/src/data-flow/detect.js +203 -0
- package/dist/src/data-flow/detector.d.ts +15 -0
- package/dist/src/data-flow/detector.js +18 -0
- package/dist/src/data-flow/drop-cross-section-flows.d.ts +8 -0
- package/dist/src/data-flow/drop-cross-section-flows.js +32 -0
- package/dist/src/data-flow/ensure-actor-flow.d.ts +16 -0
- package/dist/src/data-flow/ensure-actor-flow.js +101 -0
- package/dist/src/data-flow/ensure-manifest-declared-flows.d.ts +14 -0
- package/dist/src/data-flow/ensure-manifest-declared-flows.js +76 -0
- package/dist/src/data-flow/ensure-section-api-flows.d.ts +6 -0
- package/dist/src/data-flow/ensure-section-api-flows.js +57 -0
- package/dist/src/data-flow/flow-builder.d.ts +5 -0
- package/dist/src/data-flow/flow-builder.js +80 -0
- package/dist/src/data-flow/import-graph.d.ts +10 -0
- package/dist/src/data-flow/import-graph.js +147 -0
- package/dist/src/data-flow/index.d.ts +8 -0
- package/dist/src/data-flow/index.js +20 -0
- package/dist/src/data-flow/internal-fetch.d.ts +8 -0
- package/dist/src/data-flow/internal-fetch.js +209 -0
- package/dist/src/data-flow/postprocess.d.ts +9 -0
- package/dist/src/data-flow/postprocess.js +63 -0
- package/dist/src/data-flow/rewire.d.ts +10 -0
- package/dist/src/data-flow/rewire.js +93 -0
- package/dist/src/data-flow/source-attribution.d.ts +8 -0
- package/dist/src/data-flow/source-attribution.js +131 -0
- package/dist/src/data-flow/source-resolution.d.ts +13 -0
- package/dist/src/data-flow/source-resolution.js +61 -0
- package/dist/src/data-flow/target-matching.d.ts +21 -0
- package/dist/src/data-flow/target-matching.js +253 -0
- package/dist/src/data-flow/terraform-flows.d.ts +32 -0
- package/dist/src/data-flow/terraform-flows.js +170 -0
- package/dist/src/evals/metrics.d.ts +18 -0
- package/dist/src/evals/metrics.js +58 -0
- package/dist/src/evals/run-model-matrix.d.ts +1 -0
- package/dist/src/evals/run-model-matrix.js +68 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/src/index.js +20 -0
- package/dist/src/ingest/file-system.d.ts +17 -0
- package/dist/src/ingest/file-system.js +239 -0
- package/dist/src/ingest/gitignore.d.ts +12 -0
- package/dist/src/ingest/gitignore.js +127 -0
- package/dist/src/ingest/sensitive-paths.d.ts +2 -0
- package/dist/src/ingest/sensitive-paths.js +8 -0
- package/dist/src/observability/scan-sentry.d.ts +20 -0
- package/dist/src/observability/scan-sentry.js +133 -0
- package/dist/src/output/json.d.ts +51 -0
- package/dist/src/output/json.js +59 -0
- package/dist/src/patterns/config.d.ts +22 -0
- package/dist/src/patterns/config.js +119 -0
- package/dist/src/patterns/detectors/helpers.d.ts +19 -0
- package/dist/src/patterns/detectors/helpers.js +68 -0
- package/dist/src/patterns/detectors/python.d.ts +8 -0
- package/dist/src/patterns/detectors/python.js +412 -0
- package/dist/src/patterns/detectors/typescript.d.ts +8 -0
- package/dist/src/patterns/detectors/typescript.js +328 -0
- package/dist/src/patterns/engine.d.ts +40 -0
- package/dist/src/patterns/engine.js +111 -0
- package/dist/src/patterns/flow-source-patterns.d.ts +6 -0
- package/dist/src/patterns/flow-source-patterns.js +39 -0
- package/dist/src/patterns/frontend-frameworks.d.ts +4 -0
- package/dist/src/patterns/frontend-frameworks.js +25 -0
- package/dist/src/patterns/scan-exclusions.d.ts +14 -0
- package/dist/src/patterns/scan-exclusions.js +76 -0
- package/dist/src/platform-api/dataparade-api-base-url.d.ts +8 -0
- package/dist/src/platform-api/dataparade-api-base-url.js +17 -0
- package/dist/src/platform-api/estimate-scan-footprint.d.ts +8 -0
- package/dist/src/platform-api/estimate-scan-footprint.js +120 -0
- package/dist/src/platform-api/scan-quota-client.d.ts +28 -0
- package/dist/src/platform-api/scan-quota-client.js +79 -0
- package/dist/src/tracing/langsmith-tracing.d.ts +37 -0
- package/dist/src/tracing/langsmith-tracing.js +171 -0
- package/dist/tests/cli/cli.spec.d.ts +1 -0
- package/dist/tests/cli/cli.spec.js +87 -0
- package/dist/tests/fixtures/e2e-ts-sample/db-client-import.d.ts +2 -0
- package/dist/tests/fixtures/e2e-ts-sample/db-client-import.js +8 -0
- package/dist/tests/fixtures/e2e-ts-sample/db.d.ts +3 -0
- package/dist/tests/fixtures/e2e-ts-sample/db.js +7 -0
- package/dist/tests/fixtures/e2e-ts-sample/external-api.d.ts +1 -0
- package/dist/tests/fixtures/e2e-ts-sample/external-api.js +18 -0
- package/dist/tests/fixtures/e2e-ts-sample/pg-client.d.ts +3 -0
- package/dist/tests/fixtures/e2e-ts-sample/pg-client.js +7 -0
- package/dist/tests/fixtures/e2e-ts-sample/server.d.ts +14 -0
- package/dist/tests/fixtures/e2e-ts-sample/server.js +4 -0
- package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.d.ts +1 -0
- package/dist/tests/fixtures/e2e-ts-sentry-route-env/server.js +24 -0
- package/dist/tests/fixtures/ingest-basic/src/index.d.ts +1 -0
- package/dist/tests/fixtures/ingest-basic/src/index.js +6 -0
- package/dist/tests/fixtures/mixed-language-basic/api.d.ts +2 -0
- package/dist/tests/fixtures/mixed-language-basic/api.js +12 -0
- package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-app-plus-terraform/packages/app/app/route.js +6 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/backend/app/route.js +6 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.d.ts +1 -0
- package/dist/tests/fixtures/monorepo-front-back-sections/frontend/app/route.js +7 -0
- package/dist/tests/fixtures/typescript-basic/app/route.d.ts +1 -0
- package/dist/tests/fixtures/typescript-basic/app/route.js +7 -0
- package/dist/tests/fixtures/typescript-basic/db-client-import.d.ts +2 -0
- package/dist/tests/fixtures/typescript-basic/db-client-import.js +8 -0
- package/dist/tests/fixtures/typescript-basic/db.d.ts +3 -0
- package/dist/tests/fixtures/typescript-basic/db.js +7 -0
- package/dist/tests/fixtures/typescript-basic/external-api.d.ts +1 -0
- package/dist/tests/fixtures/typescript-basic/external-api.js +18 -0
- package/dist/tests/fixtures/typescript-basic/pg-client.d.ts +3 -0
- package/dist/tests/fixtures/typescript-basic/pg-client.js +7 -0
- package/dist/tests/fixtures/typescript-basic/server.d.ts +14 -0
- package/dist/tests/fixtures/typescript-basic/server.js +4 -0
- package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.d.ts +0 -0
- package/dist/tests/fixtures/typescript-dependency-manifests-basic/src/index.js +2 -0
- package/dist/tests/helpers/scan-result-builders.d.ts +2 -0
- package/dist/tests/helpers/scan-result-builders.js +15 -0
- package/dist/tests/schema/dataflow-wrapper.schema.spec.d.ts +1 -0
- package/dist/tests/schema/dataflow-wrapper.schema.spec.js +89 -0
- package/dist/tests/schema/diagram-graph.schema.spec.d.ts +1 -0
- package/dist/tests/schema/diagram-graph.schema.spec.js +48 -0
- package/dist/tests/schema/scan-config.schema.spec.d.ts +1 -0
- package/dist/tests/schema/scan-config.schema.spec.js +135 -0
- package/dist/tests/schema/scan-result.schema.spec.d.ts +1 -0
- package/dist/tests/schema/scan-result.schema.spec.js +177 -0
- package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/agent-orchestrator.spec.js +483 -0
- package/dist/tests/unit/ai-enrichment/candidate-selector.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/candidate-selector.spec.js +106 -0
- package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/create-ai-provider.spec.js +32 -0
- package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/endpoint-resolution.spec.js +47 -0
- package/dist/tests/unit/ai-enrichment/fallbacks.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/fallbacks.spec.js +1304 -0
- package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/chat-completions-family.spec.js +219 -0
- package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/generate-content-family.spec.js +119 -0
- package/dist/tests/unit/ai-enrichment/families/messages-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/messages-family.spec.js +129 -0
- package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/families/ollama-generate-family.spec.js +69 -0
- package/dist/tests/unit/ai-enrichment/merge-rules.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/merge-rules.spec.js +422 -0
- package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/openai-proposals-response.schema.spec.js +30 -0
- package/dist/tests/unit/ai-enrichment/pipeline.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/pipeline.spec.js +120 -0
- package/dist/tests/unit/ai-enrichment/planner.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/planner.spec.js +106 -0
- package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/platform-proxy-provider.spec.js +51 -0
- package/dist/tests/unit/ai-enrichment/provider-contract.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-contract.spec.js +244 -0
- package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-json-parse.spec.js +24 -0
- package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-output-token-budget.spec.js +15 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt-env.spec.js +54 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-prompt.spec.js +206 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-aws.spec.js +43 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/provider-topology-terraform-kubernetes.spec.js +40 -0
- package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/providers/fetch-with-timeout.spec.js +22 -0
- package/dist/tests/unit/ai-enrichment/resolve-provider.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/resolve-provider.spec.js +67 -0
- package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/scan-paths-exact.spec.js +35 -0
- package/dist/tests/unit/ai-enrichment/scan-paths.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/scan-paths.spec.js +21 -0
- package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/sensitive-paths.spec.js +20 -0
- package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-data-flow.spec.js +963 -0
- package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-evidence.spec.js +117 -0
- package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/third-party-subtype.spec.js +45 -0
- package/dist/tests/unit/ai-enrichment/tools-validation.spec.d.ts +1 -0
- package/dist/tests/unit/ai-enrichment/tools-validation.spec.js +66 -0
- package/dist/tests/unit/analyzers/python/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/python/parser.spec.js +104 -0
- package/dist/tests/unit/analyzers/python/patterns.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/python/patterns.spec.js +289 -0
- package/dist/tests/unit/analyzers/registry.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/registry.spec.js +234 -0
- package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/classifier-subtype-parity.spec.js +87 -0
- package/dist/tests/unit/analyzers/terraform/detector.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/detector.spec.js +110 -0
- package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/generated-provider-hints.spec.js +53 -0
- package/dist/tests/unit/analyzers/terraform/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/parser.spec.js +56 -0
- package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/terraform-module-manifest.spec.js +63 -0
- package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform/terraform-utility-resource.spec.js +19 -0
- package/dist/tests/unit/analyzers/terraform-exec.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform-exec.spec.js +27 -0
- package/dist/tests/unit/analyzers/terraform-show-json.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/terraform-show-json.spec.js +77 -0
- package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/dependency-manifests.spec.js +61 -0
- package/dist/tests/unit/analyzers/typescript/detector.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/detector.spec.js +225 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-auth0.spec.js +49 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/external-apis-sentry.spec.js +27 -0
- package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/fixture-integration.spec.js +64 -0
- package/dist/tests/unit/analyzers/typescript/parser.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/parser.spec.js +99 -0
- package/dist/tests/unit/analyzers/typescript/pattern-config.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/pattern-config.spec.js +24 -0
- package/dist/tests/unit/analyzers/typescript/property-detection.spec.d.ts +1 -0
- package/dist/tests/unit/analyzers/typescript/property-detection.spec.js +138 -0
- package/dist/tests/unit/classifier/classify.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/classify.spec.js +1453 -0
- package/dist/tests/unit/classifier/enhance.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/enhance.spec.js +400 -0
- package/dist/tests/unit/classifier/external-url-third-party.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/external-url-third-party.spec.js +83 -0
- package/dist/tests/unit/classifier/frontend-framework-grouping.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/frontend-framework-grouping.spec.js +44 -0
- package/dist/tests/unit/classifier/terraform-grouping.spec.d.ts +1 -0
- package/dist/tests/unit/classifier/terraform-grouping.spec.js +96 -0
- package/dist/tests/unit/cli/config-command.spec.d.ts +1 -0
- package/dist/tests/unit/cli/config-command.spec.js +51 -0
- package/dist/tests/unit/cli/scan-command-ai-flags.spec.d.ts +0 -0
- package/dist/tests/unit/cli/scan-command-ai-flags.spec.js +149 -0
- package/dist/tests/unit/cli/scan-command-diagram-graph.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-diagram-graph.spec.js +26 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-app-plus-terraform.spec.js +107 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-monorepo-front-back-sections.spec.js +74 -0
- package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-python-basic.spec.js +43 -0
- package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-terraform-basic.spec.js +62 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sample.spec.js +41 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-e2e-ts-sentry-route-env.spec.js +85 -0
- package/dist/tests/unit/cli/scan-command-exit-code.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-command-exit-code.spec.js +131 -0
- package/dist/tests/unit/cli/scan-quota-flow.spec.d.ts +1 -0
- package/dist/tests/unit/cli/scan-quota-flow.spec.js +76 -0
- package/dist/tests/unit/config/property-detection-config.spec.d.ts +1 -0
- package/dist/tests/unit/config/property-detection-config.spec.js +38 -0
- package/dist/tests/unit/config/redact.spec.d.ts +1 -0
- package/dist/tests/unit/config/redact.spec.js +19 -0
- package/dist/tests/unit/config/resolve-config.spec.d.ts +1 -0
- package/dist/tests/unit/config/resolve-config.spec.js +172 -0
- package/dist/tests/unit/config/scan-env-debug.spec.d.ts +1 -0
- package/dist/tests/unit/config/scan-env-debug.spec.js +17 -0
- package/dist/tests/unit/config/validate-scan-ai.spec.d.ts +1 -0
- package/dist/tests/unit/config/validate-scan-ai.spec.js +53 -0
- package/dist/tests/unit/core/classifier-phase-regressions.spec.d.ts +1 -0
- package/dist/tests/unit/core/classifier-phase-regressions.spec.js +68 -0
- package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.d.ts +1 -0
- package/dist/tests/unit/core/dependency-manifest-performance-budgets.spec.js +66 -0
- package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.d.ts +1 -0
- package/dist/tests/unit/core/dependency-manifest-toggles-confidence.spec.js +132 -0
- package/dist/tests/unit/core/discover-service-sections.spec.d.ts +1 -0
- package/dist/tests/unit/core/discover-service-sections.spec.js +204 -0
- package/dist/tests/unit/core/graph-mapping.spec.d.ts +1 -0
- package/dist/tests/unit/core/graph-mapping.spec.js +779 -0
- package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.d.ts +1 -0
- package/dist/tests/unit/core/invariant-tests-dedupe-determinism.spec.js +64 -0
- package/dist/tests/unit/core/manifest-package-hub.spec.d.ts +1 -0
- package/dist/tests/unit/core/manifest-package-hub.spec.js +53 -0
- package/dist/tests/unit/core/monorepo-package-sections.spec.d.ts +1 -0
- package/dist/tests/unit/core/monorepo-package-sections.spec.js +121 -0
- package/dist/tests/unit/core/no-source-code-leakage.spec.d.ts +1 -0
- package/dist/tests/unit/core/no-source-code-leakage.spec.js +48 -0
- package/dist/tests/unit/core/orchestrator.spec.d.ts +1 -0
- package/dist/tests/unit/core/orchestrator.spec.js +252 -0
- package/dist/tests/unit/core/output-json.spec.d.ts +1 -0
- package/dist/tests/unit/core/output-json.spec.js +65 -0
- package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.d.ts +1 -0
- package/dist/tests/unit/core/parsing-error-handling-nonfatal.spec.js +42 -0
- package/dist/tests/unit/core/resolve-path-under-scan-root.spec.d.ts +1 -0
- package/dist/tests/unit/core/resolve-path-under-scan-root.spec.js +54 -0
- package/dist/tests/unit/core/scan-result-language-stats.spec.d.ts +1 -0
- package/dist/tests/unit/core/scan-result-language-stats.spec.js +15 -0
- package/dist/tests/unit/core/section-discovery-excludes.spec.d.ts +1 -0
- package/dist/tests/unit/core/section-discovery-excludes.spec.js +49 -0
- package/dist/tests/unit/core/section-runtime.spec.d.ts +1 -0
- package/dist/tests/unit/core/section-runtime.spec.js +166 -0
- package/dist/tests/unit/core/stable-component-ids.spec.d.ts +1 -0
- package/dist/tests/unit/core/stable-component-ids.spec.js +112 -0
- package/dist/tests/unit/core/structural-scan.spec.d.ts +1 -0
- package/dist/tests/unit/core/structural-scan.spec.js +83 -0
- package/dist/tests/unit/core/terraform-json-overlay.spec.d.ts +1 -0
- package/dist/tests/unit/core/terraform-json-overlay.spec.js +36 -0
- package/dist/tests/unit/core/terraform-minimal-services.spec.d.ts +1 -0
- package/dist/tests/unit/core/terraform-minimal-services.spec.js +378 -0
- package/dist/tests/unit/data-flow/application-hub.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/application-hub.spec.js +48 -0
- package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/cross-section-terraform-bridge.spec.js +95 -0
- package/dist/tests/unit/data-flow/dedupe.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/dedupe.spec.js +134 -0
- package/dist/tests/unit/data-flow/detector.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/detector.spec.js +1254 -0
- package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/drop-cross-section-flows.spec.js +132 -0
- package/dist/tests/unit/data-flow/ensure-actor-flow.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-actor-flow.spec.js +233 -0
- package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-manifest-declared-flows.spec.js +125 -0
- package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/ensure-section-api-flows.spec.js +40 -0
- package/dist/tests/unit/data-flow/postprocess.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/postprocess.spec.js +78 -0
- package/dist/tests/unit/data-flow/rewire.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/rewire.spec.js +194 -0
- package/dist/tests/unit/data-flow/terraform-flows.spec.d.ts +1 -0
- package/dist/tests/unit/data-flow/terraform-flows.spec.js +199 -0
- package/dist/tests/unit/evals/metrics.spec.d.ts +1 -0
- package/dist/tests/unit/evals/metrics.spec.js +54 -0
- package/dist/tests/unit/ingest/env-exclusion.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/env-exclusion.spec.js +43 -0
- package/dist/tests/unit/ingest/file-system.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/file-system.spec.js +180 -0
- package/dist/tests/unit/ingest/gitignore.spec.d.ts +1 -0
- package/dist/tests/unit/ingest/gitignore.spec.js +30 -0
- package/dist/tests/unit/observability/scan-sentry.spec.d.ts +1 -0
- package/dist/tests/unit/observability/scan-sentry.spec.js +60 -0
- package/dist/tests/unit/patterns/scan-exclusions.spec.d.ts +1 -0
- package/dist/tests/unit/patterns/scan-exclusions.spec.js +58 -0
- package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.d.ts +1 -0
- package/dist/tests/unit/pipeline/ai-orchestrator-options.spec.js +19 -0
- package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.d.ts +1 -0
- package/dist/tests/unit/platform-api/dataparade-api-base-url.spec.js +19 -0
- package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.d.ts +1 -0
- package/dist/tests/unit/platform-api/estimate-scan-footprint.spec.js +50 -0
- package/dist/tests/unit/tracing/langsmith-tracing.spec.d.ts +1 -0
- package/dist/tests/unit/tracing/langsmith-tracing.spec.js +118 -0
- package/package.json +84 -0
|
@@ -0,0 +1,378 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const application_injection_1 = require("../../../src/classifier/application-injection");
|
|
4
|
+
const terraform_minimal_services_1 = require("../../../src/core/pipeline/terraform-minimal-services");
|
|
5
|
+
const scan_result_builders_1 = require("../../helpers/scan-result-builders");
|
|
6
|
+
describe("terraform-minimal-services", () => {
|
|
7
|
+
it("ecsModuleServiceLabel formats module.ecs_*", () => {
|
|
8
|
+
expect((0, terraform_minimal_services_1.ecsModuleServiceLabel)("module.ecs_frontend")).toBe("ECS Frontend");
|
|
9
|
+
expect((0, terraform_minimal_services_1.ecsModuleServiceLabel)("module.ecs_backend")).toBe("ECS Backend");
|
|
10
|
+
});
|
|
11
|
+
it("terraformMinimalLayoutBucket classifies hub and services", () => {
|
|
12
|
+
expect((0, terraform_minimal_services_1.terraformMinimalLayoutBucket)({
|
|
13
|
+
id: "a",
|
|
14
|
+
name: "User",
|
|
15
|
+
type: "actor",
|
|
16
|
+
subType: "customer",
|
|
17
|
+
confidence: 0.5,
|
|
18
|
+
detectedFrom: [],
|
|
19
|
+
sourceLocations: [],
|
|
20
|
+
properties: {},
|
|
21
|
+
})).toBe("actor");
|
|
22
|
+
expect((0, terraform_minimal_services_1.terraformMinimalLayoutBucket)((0, scan_result_builders_1.testAsset)("m", "App", {
|
|
23
|
+
sourceContext: application_injection_1.INJECTED_PROJECT_PLACEHOLDER_SOURCE_CONTEXT,
|
|
24
|
+
}))).toBe("main");
|
|
25
|
+
expect((0, terraform_minimal_services_1.terraformMinimalLayoutBucket)({
|
|
26
|
+
id: "p",
|
|
27
|
+
name: "AWS",
|
|
28
|
+
type: "third_party",
|
|
29
|
+
subType: "cloud_provider",
|
|
30
|
+
confidence: 0.9,
|
|
31
|
+
detectedFrom: [],
|
|
32
|
+
sourceLocations: [],
|
|
33
|
+
properties: { terraform_address: "provider.aws" },
|
|
34
|
+
})).toBe("provider");
|
|
35
|
+
expect((0, terraform_minimal_services_1.terraformMinimalLayoutBucket)((0, scan_result_builders_1.testAsset)("e", "ECS", { terraform_address: "module.ecs_frontend" }))).toBe("ecs");
|
|
36
|
+
expect((0, terraform_minimal_services_1.terraformMinimalLayoutBucket)((0, scan_result_builders_1.testAsset)("s", "S3", {
|
|
37
|
+
terraform_address: "aws_s3_bucket.x",
|
|
38
|
+
managed_by_provider: "tp_aws",
|
|
39
|
+
}))).toBe("managed");
|
|
40
|
+
});
|
|
41
|
+
it("isTerraformPrimaryScan is false when a non-Terraform api asset exists", () => {
|
|
42
|
+
const components = [
|
|
43
|
+
(0, scan_result_builders_1.testAsset)("s3", "b", { terraform_address: "aws_s3_bucket.x" }),
|
|
44
|
+
(0, scan_result_builders_1.testAsset)("api", "API", {}, "api"),
|
|
45
|
+
];
|
|
46
|
+
expect((0, terraform_minimal_services_1.isTerraformPrimaryScan)(components)).toBe(false);
|
|
47
|
+
});
|
|
48
|
+
it("isMixedAppTerraformScan is true when app packages and Terraform coexist", () => {
|
|
49
|
+
const components = [
|
|
50
|
+
(0, scan_result_builders_1.testAsset)("api", "API", { section_id: "reedy" }, "api"),
|
|
51
|
+
(0, scan_result_builders_1.testAsset)("rds", "RDS", {
|
|
52
|
+
section_id: "terraform/modules/aurora",
|
|
53
|
+
terraform_address: "module.aurora.aws_rds_cluster.this",
|
|
54
|
+
resource_type: "aws_rds_cluster",
|
|
55
|
+
}),
|
|
56
|
+
{
|
|
57
|
+
id: "aws",
|
|
58
|
+
name: "Amazon Web Services",
|
|
59
|
+
type: "third_party",
|
|
60
|
+
subType: "cloud_provider",
|
|
61
|
+
confidence: 0.9,
|
|
62
|
+
detectedFrom: [],
|
|
63
|
+
sourceLocations: [],
|
|
64
|
+
properties: { terraform_address: "provider.aws", section_id: "root" },
|
|
65
|
+
},
|
|
66
|
+
];
|
|
67
|
+
expect((0, terraform_minimal_services_1.isMixedAppTerraformScan)(components)).toBe(true);
|
|
68
|
+
expect((0, terraform_minimal_services_1.isTerraformPrimaryScan)(components)).toBe(false);
|
|
69
|
+
expect((0, terraform_minimal_services_1.shouldKeepComponentInMixedAppTerraformScan)((0, scan_result_builders_1.testAsset)("rds", "RDS", {
|
|
70
|
+
terraform_address: "module.aurora.aws_rds_cluster.this",
|
|
71
|
+
resource_type: "aws_rds_cluster",
|
|
72
|
+
}))).toBe(false);
|
|
73
|
+
expect((0, terraform_minimal_services_1.shouldKeepComponentInMixedAppTerraformScan)((0, scan_result_builders_1.testAsset)("mod", "Module · aurora", {
|
|
74
|
+
terraform_address: "module.aurora",
|
|
75
|
+
section_id: "root",
|
|
76
|
+
}))).toBe(true);
|
|
77
|
+
});
|
|
78
|
+
it("isMixedAppTerraformScan is true for root-scoped API with app signals and Terraform shells", () => {
|
|
79
|
+
const components = [
|
|
80
|
+
(0, scan_result_builders_1.testAsset)("api", "API", { section_id: "root", isSectionApiNode: true }, "api"),
|
|
81
|
+
(0, scan_result_builders_1.testAsset)("rds", "RDS", {
|
|
82
|
+
section_id: "terraform",
|
|
83
|
+
terraform_address: "aws_db_instance.main",
|
|
84
|
+
resource_type: "aws_db_instance",
|
|
85
|
+
}),
|
|
86
|
+
(0, scan_result_builders_1.testAsset)("mod", "Module · db", {
|
|
87
|
+
terraform_address: "module.db",
|
|
88
|
+
section_id: "terraform",
|
|
89
|
+
}),
|
|
90
|
+
{
|
|
91
|
+
id: "aws",
|
|
92
|
+
name: "Amazon Web Services",
|
|
93
|
+
type: "third_party",
|
|
94
|
+
subType: "cloud_provider",
|
|
95
|
+
confidence: 0.9,
|
|
96
|
+
detectedFrom: [],
|
|
97
|
+
sourceLocations: [],
|
|
98
|
+
properties: { terraform_address: "provider.aws", section_id: "terraform" },
|
|
99
|
+
},
|
|
100
|
+
];
|
|
101
|
+
expect((0, terraform_minimal_services_1.isMixedAppTerraformScan)(components)).toBe(true);
|
|
102
|
+
expect((0, terraform_minimal_services_1.isTerraformPrimaryScan)(components)).toBe(false);
|
|
103
|
+
});
|
|
104
|
+
it("isMixedAppTerraformScan is false for root-scoped API without app signals", () => {
|
|
105
|
+
const components = [
|
|
106
|
+
(0, scan_result_builders_1.testAsset)("api", "API", { section_id: "root" }, "api"),
|
|
107
|
+
(0, scan_result_builders_1.testAsset)("mod", "Module · db", {
|
|
108
|
+
terraform_address: "module.db",
|
|
109
|
+
section_id: "terraform",
|
|
110
|
+
}),
|
|
111
|
+
{
|
|
112
|
+
id: "aws",
|
|
113
|
+
name: "AWS",
|
|
114
|
+
type: "third_party",
|
|
115
|
+
subType: "cloud_provider",
|
|
116
|
+
confidence: 0.9,
|
|
117
|
+
detectedFrom: [],
|
|
118
|
+
sourceLocations: [],
|
|
119
|
+
properties: { terraform_address: "provider.aws", section_id: "terraform" },
|
|
120
|
+
},
|
|
121
|
+
];
|
|
122
|
+
expect((0, terraform_minimal_services_1.isMixedAppTerraformScan)(components)).toBe(false);
|
|
123
|
+
});
|
|
124
|
+
it("applyMixedAppTerraformScanResult drops inner TF resources for root-scoped app + terraform section", () => {
|
|
125
|
+
const scanResult = {
|
|
126
|
+
components: [
|
|
127
|
+
(0, scan_result_builders_1.testAsset)("api", "API", { section_id: "root", isSectionApiNode: true }, "api"),
|
|
128
|
+
(0, scan_result_builders_1.testAsset)("rds", "RDS", {
|
|
129
|
+
section_id: "terraform",
|
|
130
|
+
terraform_address: "module.db.aws_db_instance.main",
|
|
131
|
+
resource_type: "aws_db_instance",
|
|
132
|
+
}),
|
|
133
|
+
(0, scan_result_builders_1.testAsset)("mod", "Module · db", {
|
|
134
|
+
terraform_address: "module.db",
|
|
135
|
+
section_id: "terraform",
|
|
136
|
+
}),
|
|
137
|
+
{
|
|
138
|
+
id: "aws",
|
|
139
|
+
name: "Amazon Web Services",
|
|
140
|
+
type: "third_party",
|
|
141
|
+
subType: "cloud_provider",
|
|
142
|
+
confidence: 0.9,
|
|
143
|
+
detectedFrom: [],
|
|
144
|
+
sourceLocations: [],
|
|
145
|
+
properties: { terraform_address: "provider.aws", section_id: "terraform" },
|
|
146
|
+
},
|
|
147
|
+
(0, scan_result_builders_1.testAsset)("subnet", "Subnet", {
|
|
148
|
+
section_id: "terraform",
|
|
149
|
+
terraform_address: "aws_subnet.private",
|
|
150
|
+
resource_type: "aws_subnet",
|
|
151
|
+
}),
|
|
152
|
+
],
|
|
153
|
+
dataFlows: [
|
|
154
|
+
{
|
|
155
|
+
id: "f1",
|
|
156
|
+
sourceComponentId: "aws",
|
|
157
|
+
targetComponentId: "rds",
|
|
158
|
+
type: "database_query",
|
|
159
|
+
confidence: 0.8,
|
|
160
|
+
},
|
|
161
|
+
],
|
|
162
|
+
filesScanned: 1,
|
|
163
|
+
filesSkipped: 0,
|
|
164
|
+
totalLines: 1,
|
|
165
|
+
scanDurationMs: 1,
|
|
166
|
+
warnings: [],
|
|
167
|
+
errors: [],
|
|
168
|
+
};
|
|
169
|
+
const out = (0, terraform_minimal_services_1.applyMixedAppTerraformScanResult)(scanResult);
|
|
170
|
+
const ids = out.components.map((c) => c.id).sort();
|
|
171
|
+
expect(ids).toEqual(["api", "aws", "mod"]);
|
|
172
|
+
expect(out.components.some((c) => c.id === "rds")).toBe(false);
|
|
173
|
+
expect(out.components.some((c) => c.id === "subnet")).toBe(false);
|
|
174
|
+
expect(out.dataFlows.some((f) => f.sourceComponentId === "aws" && f.targetComponentId === "mod")).toBe(true);
|
|
175
|
+
});
|
|
176
|
+
it("applyMixedAppTerraformScanResult drops module-internal resources but keeps app nodes", () => {
|
|
177
|
+
const scanResult = {
|
|
178
|
+
components: [
|
|
179
|
+
(0, scan_result_builders_1.testAsset)("api", "API", { section_id: "reedy" }, "api"),
|
|
180
|
+
(0, scan_result_builders_1.testAsset)("rds", "RDS", {
|
|
181
|
+
section_id: "terraform/modules/aurora",
|
|
182
|
+
terraform_address: "module.aurora.aws_rds_cluster.this",
|
|
183
|
+
resource_type: "aws_rds_cluster",
|
|
184
|
+
}),
|
|
185
|
+
(0, scan_result_builders_1.testAsset)("mod", "Module · aurora", {
|
|
186
|
+
terraform_address: "module.aurora",
|
|
187
|
+
section_id: "root",
|
|
188
|
+
}),
|
|
189
|
+
{
|
|
190
|
+
id: "aws",
|
|
191
|
+
name: "Amazon Web Services",
|
|
192
|
+
type: "third_party",
|
|
193
|
+
subType: "cloud_provider",
|
|
194
|
+
confidence: 0.9,
|
|
195
|
+
detectedFrom: [],
|
|
196
|
+
sourceLocations: [],
|
|
197
|
+
properties: { terraform_address: "provider.aws", section_id: "root" },
|
|
198
|
+
},
|
|
199
|
+
(0, scan_result_builders_1.testAsset)("az", "AZ", {
|
|
200
|
+
section_id: "root",
|
|
201
|
+
terraform_address: "data.aws_availability_zones.available",
|
|
202
|
+
resource_type: "aws_availability_zones",
|
|
203
|
+
}),
|
|
204
|
+
],
|
|
205
|
+
dataFlows: [
|
|
206
|
+
{
|
|
207
|
+
id: "f1",
|
|
208
|
+
sourceComponentId: "aws",
|
|
209
|
+
targetComponentId: "rds",
|
|
210
|
+
type: "database_query",
|
|
211
|
+
confidence: 0.8,
|
|
212
|
+
},
|
|
213
|
+
],
|
|
214
|
+
filesScanned: 1,
|
|
215
|
+
filesSkipped: 0,
|
|
216
|
+
totalLines: 1,
|
|
217
|
+
scanDurationMs: 1,
|
|
218
|
+
warnings: [],
|
|
219
|
+
errors: [],
|
|
220
|
+
};
|
|
221
|
+
const out = (0, terraform_minimal_services_1.applyMixedAppTerraformScanResult)(scanResult);
|
|
222
|
+
const ids = out.components.map((c) => c.id).sort();
|
|
223
|
+
expect(ids).toEqual(["api", "aws", "mod"]);
|
|
224
|
+
expect(out.dataFlows.some((f) => f.sourceComponentId === "aws" && f.targetComponentId === "mod")).toBe(true);
|
|
225
|
+
expect(out.dataFlows.some((f) => f.sourceComponentId === "aws" && f.targetComponentId === "rds")).toBe(false);
|
|
226
|
+
});
|
|
227
|
+
it("applyTerraformMinimalServiceScanResult keeps hub, ECS modules, and managed services", () => {
|
|
228
|
+
const scanResult = {
|
|
229
|
+
components: [
|
|
230
|
+
{
|
|
231
|
+
id: "actor1",
|
|
232
|
+
name: "User",
|
|
233
|
+
type: "actor",
|
|
234
|
+
subType: "customer",
|
|
235
|
+
confidence: 0.5,
|
|
236
|
+
detectedFrom: [],
|
|
237
|
+
sourceLocations: [],
|
|
238
|
+
properties: { section_id: "root" },
|
|
239
|
+
},
|
|
240
|
+
(0, scan_result_builders_1.testAsset)("main1", "aws_fullstack_terraform", {
|
|
241
|
+
section_id: "root",
|
|
242
|
+
isMainApplication: true,
|
|
243
|
+
sourceContext: application_injection_1.INJECTED_PROJECT_PLACEHOLDER_SOURCE_CONTEXT,
|
|
244
|
+
}),
|
|
245
|
+
{
|
|
246
|
+
id: "aws",
|
|
247
|
+
name: "Amazon Web Services",
|
|
248
|
+
type: "third_party",
|
|
249
|
+
subType: "cloud_provider",
|
|
250
|
+
confidence: 0.9,
|
|
251
|
+
detectedFrom: [],
|
|
252
|
+
sourceLocations: [],
|
|
253
|
+
properties: { terraform_address: "provider.aws", section_id: "root" },
|
|
254
|
+
},
|
|
255
|
+
(0, scan_result_builders_1.testAsset)("ecs_f", "Module · ecs_frontend", {
|
|
256
|
+
terraform_address: "module.ecs_frontend",
|
|
257
|
+
section_id: "root",
|
|
258
|
+
}),
|
|
259
|
+
(0, scan_result_builders_1.testAsset)("s3", "Aws S3", {
|
|
260
|
+
terraform_address: "aws_s3_bucket.x",
|
|
261
|
+
managed_by_provider: "aws",
|
|
262
|
+
managed_service_key: "s3",
|
|
263
|
+
section_id: "root",
|
|
264
|
+
}),
|
|
265
|
+
(0, scan_result_builders_1.testAsset)("vpc", "Module · vpc", { terraform_address: "module.vpc", section_id: "root" }),
|
|
266
|
+
],
|
|
267
|
+
dataFlows: [
|
|
268
|
+
{
|
|
269
|
+
id: "f1",
|
|
270
|
+
sourceComponentId: "ecs_f",
|
|
271
|
+
targetComponentId: "s3",
|
|
272
|
+
type: "file_transfer",
|
|
273
|
+
confidence: 0.8,
|
|
274
|
+
},
|
|
275
|
+
],
|
|
276
|
+
filesScanned: 1,
|
|
277
|
+
filesSkipped: 0,
|
|
278
|
+
totalLines: 1,
|
|
279
|
+
scanDurationMs: 1,
|
|
280
|
+
warnings: [],
|
|
281
|
+
errors: [],
|
|
282
|
+
};
|
|
283
|
+
const out = (0, terraform_minimal_services_1.applyTerraformMinimalServiceScanResult)(scanResult);
|
|
284
|
+
const ids = out.components.map((c) => c.id).sort();
|
|
285
|
+
expect(ids).toEqual(["actor1", "aws", "ecs_f", "main1", "s3"]);
|
|
286
|
+
const has = (a, b) => out.dataFlows.some((f) => f.sourceComponentId === a && f.targetComponentId === b);
|
|
287
|
+
expect(has("actor1", "main1")).toBe(true);
|
|
288
|
+
expect(has("main1", "ecs_f")).toBe(true);
|
|
289
|
+
expect(has("ecs_f", "aws")).toBe(true);
|
|
290
|
+
expect(has("main1", "aws")).toBe(false);
|
|
291
|
+
expect(has("aws", "s3")).toBe(true);
|
|
292
|
+
});
|
|
293
|
+
it("removes forced main→provider when ECS-mediated hub edges exist", () => {
|
|
294
|
+
const scanResult = {
|
|
295
|
+
components: [
|
|
296
|
+
{
|
|
297
|
+
id: "actor1",
|
|
298
|
+
name: "User",
|
|
299
|
+
type: "actor",
|
|
300
|
+
subType: "customer",
|
|
301
|
+
confidence: 0.5,
|
|
302
|
+
detectedFrom: [],
|
|
303
|
+
sourceLocations: [],
|
|
304
|
+
properties: { section_id: "root" },
|
|
305
|
+
},
|
|
306
|
+
(0, scan_result_builders_1.testAsset)("main1", "app", {
|
|
307
|
+
section_id: "root",
|
|
308
|
+
isMainApplication: true,
|
|
309
|
+
sourceContext: application_injection_1.INJECTED_PROJECT_PLACEHOLDER_SOURCE_CONTEXT,
|
|
310
|
+
}),
|
|
311
|
+
{
|
|
312
|
+
id: "aws",
|
|
313
|
+
name: "Amazon Web Services",
|
|
314
|
+
type: "third_party",
|
|
315
|
+
subType: "cloud_provider",
|
|
316
|
+
confidence: 0.9,
|
|
317
|
+
detectedFrom: [],
|
|
318
|
+
sourceLocations: [],
|
|
319
|
+
properties: { terraform_address: "provider.aws", section_id: "root" },
|
|
320
|
+
},
|
|
321
|
+
(0, scan_result_builders_1.testAsset)("ecs_f", "ECS Frontend", {
|
|
322
|
+
terraform_address: "module.ecs_frontend",
|
|
323
|
+
section_id: "root",
|
|
324
|
+
}),
|
|
325
|
+
(0, scan_result_builders_1.testAsset)("s3", "Aws S3", {
|
|
326
|
+
terraform_address: "aws_s3_bucket.x",
|
|
327
|
+
managed_by_provider: "aws",
|
|
328
|
+
managed_service_key: "s3",
|
|
329
|
+
section_id: "root",
|
|
330
|
+
}),
|
|
331
|
+
],
|
|
332
|
+
dataFlows: [
|
|
333
|
+
{
|
|
334
|
+
id: "flow_forced",
|
|
335
|
+
sourceComponentId: "main1",
|
|
336
|
+
targetComponentId: "aws",
|
|
337
|
+
type: "api_call",
|
|
338
|
+
confidence: 0.72,
|
|
339
|
+
},
|
|
340
|
+
{
|
|
341
|
+
id: "f1",
|
|
342
|
+
sourceComponentId: "ecs_f",
|
|
343
|
+
targetComponentId: "s3",
|
|
344
|
+
type: "file_transfer",
|
|
345
|
+
confidence: 0.8,
|
|
346
|
+
},
|
|
347
|
+
],
|
|
348
|
+
filesScanned: 1,
|
|
349
|
+
filesSkipped: 0,
|
|
350
|
+
totalLines: 1,
|
|
351
|
+
scanDurationMs: 1,
|
|
352
|
+
warnings: [],
|
|
353
|
+
errors: [],
|
|
354
|
+
};
|
|
355
|
+
const out = (0, terraform_minimal_services_1.applyTerraformMinimalServiceScanResult)(scanResult);
|
|
356
|
+
const direct = out.dataFlows.filter((f) => f.sourceComponentId === "main1" && f.targetComponentId === "aws");
|
|
357
|
+
expect(direct).toHaveLength(0);
|
|
358
|
+
const has = (a, b) => out.dataFlows.some((f) => f.sourceComponentId === a && f.targetComponentId === b);
|
|
359
|
+
expect(has("main1", "ecs_f")).toBe(true);
|
|
360
|
+
expect(has("ecs_f", "aws")).toBe(true);
|
|
361
|
+
});
|
|
362
|
+
it("leaves scan unchanged when fewer than two ECS/managed service nodes", () => {
|
|
363
|
+
const scanResult = {
|
|
364
|
+
components: [
|
|
365
|
+
(0, scan_result_builders_1.testAsset)("ecs_f", "m", { terraform_address: "module.ecs_frontend" }),
|
|
366
|
+
],
|
|
367
|
+
dataFlows: [],
|
|
368
|
+
filesScanned: 1,
|
|
369
|
+
filesSkipped: 0,
|
|
370
|
+
totalLines: 1,
|
|
371
|
+
scanDurationMs: 1,
|
|
372
|
+
warnings: [],
|
|
373
|
+
errors: [],
|
|
374
|
+
};
|
|
375
|
+
const out = (0, terraform_minimal_services_1.applyTerraformMinimalServiceScanResult)(scanResult);
|
|
376
|
+
expect(out.components).toHaveLength(1);
|
|
377
|
+
});
|
|
378
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const application_hub_1 = require("../../../src/data-flow/application-hub");
|
|
4
|
+
function asset(id, props, subType = "application") {
|
|
5
|
+
return {
|
|
6
|
+
id,
|
|
7
|
+
name: id,
|
|
8
|
+
type: "asset",
|
|
9
|
+
subType,
|
|
10
|
+
confidence: 0.9,
|
|
11
|
+
detectedFrom: [],
|
|
12
|
+
sourceLocations: [],
|
|
13
|
+
properties: props,
|
|
14
|
+
};
|
|
15
|
+
}
|
|
16
|
+
describe("findApplicationHubForFlows", () => {
|
|
17
|
+
it("prefers non-Terraform main over heroku_app for the same section", () => {
|
|
18
|
+
const expressMain = asset("express", { section_id: "root", isMainApplication: true }, "api");
|
|
19
|
+
const herokuApp = asset("heroku", {
|
|
20
|
+
section_id: "root",
|
|
21
|
+
isMainApplication: true,
|
|
22
|
+
terraform_address: "heroku_app.example",
|
|
23
|
+
resource_type: "heroku_app",
|
|
24
|
+
}, "application");
|
|
25
|
+
const components = [expressMain, herokuApp];
|
|
26
|
+
expect((0, application_hub_1.findApplicationHubForFlows)(components, "root")?.id).toBe("express");
|
|
27
|
+
});
|
|
28
|
+
it("for Terraform-only section, picks Express main in another section before heroku_app", () => {
|
|
29
|
+
const herokuApp = asset("heroku", {
|
|
30
|
+
section_id: "root",
|
|
31
|
+
isMainApplication: true,
|
|
32
|
+
terraform_address: "heroku_app.example",
|
|
33
|
+
resource_type: "heroku_app",
|
|
34
|
+
}, "application");
|
|
35
|
+
const expressMain = asset("app", { section_id: "app", isMainApplication: true }, "api");
|
|
36
|
+
const components = [herokuApp, expressMain];
|
|
37
|
+
expect((0, application_hub_1.findApplicationHubForFlows)(components, "root")?.id).toBe("app");
|
|
38
|
+
});
|
|
39
|
+
it("falls back to heroku_app when it is the only main", () => {
|
|
40
|
+
const herokuApp = asset("heroku", {
|
|
41
|
+
section_id: "root",
|
|
42
|
+
isMainApplication: true,
|
|
43
|
+
terraform_address: "heroku_app.example",
|
|
44
|
+
resource_type: "heroku_app",
|
|
45
|
+
}, "application");
|
|
46
|
+
expect((0, application_hub_1.findApplicationHubForFlows)([herokuApp], "root")?.id).toBe("heroku");
|
|
47
|
+
});
|
|
48
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,95 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const ensure_actor_flow_1 = require("../../../src/data-flow/ensure-actor-flow");
|
|
4
|
+
function makeComponent(partial) {
|
|
5
|
+
return {
|
|
6
|
+
name: partial.id,
|
|
7
|
+
type: "asset",
|
|
8
|
+
confidence: 1,
|
|
9
|
+
detectedFrom: [],
|
|
10
|
+
sourceLocations: [],
|
|
11
|
+
properties: {},
|
|
12
|
+
...partial,
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
describe("ensureInjectedProjectMainToTerraformProviderHub — cross-section scope", () => {
|
|
16
|
+
it("does not bridge tooling packages to the global Terraform hub", () => {
|
|
17
|
+
const components = [
|
|
18
|
+
makeComponent({
|
|
19
|
+
id: "main_cli",
|
|
20
|
+
name: "twenty-cli",
|
|
21
|
+
subType: "application",
|
|
22
|
+
properties: {
|
|
23
|
+
isMainApplication: true,
|
|
24
|
+
sourceContext: "injected_project_placeholder",
|
|
25
|
+
section_id: "packages/twenty-cli",
|
|
26
|
+
},
|
|
27
|
+
}),
|
|
28
|
+
makeComponent({
|
|
29
|
+
id: "k8s",
|
|
30
|
+
name: "Kubernetes",
|
|
31
|
+
type: "third_party",
|
|
32
|
+
properties: {
|
|
33
|
+
terraform_address: "provider.kubernetes",
|
|
34
|
+
section_id: "packages/twenty-docker/k8s/terraform",
|
|
35
|
+
},
|
|
36
|
+
}),
|
|
37
|
+
];
|
|
38
|
+
const flows = [];
|
|
39
|
+
const result = (0, ensure_actor_flow_1.ensureInjectedProjectMainToTerraformProviderHub)(components, flows);
|
|
40
|
+
expect(result).toHaveLength(0);
|
|
41
|
+
});
|
|
42
|
+
it("does not bridge primary monorepo main to Terraform hub in another section", () => {
|
|
43
|
+
const components = [
|
|
44
|
+
makeComponent({
|
|
45
|
+
id: "main_server",
|
|
46
|
+
name: "api",
|
|
47
|
+
subType: "application",
|
|
48
|
+
properties: {
|
|
49
|
+
isMainApplication: true,
|
|
50
|
+
sourceContext: "injected_project_placeholder",
|
|
51
|
+
section_id: "packages/api",
|
|
52
|
+
is_primary_monorepo_package: true,
|
|
53
|
+
},
|
|
54
|
+
}),
|
|
55
|
+
makeComponent({
|
|
56
|
+
id: "k8s",
|
|
57
|
+
name: "Kubernetes",
|
|
58
|
+
type: "third_party",
|
|
59
|
+
properties: {
|
|
60
|
+
terraform_address: "provider.kubernetes",
|
|
61
|
+
section_id: "packages/twenty-docker/k8s/terraform",
|
|
62
|
+
},
|
|
63
|
+
}),
|
|
64
|
+
];
|
|
65
|
+
const result = (0, ensure_actor_flow_1.ensureInjectedProjectMainToTerraformProviderHub)(components, []);
|
|
66
|
+
expect(result).toHaveLength(0);
|
|
67
|
+
});
|
|
68
|
+
it("bridges injected main to provider hub in the same section only", () => {
|
|
69
|
+
const components = [
|
|
70
|
+
makeComponent({
|
|
71
|
+
id: "main_iac",
|
|
72
|
+
name: "iac-root",
|
|
73
|
+
subType: "application",
|
|
74
|
+
properties: {
|
|
75
|
+
isMainApplication: true,
|
|
76
|
+
sourceContext: "injected_project_placeholder",
|
|
77
|
+
section_id: "packages/acme/k8s/terraform",
|
|
78
|
+
},
|
|
79
|
+
}),
|
|
80
|
+
makeComponent({
|
|
81
|
+
id: "k8s",
|
|
82
|
+
name: "Kubernetes",
|
|
83
|
+
type: "third_party",
|
|
84
|
+
properties: {
|
|
85
|
+
terraform_address: "provider.kubernetes",
|
|
86
|
+
section_id: "packages/acme/k8s/terraform",
|
|
87
|
+
},
|
|
88
|
+
}),
|
|
89
|
+
];
|
|
90
|
+
const result = (0, ensure_actor_flow_1.ensureInjectedProjectMainToTerraformProviderHub)(components, []);
|
|
91
|
+
expect(result).toHaveLength(1);
|
|
92
|
+
expect(result[0]?.sourceComponentId).toBe("main_iac");
|
|
93
|
+
expect(result[0]?.targetComponentId).toBe("k8s");
|
|
94
|
+
});
|
|
95
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,134 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const dedupe_1 = require("../../../src/data-flow/dedupe");
|
|
4
|
+
function makeFlow(overrides) {
|
|
5
|
+
return {
|
|
6
|
+
id: overrides.id,
|
|
7
|
+
sourceComponentId: overrides.sourceComponentId,
|
|
8
|
+
targetComponentId: overrides.targetComponentId,
|
|
9
|
+
type: overrides.type,
|
|
10
|
+
confidence: overrides.confidence ?? 0.5,
|
|
11
|
+
sourceLocation: overrides.sourceLocation,
|
|
12
|
+
sourceLocations: overrides.sourceLocations,
|
|
13
|
+
description: overrides.description,
|
|
14
|
+
method: overrides.method,
|
|
15
|
+
endpoint: overrides.endpoint,
|
|
16
|
+
dataCategories: overrides.dataCategories,
|
|
17
|
+
dataSubjectCategories: overrides.dataSubjectCategories,
|
|
18
|
+
processingPurpose: overrides.processingPurpose,
|
|
19
|
+
actions: overrides.actions,
|
|
20
|
+
transformation: overrides.transformation,
|
|
21
|
+
enrichmentConfidence: overrides.enrichmentConfidence,
|
|
22
|
+
enrichmentNotes: overrides.enrichmentNotes,
|
|
23
|
+
};
|
|
24
|
+
}
|
|
25
|
+
describe("data-flow/dedupe - DP-P0-CLI-302", () => {
|
|
26
|
+
it("merges duplicate flows by sourceComponentId, targetComponentId, and type", () => {
|
|
27
|
+
const flows = [
|
|
28
|
+
makeFlow({
|
|
29
|
+
id: "flow_1",
|
|
30
|
+
sourceComponentId: "app",
|
|
31
|
+
targetComponentId: "db",
|
|
32
|
+
type: "database_query",
|
|
33
|
+
confidence: 0.7,
|
|
34
|
+
sourceLocation: {
|
|
35
|
+
filePath: "src/db.ts",
|
|
36
|
+
startLine: 10,
|
|
37
|
+
endLine: 12,
|
|
38
|
+
},
|
|
39
|
+
method: "GET",
|
|
40
|
+
endpoint: "/db-1",
|
|
41
|
+
}),
|
|
42
|
+
makeFlow({
|
|
43
|
+
id: "flow_2",
|
|
44
|
+
sourceComponentId: "app",
|
|
45
|
+
targetComponentId: "db",
|
|
46
|
+
type: "database_query",
|
|
47
|
+
confidence: 0.9,
|
|
48
|
+
sourceLocation: {
|
|
49
|
+
filePath: "src/db.ts",
|
|
50
|
+
startLine: 20,
|
|
51
|
+
endLine: 22,
|
|
52
|
+
},
|
|
53
|
+
method: "GET",
|
|
54
|
+
endpoint: "/db-1",
|
|
55
|
+
}),
|
|
56
|
+
];
|
|
57
|
+
const deduped = (0, dedupe_1.dedupeDataFlows)(flows);
|
|
58
|
+
expect(deduped).toHaveLength(1);
|
|
59
|
+
const [merged] = deduped;
|
|
60
|
+
// Base flow selection is deterministic: highest confidence wins (tie-broken by id).
|
|
61
|
+
expect(merged.id).toBe("flow_2");
|
|
62
|
+
expect(merged.sourceComponentId).toBe("app");
|
|
63
|
+
expect(merged.targetComponentId).toBe("db");
|
|
64
|
+
expect(merged.type).toBe("database_query");
|
|
65
|
+
expect(merged.confidence).toBe(0.9);
|
|
66
|
+
expect(merged.sourceLocations).toBeDefined();
|
|
67
|
+
expect(merged.sourceLocations.length).toBe(2);
|
|
68
|
+
const paths = merged.sourceLocations.map((l) => l.startLine).sort((a, b) => a - b);
|
|
69
|
+
expect(paths).toEqual([10, 20]);
|
|
70
|
+
// Primary sourceLocation should be one of the contributing locations.
|
|
71
|
+
expect(merged.sourceLocation).toBeDefined();
|
|
72
|
+
expect(merged.sourceLocations.some((loc) => loc.filePath === merged.sourceLocation.filePath &&
|
|
73
|
+
loc.startLine === merged.sourceLocation.startLine &&
|
|
74
|
+
loc.endLine === merged.sourceLocation.endLine)).toBe(true);
|
|
75
|
+
// Non-location metadata should come from the base flow.
|
|
76
|
+
expect(merged.method).toBe("GET");
|
|
77
|
+
expect(merged.endpoint).toBe("/db-1");
|
|
78
|
+
});
|
|
79
|
+
it("does not merge flows with different structural keys", () => {
|
|
80
|
+
const flows = [
|
|
81
|
+
makeFlow({
|
|
82
|
+
id: "flow_1",
|
|
83
|
+
sourceComponentId: "app",
|
|
84
|
+
targetComponentId: "db",
|
|
85
|
+
type: "database_query",
|
|
86
|
+
confidence: 0.8,
|
|
87
|
+
}),
|
|
88
|
+
makeFlow({
|
|
89
|
+
id: "flow_2",
|
|
90
|
+
sourceComponentId: "app",
|
|
91
|
+
targetComponentId: "db",
|
|
92
|
+
type: "api_call",
|
|
93
|
+
confidence: 0.9,
|
|
94
|
+
}),
|
|
95
|
+
makeFlow({
|
|
96
|
+
id: "flow_3",
|
|
97
|
+
sourceComponentId: "app",
|
|
98
|
+
targetComponentId: "cache",
|
|
99
|
+
type: "database_query",
|
|
100
|
+
confidence: 0.7,
|
|
101
|
+
}),
|
|
102
|
+
];
|
|
103
|
+
const deduped = (0, dedupe_1.dedupeDataFlows)(flows);
|
|
104
|
+
expect(deduped).toHaveLength(3);
|
|
105
|
+
});
|
|
106
|
+
it("preserves existing sourceLocations when present on a single flow", () => {
|
|
107
|
+
const flows = [
|
|
108
|
+
makeFlow({
|
|
109
|
+
id: "flow_1",
|
|
110
|
+
sourceComponentId: "app",
|
|
111
|
+
targetComponentId: "db",
|
|
112
|
+
type: "database_query",
|
|
113
|
+
confidence: 0.8,
|
|
114
|
+
sourceLocations: [
|
|
115
|
+
{
|
|
116
|
+
filePath: "src/db.ts",
|
|
117
|
+
startLine: 5,
|
|
118
|
+
endLine: 7,
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
}),
|
|
122
|
+
];
|
|
123
|
+
const deduped = (0, dedupe_1.dedupeDataFlows)(flows);
|
|
124
|
+
expect(deduped).toHaveLength(1);
|
|
125
|
+
const [merged] = deduped;
|
|
126
|
+
expect(merged.sourceLocations).toBeDefined();
|
|
127
|
+
expect(merged.sourceLocations.length).toBe(1);
|
|
128
|
+
expect(merged.sourceLocations[0]).toEqual({
|
|
129
|
+
filePath: "src/db.ts",
|
|
130
|
+
startLine: 5,
|
|
131
|
+
endLine: 7,
|
|
132
|
+
});
|
|
133
|
+
});
|
|
134
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|