@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,51 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const cli_1 = require("../../../src/cli");
|
|
10
|
+
describe("cli config command", () => {
|
|
11
|
+
it("prints effective configuration as JSON", async () => {
|
|
12
|
+
const consoleSpy = jest.spyOn(console, "log").mockImplementation(() => { });
|
|
13
|
+
await (0, cli_1.run)(["node", "cli", "config"]);
|
|
14
|
+
expect(consoleSpy).toHaveBeenCalled();
|
|
15
|
+
consoleSpy.mockRestore();
|
|
16
|
+
});
|
|
17
|
+
it("redacts SCAN_BYOK_API_KEY in printed JSON", async () => {
|
|
18
|
+
const previous = process.env.SCAN_BYOK_API_KEY;
|
|
19
|
+
process.env.SCAN_BYOK_API_KEY = "sk-must-not-appear-in-output";
|
|
20
|
+
const consoleSpy = jest.spyOn(console, "log").mockImplementation(() => { });
|
|
21
|
+
try {
|
|
22
|
+
await (0, cli_1.run)(["node", "cli", "config"]);
|
|
23
|
+
const output = consoleSpy.mock.calls.map((c) => String(c[0])).join("\n");
|
|
24
|
+
expect(output).not.toContain("sk-must-not-appear-in-output");
|
|
25
|
+
expect(output).toContain("<redacted>");
|
|
26
|
+
}
|
|
27
|
+
finally {
|
|
28
|
+
consoleSpy.mockRestore();
|
|
29
|
+
if (previous === undefined) {
|
|
30
|
+
delete process.env.SCAN_BYOK_API_KEY;
|
|
31
|
+
}
|
|
32
|
+
else {
|
|
33
|
+
process.env.SCAN_BYOK_API_KEY = previous;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
});
|
|
37
|
+
it("loads dataparade.config.json from the given project path", async () => {
|
|
38
|
+
const tempRoot = fs_1.default.mkdtempSync(path_1.default.join(os_1.default.tmpdir(), "dp-cli-config-path-"));
|
|
39
|
+
const consoleSpy = jest.spyOn(console, "log").mockImplementation(() => { });
|
|
40
|
+
try {
|
|
41
|
+
fs_1.default.writeFileSync(path_1.default.join(tempRoot, "dataparade.config.json"), JSON.stringify({ projectName: "config-path-fixture" }), "utf8");
|
|
42
|
+
await (0, cli_1.run)(["node", "cli", "config", tempRoot]);
|
|
43
|
+
const output = consoleSpy.mock.calls.map((c) => String(c[0])).join("\n");
|
|
44
|
+
expect(output).toContain("config-path-fixture");
|
|
45
|
+
}
|
|
46
|
+
finally {
|
|
47
|
+
consoleSpy.mockRestore();
|
|
48
|
+
fs_1.default.rmSync(tempRoot, { recursive: true, force: true });
|
|
49
|
+
}
|
|
50
|
+
});
|
|
51
|
+
});
|
|
File without changes
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
jest.mock("../../../src/config/resolve", () => ({
|
|
3
|
+
resolveScanConfiguration: jest.fn(() => ({ overrides: {}, warnings: [] })),
|
|
4
|
+
}));
|
|
5
|
+
jest.mock("../../../src/core/pipeline/orchestrator", () => ({
|
|
6
|
+
createDefaultScanConfiguration: jest.fn((overrides = {}) => ({
|
|
7
|
+
enableAPIDetection: true,
|
|
8
|
+
enableDatabaseDetection: true,
|
|
9
|
+
enableDataFlowDetection: true,
|
|
10
|
+
minimumConfidence: 0.5,
|
|
11
|
+
...overrides,
|
|
12
|
+
enableAiInference: overrides.enableAiInference ?? false,
|
|
13
|
+
})),
|
|
14
|
+
scan: jest.fn(async () => ({
|
|
15
|
+
scanResult: {
|
|
16
|
+
components: [],
|
|
17
|
+
dataFlows: [],
|
|
18
|
+
filesScanned: 0,
|
|
19
|
+
filesSkipped: 0,
|
|
20
|
+
totalLines: 0,
|
|
21
|
+
scanDurationMs: 0,
|
|
22
|
+
warnings: [],
|
|
23
|
+
errors: [],
|
|
24
|
+
languageStats: undefined,
|
|
25
|
+
},
|
|
26
|
+
})),
|
|
27
|
+
}));
|
|
28
|
+
jest.mock("../../../src/core/pipeline/graph-mapping", () => ({
|
|
29
|
+
buildDiagramGraphFromScanResult: jest.fn(() => ({
|
|
30
|
+
nodes: [],
|
|
31
|
+
edges: [],
|
|
32
|
+
viewport: { x: 0, y: 0, zoom: 1 },
|
|
33
|
+
})),
|
|
34
|
+
}));
|
|
35
|
+
jest.mock("../../../src/output/json", () => ({
|
|
36
|
+
writeDataflowJson: jest.fn(() => { }),
|
|
37
|
+
}));
|
|
38
|
+
describe("cli scan command ai flags", () => {
|
|
39
|
+
let consoleLogSpy;
|
|
40
|
+
beforeEach(() => {
|
|
41
|
+
consoleLogSpy = jest.spyOn(console, "log").mockImplementation(() => { });
|
|
42
|
+
});
|
|
43
|
+
afterEach(() => {
|
|
44
|
+
consoleLogSpy.mockRestore();
|
|
45
|
+
});
|
|
46
|
+
it("normalizes --ai-inference-scope third-party-only to third_party_only", async () => {
|
|
47
|
+
const { run } = require("../../../src/cli");
|
|
48
|
+
const configResolve = require("../../../src/config/resolve");
|
|
49
|
+
await run([
|
|
50
|
+
"node",
|
|
51
|
+
"cli",
|
|
52
|
+
"scan",
|
|
53
|
+
".",
|
|
54
|
+
"--ai-inference-scope",
|
|
55
|
+
"third-party-only",
|
|
56
|
+
]);
|
|
57
|
+
const firstCall = configResolve.resolveScanConfiguration.mock.calls[0];
|
|
58
|
+
expect(firstCall[0].flags.aiInferenceScope).toBe("third_party_only");
|
|
59
|
+
expect(firstCall[0].flags.aiVerbose).toBeUndefined();
|
|
60
|
+
});
|
|
61
|
+
it("passes --ai-verbose through to config resolution", async () => {
|
|
62
|
+
const { run } = require("../../../src/cli");
|
|
63
|
+
const configResolve = require("../../../src/config/resolve");
|
|
64
|
+
await run(["node", "cli", "scan", ".", "--ai-verbose"]);
|
|
65
|
+
const lastCall = configResolve.resolveScanConfiguration.mock.calls.at(-1);
|
|
66
|
+
expect(lastCall[0].flags.aiVerbose).toBe(true);
|
|
67
|
+
});
|
|
68
|
+
it("prints all proposal property changes one per line without truncation", async () => {
|
|
69
|
+
const { run } = require("../../../src/cli");
|
|
70
|
+
const orchestrator = require("../../../src/core/pipeline/orchestrator");
|
|
71
|
+
orchestrator.scan.mockResolvedValueOnce({
|
|
72
|
+
scanResult: {
|
|
73
|
+
components: [],
|
|
74
|
+
dataFlows: [],
|
|
75
|
+
filesScanned: 0,
|
|
76
|
+
filesSkipped: 0,
|
|
77
|
+
totalLines: 0,
|
|
78
|
+
scanDurationMs: 0,
|
|
79
|
+
warnings: [],
|
|
80
|
+
errors: [],
|
|
81
|
+
languageStats: undefined,
|
|
82
|
+
aiInferenceSummary: {
|
|
83
|
+
ran: true,
|
|
84
|
+
candidatesConsidered: 1,
|
|
85
|
+
proposalsGenerated: 1,
|
|
86
|
+
proposalsApplied: 1,
|
|
87
|
+
proposalsRejected: 0,
|
|
88
|
+
proposalsGeneratedHeuristic: 0,
|
|
89
|
+
proposalsAppliedHeuristic: 0,
|
|
90
|
+
proposalsGeneratedProvider: 1,
|
|
91
|
+
proposalsAppliedProvider: 1,
|
|
92
|
+
providerCalls: 1,
|
|
93
|
+
inputTokens: 10,
|
|
94
|
+
outputTokens: 10,
|
|
95
|
+
totalTokens: 20,
|
|
96
|
+
estimatedCostUsd: 0.001,
|
|
97
|
+
aiProvider: "openai",
|
|
98
|
+
aiModel: "gpt-4o-mini",
|
|
99
|
+
},
|
|
100
|
+
aiInferenceProposalDetails: [
|
|
101
|
+
{
|
|
102
|
+
id: "provider_1",
|
|
103
|
+
source: "provider",
|
|
104
|
+
status: "applied",
|
|
105
|
+
kind: "component_patch",
|
|
106
|
+
candidateType: "node_property",
|
|
107
|
+
agent: "propertyAgent",
|
|
108
|
+
provider: "openai",
|
|
109
|
+
model: "gpt-4o-mini",
|
|
110
|
+
confidence: 0.85,
|
|
111
|
+
confidenceBand: "high",
|
|
112
|
+
targetComponentId: "cmp_1",
|
|
113
|
+
evidence: [
|
|
114
|
+
{
|
|
115
|
+
filePath: "file.ts",
|
|
116
|
+
startLine: 1,
|
|
117
|
+
endLine: 1,
|
|
118
|
+
reason: "reason",
|
|
119
|
+
},
|
|
120
|
+
],
|
|
121
|
+
propertyChanges: [
|
|
122
|
+
{ key: "inference_status", from: undefined, to: "needs_review" },
|
|
123
|
+
{ key: "access_controls_for_delivery", from: null, to: null },
|
|
124
|
+
{ key: "api_versioning_strategy", from: null, to: "none" },
|
|
125
|
+
{ key: "analytics_sdks", from: [], to: null },
|
|
126
|
+
{ key: "cloud_services_used", from: [], to: ["aws"] },
|
|
127
|
+
{ key: "api_endpoint", from: null, to: "/api/ai-completion" },
|
|
128
|
+
{ key: "api_type", from: "rest", to: "rest" },
|
|
129
|
+
{ key: "api_key_management", from: null, to: null },
|
|
130
|
+
],
|
|
131
|
+
},
|
|
132
|
+
],
|
|
133
|
+
},
|
|
134
|
+
});
|
|
135
|
+
await run(["node", "cli", "scan", ".", "--ai-verbose"]);
|
|
136
|
+
const output = consoleLogSpy.mock.calls
|
|
137
|
+
.map((call) => call[0])
|
|
138
|
+
.filter((line) => typeof line === "string");
|
|
139
|
+
const changesLines = output.filter((line) => line.includes("[scan] changes="));
|
|
140
|
+
const allChangesText = changesLines.join("\n");
|
|
141
|
+
expect(changesLines.length).toBe(8);
|
|
142
|
+
expect(allChangesText).toContain('cloud_services_used: [] -> ["aws"]');
|
|
143
|
+
expect(allChangesText).toContain('api_endpoint: null -> "/api/ai-completion"');
|
|
144
|
+
expect(allChangesText).toContain('inference_status: undefined -> "needs_review"');
|
|
145
|
+
expect(allChangesText).toContain("access_controls_for_delivery: null -> null");
|
|
146
|
+
expect(allChangesText).toContain('api_versioning_strategy: null -> "none"');
|
|
147
|
+
expect(output.some((line) => line.includes("changes=... +"))).toBe(false);
|
|
148
|
+
});
|
|
149
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const cli_1 = require("../../../src/cli");
|
|
10
|
+
const dataflow_wrapper_schema_1 = require("../../../src/core/schema/dataflow-wrapper.schema");
|
|
11
|
+
describe("cli scan command - DP-P0-CLI-402 integration", () => {
|
|
12
|
+
it("writes a valid dataflow.json wrapper to the output path", async () => {
|
|
13
|
+
const fixturesRoot = path_1.default.join(__dirname, "..", "..", "fixtures", "typescript-basic");
|
|
14
|
+
const outputPath = path_1.default.join(os_1.default.tmpdir(), `dataparade-scan-${Date.now()}.json`);
|
|
15
|
+
await (0, cli_1.run)(["node", "cli", "scan", fixturesRoot, "--output", outputPath]);
|
|
16
|
+
const contents = fs_1.default.readFileSync(outputPath, "utf8");
|
|
17
|
+
const parsed = JSON.parse(contents);
|
|
18
|
+
const validation = (0, dataflow_wrapper_schema_1.validateDataflowJson)(parsed);
|
|
19
|
+
expect(validation.ok).toBe(true);
|
|
20
|
+
if (!validation.ok)
|
|
21
|
+
return;
|
|
22
|
+
expect(validation.value.graph.nodes.length).toBeGreaterThan(0);
|
|
23
|
+
expect(validation.value.graph.edges.length).toBeGreaterThan(0);
|
|
24
|
+
fs_1.default.unlinkSync(outputPath);
|
|
25
|
+
}, 15000);
|
|
26
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const cli_1 = require("../../../src/cli");
|
|
10
|
+
const dataflow_wrapper_schema_1 = require("../../../src/core/schema/dataflow-wrapper.schema");
|
|
11
|
+
const application_injection_1 = require("../../../src/classifier/application-injection");
|
|
12
|
+
function nodeSourcePaths(node) {
|
|
13
|
+
const locs = node.data?.sourceLocations;
|
|
14
|
+
if (!Array.isArray(locs))
|
|
15
|
+
return [];
|
|
16
|
+
return locs
|
|
17
|
+
.map((loc) => typeof loc === "object" && loc && "filePath" in loc
|
|
18
|
+
? String(loc.filePath ?? "")
|
|
19
|
+
: "")
|
|
20
|
+
.filter(Boolean);
|
|
21
|
+
}
|
|
22
|
+
describe("cli scan command - monorepo app plus terraform", () => {
|
|
23
|
+
it("keeps app API hub, reduces TF to provider and module shells, and lays out app left of TF hub", async () => {
|
|
24
|
+
const prevAiInference = process.env.DATAPARADE_AI_INFERENCE;
|
|
25
|
+
process.env.DATAPARADE_AI_INFERENCE = "false";
|
|
26
|
+
const fixturesRoot = path_1.default.join(__dirname, "..", "..", "fixtures", "monorepo-app-plus-terraform");
|
|
27
|
+
const outputPath = path_1.default.join(os_1.default.tmpdir(), `dataparade-scan-e2e-monorepo-app-plus-terraform-${Date.now()}.json`);
|
|
28
|
+
try {
|
|
29
|
+
await (0, cli_1.run)(["node", "cli", "scan", fixturesRoot, "--output", outputPath]);
|
|
30
|
+
const contents = fs_1.default.readFileSync(outputPath, "utf8");
|
|
31
|
+
const parsed = JSON.parse(contents);
|
|
32
|
+
const validation = (0, dataflow_wrapper_schema_1.validateDataflowJson)(parsed);
|
|
33
|
+
expect(validation.ok).toBe(true);
|
|
34
|
+
if (!validation.ok)
|
|
35
|
+
return;
|
|
36
|
+
const { graph } = validation.value;
|
|
37
|
+
const nodes = graph.nodes;
|
|
38
|
+
const sectionApiNodes = nodes.filter((n) => n.data?.isSectionApiNode === true);
|
|
39
|
+
expect(sectionApiNodes.length).toBeGreaterThan(0);
|
|
40
|
+
expect(sectionApiNodes.some((n) => n.data?.section_id === "packages/app")).toBe(true);
|
|
41
|
+
const placeholderUnderTfModules = nodes.filter((n) => {
|
|
42
|
+
const inModuleTree = nodeSourcePaths(n).some((p) => p.replace(/\\/g, "/").includes("terraform/modules/"));
|
|
43
|
+
const sid = n.data?.section_id;
|
|
44
|
+
const inModuleSection = typeof sid === "string" && sid.includes("terraform/modules");
|
|
45
|
+
if (!inModuleTree && !inModuleSection)
|
|
46
|
+
return false;
|
|
47
|
+
const sourceContext = n.data?.sourceContext;
|
|
48
|
+
const isMain = n.data?.isMainApplication === true ||
|
|
49
|
+
n.data?.isMainApplication === "true";
|
|
50
|
+
const isActor = n.data?.componentType === "actor";
|
|
51
|
+
return (sourceContext === application_injection_1.INJECTED_PROJECT_PLACEHOLDER_SOURCE_CONTEXT &&
|
|
52
|
+
(isMain || isActor));
|
|
53
|
+
});
|
|
54
|
+
expect(placeholderUnderTfModules).toHaveLength(0);
|
|
55
|
+
const tfHubNodes = nodes.filter((n) => {
|
|
56
|
+
const addr = n.data?.terraform_address;
|
|
57
|
+
return (typeof addr === "string" &&
|
|
58
|
+
(addr.startsWith("provider.") || addr.startsWith("module.")) &&
|
|
59
|
+
n.data?.section_id !== "packages/app");
|
|
60
|
+
});
|
|
61
|
+
expect(tfHubNodes.length).toBeGreaterThan(0);
|
|
62
|
+
const providerNodes = tfHubNodes.filter((n) => {
|
|
63
|
+
const addr = n.data?.terraform_address;
|
|
64
|
+
return (typeof addr === "string" &&
|
|
65
|
+
addr.startsWith("provider.") &&
|
|
66
|
+
n.data?.componentType === "third_party");
|
|
67
|
+
});
|
|
68
|
+
expect(providerNodes.length).toBeGreaterThan(0);
|
|
69
|
+
const moduleShellNodes = tfHubNodes.filter((n) => {
|
|
70
|
+
const addr = n.data?.terraform_address;
|
|
71
|
+
if (typeof addr !== "string" || !addr.startsWith("module.")) {
|
|
72
|
+
return false;
|
|
73
|
+
}
|
|
74
|
+
const rt = n.data?.resource_type;
|
|
75
|
+
return (rt === undefined ||
|
|
76
|
+
rt === null ||
|
|
77
|
+
rt === "" ||
|
|
78
|
+
rt === "unknown");
|
|
79
|
+
});
|
|
80
|
+
expect(moduleShellNodes.length).toBeGreaterThan(0);
|
|
81
|
+
const innerTfResourceNodes = nodes.filter((n) => {
|
|
82
|
+
const rt = n.data?.resource_type;
|
|
83
|
+
if (typeof rt !== "string" || !rt.trim() || rt === "unknown") {
|
|
84
|
+
return false;
|
|
85
|
+
}
|
|
86
|
+
return (rt.startsWith("aws_db_") ||
|
|
87
|
+
rt.startsWith("aws_subnet") ||
|
|
88
|
+
rt === "aws_subnet");
|
|
89
|
+
});
|
|
90
|
+
expect(innerTfResourceNodes).toHaveLength(0);
|
|
91
|
+
const appNodes = nodes.filter((n) => n.data?.section_id === "packages/app");
|
|
92
|
+
expect(appNodes.length).toBeGreaterThan(0);
|
|
93
|
+
const maxAppX = Math.max(...appNodes.map((n) => n.position?.x ?? 0));
|
|
94
|
+
const minTfHubX = Math.min(...providerNodes.map((n) => n.position?.x ?? 0));
|
|
95
|
+
expect(maxAppX).toBeLessThan(minTfHubX);
|
|
96
|
+
fs_1.default.unlinkSync(outputPath);
|
|
97
|
+
}
|
|
98
|
+
finally {
|
|
99
|
+
if (prevAiInference === undefined) {
|
|
100
|
+
delete process.env.DATAPARADE_AI_INFERENCE;
|
|
101
|
+
}
|
|
102
|
+
else {
|
|
103
|
+
process.env.DATAPARADE_AI_INFERENCE = prevAiInference;
|
|
104
|
+
}
|
|
105
|
+
}
|
|
106
|
+
}, 20000);
|
|
107
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const cli_1 = require("../../../src/cli");
|
|
10
|
+
const dataflow_wrapper_schema_1 = require("../../../src/core/schema/dataflow-wrapper.schema");
|
|
11
|
+
describe("cli scan command - monorepo sections", () => {
|
|
12
|
+
it("tags nodes with section_id and avoids cross-section edges", async () => {
|
|
13
|
+
const fixturesRoot = path_1.default.join(__dirname, "..", "..", "fixtures", "monorepo-front-back-sections");
|
|
14
|
+
const outputPath = path_1.default.join(os_1.default.tmpdir(), `dataparade-scan-e2e-monorepo-front-back-sections-${Date.now()}.json`);
|
|
15
|
+
await (0, cli_1.run)(["node", "cli", "scan", fixturesRoot, "--output", outputPath]);
|
|
16
|
+
const contents = fs_1.default.readFileSync(outputPath, "utf8");
|
|
17
|
+
const parsed = JSON.parse(contents);
|
|
18
|
+
const validation = (0, dataflow_wrapper_schema_1.validateDataflowJson)(parsed);
|
|
19
|
+
expect(validation.ok).toBe(true);
|
|
20
|
+
if (!validation.ok)
|
|
21
|
+
return;
|
|
22
|
+
const { graph } = validation.value;
|
|
23
|
+
const sectionIds = new Set(graph.nodes
|
|
24
|
+
.map((n) => n?.data?.section_id)
|
|
25
|
+
.filter((v) => typeof v === "string" && v.trim().length > 0));
|
|
26
|
+
expect(sectionIds.size).toBeGreaterThanOrEqual(2);
|
|
27
|
+
// section_role is a user-facing hint: root vs service.
|
|
28
|
+
for (const node of graph.nodes) {
|
|
29
|
+
const sectionId = node?.data?.section_id;
|
|
30
|
+
if (typeof sectionId !== "string" || !sectionId.trim())
|
|
31
|
+
continue;
|
|
32
|
+
const sectionRole = node?.data?.section_role;
|
|
33
|
+
expect(sectionRole).toBeDefined();
|
|
34
|
+
if (sectionId === "root") {
|
|
35
|
+
expect(sectionRole).toBe("root");
|
|
36
|
+
}
|
|
37
|
+
else {
|
|
38
|
+
expect(sectionRole).toBe("service");
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
const hasGlobalNode = graph.nodes.some((n) => n?.data?.section_id === "global");
|
|
42
|
+
expect(hasGlobalNode).toBe(false);
|
|
43
|
+
const nodeSectionId = new Map(graph.nodes.map((n) => [n.id, n?.data?.section_id]));
|
|
44
|
+
const isConcreteServiceSection = (sid) => {
|
|
45
|
+
if (typeof sid !== "string")
|
|
46
|
+
return false;
|
|
47
|
+
if (!sid.trim())
|
|
48
|
+
return false;
|
|
49
|
+
if (sid === "root")
|
|
50
|
+
return false;
|
|
51
|
+
if (sid === "<unsectioned>")
|
|
52
|
+
return false;
|
|
53
|
+
if (sid === "global")
|
|
54
|
+
return false;
|
|
55
|
+
return true;
|
|
56
|
+
};
|
|
57
|
+
const hasCrossSectionEdge = graph.edges.some((e) => {
|
|
58
|
+
const src = nodeSectionId.get(e.source);
|
|
59
|
+
const tgt = nodeSectionId.get(e.target);
|
|
60
|
+
const srcConcrete = isConcreteServiceSection(src);
|
|
61
|
+
const tgtConcrete = isConcreteServiceSection(tgt);
|
|
62
|
+
return srcConcrete && tgtConcrete && src !== tgt;
|
|
63
|
+
});
|
|
64
|
+
expect(hasCrossSectionEdge).toBe(false);
|
|
65
|
+
const hasExpressRouteEvidence = graph.nodes.some((n) => Array.isArray(n?.data?.detectedFrom)
|
|
66
|
+
? n.data.detectedFrom.some((ref) => ref?.pattern === "express_route")
|
|
67
|
+
: false);
|
|
68
|
+
const sectionApiNodes = graph.nodes.filter((n) => n?.data?.isSectionApiNode === true);
|
|
69
|
+
if (hasExpressRouteEvidence) {
|
|
70
|
+
expect(sectionApiNodes.length).toBeGreaterThan(0);
|
|
71
|
+
}
|
|
72
|
+
fs_1.default.unlinkSync(outputPath);
|
|
73
|
+
}, 20000);
|
|
74
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const cli_1 = require("../../../src/cli");
|
|
10
|
+
const dataflow_wrapper_schema_1 = require("../../../src/core/schema/dataflow-wrapper.schema");
|
|
11
|
+
describe("cli scan command - DP-P0-CLI-705 e2e Python basic", () => {
|
|
12
|
+
it("scans python-basic fixture and produces valid dataflow.json with route, database, third-party, and flows", async () => {
|
|
13
|
+
const fixturesRoot = path_1.default.join(__dirname, "..", "..", "fixtures", "python-basic");
|
|
14
|
+
const outputPath = path_1.default.join(os_1.default.tmpdir(), `dataparade-scan-e2e-python-basic-${Date.now()}.json`);
|
|
15
|
+
await (0, cli_1.run)(["node", "cli", "scan", fixturesRoot, "--output", outputPath]);
|
|
16
|
+
const contents = fs_1.default.readFileSync(outputPath, "utf8");
|
|
17
|
+
const parsed = JSON.parse(contents);
|
|
18
|
+
const validation = (0, dataflow_wrapper_schema_1.validateDataflowJson)(parsed);
|
|
19
|
+
expect(validation.ok).toBe(true);
|
|
20
|
+
if (!validation.ok)
|
|
21
|
+
return;
|
|
22
|
+
const { graph } = validation.value;
|
|
23
|
+
expect(Array.isArray(graph.nodes)).toBe(true);
|
|
24
|
+
expect(Array.isArray(graph.edges)).toBe(true);
|
|
25
|
+
expect(graph.nodes.length).toBeGreaterThan(1);
|
|
26
|
+
expect(graph.edges.length).toBeGreaterThan(0);
|
|
27
|
+
const dbNode = graph.nodes.find((node) => {
|
|
28
|
+
const data = node.data;
|
|
29
|
+
return (data &&
|
|
30
|
+
data.componentType === "asset" &&
|
|
31
|
+
data.componentSubType === "database");
|
|
32
|
+
});
|
|
33
|
+
const thirdPartyNode = graph.nodes.find((node) => {
|
|
34
|
+
const data = node.data;
|
|
35
|
+
return (data &&
|
|
36
|
+
data.componentType === "third_party" &&
|
|
37
|
+
data.serviceName === "openai");
|
|
38
|
+
});
|
|
39
|
+
expect(dbNode).toBeDefined();
|
|
40
|
+
expect(thirdPartyNode).toBeDefined();
|
|
41
|
+
fs_1.default.unlinkSync(outputPath);
|
|
42
|
+
}, 15000);
|
|
43
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const cli_1 = require("../../../src/cli");
|
|
10
|
+
const dataflow_wrapper_schema_1 = require("../../../src/core/schema/dataflow-wrapper.schema");
|
|
11
|
+
describe("cli scan command - terraform-basic fixture", () => {
|
|
12
|
+
it("scans terraform-basic fixture and produces valid dataflow.json with nodes and edges", async () => {
|
|
13
|
+
const prevAiInference = process.env.DATAPARADE_AI_INFERENCE;
|
|
14
|
+
process.env.DATAPARADE_AI_INFERENCE = "false";
|
|
15
|
+
const fixturesRoot = path_1.default.join(__dirname, "..", "..", "fixtures", "terraform-basic");
|
|
16
|
+
const outputPath = path_1.default.join(os_1.default.tmpdir(), `dataparade-scan-e2e-terraform-basic-${Date.now()}.json`);
|
|
17
|
+
try {
|
|
18
|
+
await (0, cli_1.run)(["node", "cli", "scan", fixturesRoot, "--output", outputPath]);
|
|
19
|
+
const contents = fs_1.default.readFileSync(outputPath, "utf8");
|
|
20
|
+
const parsed = JSON.parse(contents);
|
|
21
|
+
const validation = (0, dataflow_wrapper_schema_1.validateDataflowJson)(parsed);
|
|
22
|
+
expect(validation.ok).toBe(true);
|
|
23
|
+
if (!validation.ok)
|
|
24
|
+
return;
|
|
25
|
+
const { graph } = validation.value;
|
|
26
|
+
expect(Array.isArray(graph.nodes)).toBe(true);
|
|
27
|
+
expect(Array.isArray(graph.edges)).toBe(true);
|
|
28
|
+
expect(graph.nodes.length).toBeGreaterThan(1);
|
|
29
|
+
expect(graph.edges.length).toBeGreaterThan(0);
|
|
30
|
+
const dbNode = graph.nodes.find((node) => {
|
|
31
|
+
const data = node.data;
|
|
32
|
+
return (data &&
|
|
33
|
+
data.componentType === "asset" &&
|
|
34
|
+
data.componentSubType === "database");
|
|
35
|
+
});
|
|
36
|
+
expect(dbNode).toBeDefined();
|
|
37
|
+
const lambdaNode = graph.nodes.find((node) => {
|
|
38
|
+
const data = node.data;
|
|
39
|
+
return (data &&
|
|
40
|
+
data.componentType === "asset" &&
|
|
41
|
+
(data.managed_service_key === "lambda" ||
|
|
42
|
+
data.resource_type === "aws_lambda_function"));
|
|
43
|
+
});
|
|
44
|
+
expect(lambdaNode).toBeDefined();
|
|
45
|
+
const iamNode = graph.nodes.find((node) => {
|
|
46
|
+
const data = node.data;
|
|
47
|
+
return (typeof data.resource_type === "string" &&
|
|
48
|
+
data.resource_type.startsWith("aws_iam_"));
|
|
49
|
+
});
|
|
50
|
+
expect(iamNode).toBeUndefined();
|
|
51
|
+
fs_1.default.unlinkSync(outputPath);
|
|
52
|
+
}
|
|
53
|
+
finally {
|
|
54
|
+
if (prevAiInference === undefined) {
|
|
55
|
+
delete process.env.DATAPARADE_AI_INFERENCE;
|
|
56
|
+
}
|
|
57
|
+
else {
|
|
58
|
+
process.env.DATAPARADE_AI_INFERENCE = prevAiInference;
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}, 15000);
|
|
62
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
3
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
|
+
};
|
|
5
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
+
const fs_1 = __importDefault(require("fs"));
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const cli_1 = require("../../../src/cli");
|
|
10
|
+
const dataflow_wrapper_schema_1 = require("../../../src/core/schema/dataflow-wrapper.schema");
|
|
11
|
+
describe("cli scan command - DP-P0-CLI-404 e2e TypeScript sample", () => {
|
|
12
|
+
it("scans the e2e-ts-sample fixture and produces a valid dataflow.json with database and third-party components and flows", async () => {
|
|
13
|
+
const fixturesRoot = path_1.default.join(__dirname, "..", "..", "fixtures", "e2e-ts-sample");
|
|
14
|
+
const outputPath = path_1.default.join(os_1.default.tmpdir(), `dataparade-scan-e2e-ts-sample-${Date.now()}.json`);
|
|
15
|
+
await (0, cli_1.run)(["node", "cli", "scan", fixturesRoot, "--output", outputPath]);
|
|
16
|
+
const contents = fs_1.default.readFileSync(outputPath, "utf8");
|
|
17
|
+
const parsed = JSON.parse(contents);
|
|
18
|
+
const validation = (0, dataflow_wrapper_schema_1.validateDataflowJson)(parsed);
|
|
19
|
+
expect(validation.ok).toBe(true);
|
|
20
|
+
if (!validation.ok)
|
|
21
|
+
return;
|
|
22
|
+
const { graph } = validation.value;
|
|
23
|
+
expect(Array.isArray(graph.nodes)).toBe(true);
|
|
24
|
+
expect(Array.isArray(graph.edges)).toBe(true);
|
|
25
|
+
expect(graph.nodes.length).toBeGreaterThan(1);
|
|
26
|
+
expect(graph.edges.length).toBeGreaterThan(0);
|
|
27
|
+
const dbNode = graph.nodes.find((node) => {
|
|
28
|
+
const data = node.data;
|
|
29
|
+
return (data &&
|
|
30
|
+
data.componentType === "asset" &&
|
|
31
|
+
data.componentSubType === "database");
|
|
32
|
+
});
|
|
33
|
+
const thirdPartyNode = graph.nodes.find((node) => {
|
|
34
|
+
const data = node.data;
|
|
35
|
+
return data && data.componentType === "third_party";
|
|
36
|
+
});
|
|
37
|
+
expect(dbNode).toBeDefined();
|
|
38
|
+
expect(thirdPartyNode).toBeDefined();
|
|
39
|
+
fs_1.default.unlinkSync(outputPath);
|
|
40
|
+
}, 15000);
|
|
41
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|