@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,27 @@
|
|
|
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 child_process_1 = require("child_process");
|
|
7
|
+
const path_1 = __importDefault(require("path"));
|
|
8
|
+
const terraform_exec_1 = require("../../../src/analyzers/terraform/terraform-exec");
|
|
9
|
+
const hasTerraform = (0, child_process_1.spawnSync)("terraform", ["version"], { encoding: "utf8" }).status === 0;
|
|
10
|
+
describe("terraform-exec", () => {
|
|
11
|
+
const itWithTf = hasTerraform ? it : it.skip;
|
|
12
|
+
it("returns ok:false when plan file is missing", () => {
|
|
13
|
+
const scanRoot = path_1.default.join(__dirname, "..", "..", "fixtures", "terraform-basic");
|
|
14
|
+
const res = (0, terraform_exec_1.runTerraformShowJsonSync)(scanRoot, "nonexistent.tfplan");
|
|
15
|
+
expect(res.ok).toBe(false);
|
|
16
|
+
if (res.ok)
|
|
17
|
+
return;
|
|
18
|
+
expect(res.message.length).toBeGreaterThan(0);
|
|
19
|
+
});
|
|
20
|
+
itWithTf("returns ok:false when file is not a valid Terraform plan/state", () => {
|
|
21
|
+
const jsonFixture = path_1.default.join(__dirname, "..", "..", "fixtures", "terraform-show-extra-bucket.json");
|
|
22
|
+
const scanRoot = path_1.default.dirname(jsonFixture);
|
|
23
|
+
const rel = path_1.default.basename(jsonFixture);
|
|
24
|
+
const res = (0, terraform_exec_1.runTerraformShowJsonSync)(scanRoot, rel);
|
|
25
|
+
expect(res.ok).toBe(false);
|
|
26
|
+
});
|
|
27
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,77 @@
|
|
|
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 path_1 = __importDefault(require("path"));
|
|
7
|
+
const terraform_show_json_1 = require("../../../src/analyzers/terraform/terraform-show-json");
|
|
8
|
+
describe("terraform-show-json merge", () => {
|
|
9
|
+
it("mergeTerraformShowJsonFromDoc adds resources not already in static findings", () => {
|
|
10
|
+
const existing = [
|
|
11
|
+
{
|
|
12
|
+
pattern: "terraform_resource",
|
|
13
|
+
name: "aws_s3_bucket.data",
|
|
14
|
+
confidence: 0.9,
|
|
15
|
+
location: { filePath: "main.tf", startLine: 1, endLine: 5 },
|
|
16
|
+
properties: {
|
|
17
|
+
terraform_address: "aws_s3_bucket.data",
|
|
18
|
+
terraform_block_kind: "resource",
|
|
19
|
+
resource_type: "aws_s3_bucket",
|
|
20
|
+
},
|
|
21
|
+
},
|
|
22
|
+
];
|
|
23
|
+
const doc = {
|
|
24
|
+
planned_values: {
|
|
25
|
+
root_module: {
|
|
26
|
+
resources: [
|
|
27
|
+
{
|
|
28
|
+
address: "aws_s3_bucket.data",
|
|
29
|
+
type: "aws_s3_bucket",
|
|
30
|
+
name: "data",
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
address: "aws_s3_bucket.only_in_plan",
|
|
34
|
+
type: "aws_s3_bucket",
|
|
35
|
+
name: "only_in_plan",
|
|
36
|
+
},
|
|
37
|
+
],
|
|
38
|
+
},
|
|
39
|
+
},
|
|
40
|
+
};
|
|
41
|
+
const merged = (0, terraform_show_json_1.mergeTerraformShowJsonFromDoc)(existing, doc, "fixture.json");
|
|
42
|
+
expect(merged.mergedCount).toBe(1);
|
|
43
|
+
expect(merged.findings).toHaveLength(1);
|
|
44
|
+
expect(merged.findings[0]?.properties?.terraform_address).toBe("aws_s3_bucket.only_in_plan");
|
|
45
|
+
expect(merged.findings[0]?.properties?.terraform_json_source).toBe(true);
|
|
46
|
+
});
|
|
47
|
+
it("mergeTerraformShowJsonFromDoc does not add aws_iam_* resources", () => {
|
|
48
|
+
const existing = [];
|
|
49
|
+
const doc = {
|
|
50
|
+
planned_values: {
|
|
51
|
+
root_module: {
|
|
52
|
+
resources: [
|
|
53
|
+
{
|
|
54
|
+
address: "aws_iam_role.exec",
|
|
55
|
+
type: "aws_iam_role",
|
|
56
|
+
name: "exec",
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
address: "aws_lambda_function.api",
|
|
60
|
+
type: "aws_lambda_function",
|
|
61
|
+
name: "api",
|
|
62
|
+
},
|
|
63
|
+
],
|
|
64
|
+
},
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
const merged = (0, terraform_show_json_1.mergeTerraformShowJsonFromDoc)(existing, doc, "plan.json");
|
|
68
|
+
expect(merged.mergedCount).toBe(1);
|
|
69
|
+
expect(merged.findings[0]?.properties?.resource_type).toBe("aws_lambda_function");
|
|
70
|
+
});
|
|
71
|
+
it("mergeTerraformShowJsonFindings reads fixture file from disk", () => {
|
|
72
|
+
const fixturePath = path_1.default.join(__dirname, "..", "..", "fixtures", "terraform-show-extra-bucket.json");
|
|
73
|
+
const merged = (0, terraform_show_json_1.mergeTerraformShowJsonFindings)([], fixturePath);
|
|
74
|
+
expect(merged.mergedCount).toBe(1);
|
|
75
|
+
expect(merged.findings[0]?.name).toBe("aws_s3_bucket.only_in_plan");
|
|
76
|
+
});
|
|
77
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,61 @@
|
|
|
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 = require("fs");
|
|
7
|
+
const os_1 = __importDefault(require("os"));
|
|
8
|
+
const path_1 = __importDefault(require("path"));
|
|
9
|
+
const dependency_manifests_1 = require("../../../../src/analyzers/typescript/dependency-manifests");
|
|
10
|
+
describe("analyzers/typescript/dependency-manifests", () => {
|
|
11
|
+
async function withTempProject(packageJson) {
|
|
12
|
+
const tmpDir = await fs_1.promises.mkdtemp(path_1.default.join(os_1.default.tmpdir(), "dp-cli-manifest-"));
|
|
13
|
+
const packageJsonPath = path_1.default.join(tmpDir, "package.json");
|
|
14
|
+
await fs_1.promises.writeFile(packageJsonPath, JSON.stringify(packageJson, null, 2), "utf8");
|
|
15
|
+
return tmpDir;
|
|
16
|
+
}
|
|
17
|
+
it("emits a frontend framework finding for React dependencies", async () => {
|
|
18
|
+
const root = await withTempProject({
|
|
19
|
+
name: "sample",
|
|
20
|
+
dependencies: {
|
|
21
|
+
react: "^19.0.0",
|
|
22
|
+
},
|
|
23
|
+
});
|
|
24
|
+
const findings = await (0, dependency_manifests_1.detectTypeScriptPatternsFromDependencyManifests)(root);
|
|
25
|
+
const frontendFinding = findings.find((f) => f.pattern === "express_route" &&
|
|
26
|
+
f.name === "Frontend Application" &&
|
|
27
|
+
f.properties.framework === "react");
|
|
28
|
+
expect(frontendFinding).toBeDefined();
|
|
29
|
+
});
|
|
30
|
+
it("prefers nextjs over react when both dependencies exist", async () => {
|
|
31
|
+
const root = await withTempProject({
|
|
32
|
+
name: "sample-next",
|
|
33
|
+
dependencies: {
|
|
34
|
+
react: "^19.0.0",
|
|
35
|
+
next: "^15.0.0",
|
|
36
|
+
},
|
|
37
|
+
});
|
|
38
|
+
const findings = await (0, dependency_manifests_1.detectTypeScriptPatternsFromDependencyManifests)(root);
|
|
39
|
+
const frontendFindings = findings.filter((f) => f.pattern === "express_route" && f.name === "Frontend Application");
|
|
40
|
+
expect(frontendFindings.length).toBe(1);
|
|
41
|
+
expect(frontendFindings[0].properties.framework).toBe("nextjs");
|
|
42
|
+
});
|
|
43
|
+
it("detects third-party services from manifest dependencies", async () => {
|
|
44
|
+
const root = await withTempProject({
|
|
45
|
+
name: "sample-frontend",
|
|
46
|
+
dependencies: {
|
|
47
|
+
"@google/genai": "^1.0.0",
|
|
48
|
+
"@supabase/supabase-js": "^2.0.0",
|
|
49
|
+
openai: "^6.0.0",
|
|
50
|
+
},
|
|
51
|
+
});
|
|
52
|
+
const findings = await (0, dependency_manifests_1.detectTypeScriptPatternsFromDependencyManifests)(root);
|
|
53
|
+
const externalFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
54
|
+
const serviceNames = new Set(externalFindings
|
|
55
|
+
.map((f) => (typeof f.properties.serviceName === "string" ? f.properties.serviceName : ""))
|
|
56
|
+
.filter(Boolean));
|
|
57
|
+
expect(serviceNames.has("google_ai")).toBe(true);
|
|
58
|
+
expect(serviceNames.has("supabase")).toBe(true);
|
|
59
|
+
expect(serviceNames.has("openai")).toBe(true);
|
|
60
|
+
});
|
|
61
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,225 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const detector_1 = require("../../../../src/analyzers/typescript/detector");
|
|
37
|
+
const patternConfig = __importStar(require("../../../../src/analyzers/typescript/typescript-detection-config"));
|
|
38
|
+
describe("analyzers/typescript/detector - DP-P0-CLI-104", () => {
|
|
39
|
+
function makeFile(content, overrides = {}) {
|
|
40
|
+
return {
|
|
41
|
+
path: overrides.path ?? "src/example.ts",
|
|
42
|
+
name: overrides.name ?? "example.ts",
|
|
43
|
+
content,
|
|
44
|
+
language: overrides.language ?? "typescript",
|
|
45
|
+
size: overrides.size ?? content.length,
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
it("detects express-style routes as express_route findings", () => {
|
|
49
|
+
const file = makeFile(`
|
|
50
|
+
import express from "express";
|
|
51
|
+
const app = express();
|
|
52
|
+
|
|
53
|
+
app.get("/users", (req, res) => {
|
|
54
|
+
res.send("ok");
|
|
55
|
+
});
|
|
56
|
+
`);
|
|
57
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
58
|
+
const routeFindings = findings.filter((f) => f.pattern === "express_route");
|
|
59
|
+
expect(routeFindings.length).toBeGreaterThan(0);
|
|
60
|
+
const first = routeFindings[0];
|
|
61
|
+
expect(first.name).toContain("/users");
|
|
62
|
+
expect(first.properties.framework).toBe("express");
|
|
63
|
+
});
|
|
64
|
+
it("detects database client creation as database_connection findings", () => {
|
|
65
|
+
const file = makeFile(`
|
|
66
|
+
import { Pool } from "pg";
|
|
67
|
+
|
|
68
|
+
const pool = new Pool({
|
|
69
|
+
connectionString: process.env.DATABASE_URL,
|
|
70
|
+
});
|
|
71
|
+
`);
|
|
72
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
73
|
+
const dbFindings = findings.filter((f) => f.pattern === "database_connection");
|
|
74
|
+
expect(dbFindings.length).toBeGreaterThan(0);
|
|
75
|
+
const first = dbFindings[0];
|
|
76
|
+
expect(first.properties.client).toBe("pg");
|
|
77
|
+
expect(first.properties.databaseType).toBe("postgres");
|
|
78
|
+
});
|
|
79
|
+
it("does not misclassify supabase createClient as redis database_connection", () => {
|
|
80
|
+
const file = makeFile(`
|
|
81
|
+
import { createClient } from "@supabase/supabase-js";
|
|
82
|
+
const supabase = createClient(process.env.SUPABASE_URL, process.env.SUPABASE_KEY);
|
|
83
|
+
`, { path: "scripts/supabase-task.mjs", name: "supabase-task.mjs", language: "javascript" });
|
|
84
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
85
|
+
const redisFindings = findings.filter((f) => f.pattern === "database_connection" &&
|
|
86
|
+
String(f.properties?.client ?? "").toLowerCase() === "redis");
|
|
87
|
+
expect(redisFindings).toHaveLength(0);
|
|
88
|
+
const supabaseFindings = findings.filter((f) => f.pattern === "database_connection" &&
|
|
89
|
+
String(f.properties?.client ?? "").toLowerCase() === "supabase");
|
|
90
|
+
expect(supabaseFindings.length).toBeGreaterThan(0);
|
|
91
|
+
});
|
|
92
|
+
it("does not report sql_query_detected when file has no DB client import (avoids false positives from update/select/delete in UI)", () => {
|
|
93
|
+
const file = makeFile(`
|
|
94
|
+
import { updateAsset } from "@/lib/api/assets";
|
|
95
|
+
export function Form() {
|
|
96
|
+
const [selected, setSelected] = useState(null);
|
|
97
|
+
return <Select value={selected} onUpdate={setSelected} />;
|
|
98
|
+
}
|
|
99
|
+
`, { path: "app/components/CreateAssetModal.tsx" });
|
|
100
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
101
|
+
const sqlFindings = findings.filter((f) => f.pattern === "database_connection" && f.name === "sql_query_detected");
|
|
102
|
+
expect(sqlFindings).toHaveLength(0);
|
|
103
|
+
});
|
|
104
|
+
it("reports sql_query_detected only when file uses a DB client and content has SQL keywords", () => {
|
|
105
|
+
const file = makeFile(`
|
|
106
|
+
import { Pool } from "pg";
|
|
107
|
+
const query = "SELECT * FROM users WHERE id = $1";
|
|
108
|
+
const pool = new Pool();
|
|
109
|
+
`);
|
|
110
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
111
|
+
const sqlFindings = findings.filter((f) => f.pattern === "database_connection" && f.name === "sql_query_detected");
|
|
112
|
+
expect(sqlFindings.length).toBe(1);
|
|
113
|
+
expect(sqlFindings[0].properties?.hint).toBe("raw_sql_keyword");
|
|
114
|
+
});
|
|
115
|
+
it("detects external API calls as external_api_call findings", () => {
|
|
116
|
+
const file = makeFile(`
|
|
117
|
+
async function callApi() {
|
|
118
|
+
const res = await fetch("https://api.example.com/users");
|
|
119
|
+
return res.json();
|
|
120
|
+
}
|
|
121
|
+
`);
|
|
122
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
123
|
+
const apiFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
124
|
+
expect(apiFindings.length).toBeGreaterThan(0);
|
|
125
|
+
const first = apiFindings[0];
|
|
126
|
+
expect(first.properties.url).toBe("https://api.example.com/users");
|
|
127
|
+
});
|
|
128
|
+
it("ignores localhost templated URLs for external_api_call detection", () => {
|
|
129
|
+
const file = makeFile(`
|
|
130
|
+
const port = process.env.PORT || "3000";
|
|
131
|
+
logger.log(\`Application is running on: http://localhost:\${port}\`);
|
|
132
|
+
`);
|
|
133
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
134
|
+
const apiFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
135
|
+
expect(apiFindings).toHaveLength(0);
|
|
136
|
+
});
|
|
137
|
+
it("ignores comment-only URL examples for external_api_call detection", () => {
|
|
138
|
+
const file = makeFile(`
|
|
139
|
+
// Example: curl https://api.vendor/v1/resource
|
|
140
|
+
/* See also https://api.vendor/docs */
|
|
141
|
+
export const noop = true;
|
|
142
|
+
`);
|
|
143
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
144
|
+
const apiFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
145
|
+
expect(apiFindings).toHaveLength(0);
|
|
146
|
+
});
|
|
147
|
+
it("detects url: \"https://...\" in object literals and sets serviceName from hostname (no YAML url list)", () => {
|
|
148
|
+
const file = makeFile(`
|
|
149
|
+
request.post(
|
|
150
|
+
{
|
|
151
|
+
url: "https://vectorizer.ai/api/v1/vectorize",
|
|
152
|
+
formData: {},
|
|
153
|
+
},
|
|
154
|
+
function () {},
|
|
155
|
+
);
|
|
156
|
+
`, { path: "services/vectorize.js", name: "vectorize.js", language: "javascript" });
|
|
157
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
158
|
+
const hits = findings.filter((f) => f.pattern === "external_api_call" &&
|
|
159
|
+
String(f.properties?.url ?? "").includes("vectorizer.ai"));
|
|
160
|
+
expect(hits.length).toBeGreaterThan(0);
|
|
161
|
+
expect(hits[0].properties?.serviceName).toBe("vectorizer.ai");
|
|
162
|
+
});
|
|
163
|
+
it("detects auth-related middleware as auth_middleware findings", () => {
|
|
164
|
+
const file = makeFile(`
|
|
165
|
+
import passport from "passport";
|
|
166
|
+
|
|
167
|
+
app.get(
|
|
168
|
+
"/profile",
|
|
169
|
+
passport.authenticate("jwt", { session: false }),
|
|
170
|
+
(req, res) => res.send("ok"),
|
|
171
|
+
);
|
|
172
|
+
`);
|
|
173
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
174
|
+
const authFindings = findings.filter((f) => f.pattern === "auth_middleware");
|
|
175
|
+
expect(authFindings.length).toBeGreaterThan(0);
|
|
176
|
+
const first = authFindings[0];
|
|
177
|
+
expect(first.properties.library).toBe("passport");
|
|
178
|
+
});
|
|
179
|
+
it("detects env variable usage as env_variable findings", () => {
|
|
180
|
+
const file = makeFile(`
|
|
181
|
+
const dbUrl = process.env.DATABASE_URL;
|
|
182
|
+
const apiKey = process.env.API_KEY;
|
|
183
|
+
`);
|
|
184
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
185
|
+
const envFindings = findings.filter((f) => f.pattern === "env_variable");
|
|
186
|
+
expect(envFindings.length).toBeGreaterThanOrEqual(2);
|
|
187
|
+
const keys = envFindings.map((f) => f.properties.key);
|
|
188
|
+
expect(keys).toContain("DATABASE_URL");
|
|
189
|
+
expect(keys).toContain("API_KEY");
|
|
190
|
+
});
|
|
191
|
+
it("respects config_keys from YAML-driven config for config.<field> detection", () => {
|
|
192
|
+
const originalLoader = patternConfig.loadTypeScriptPatternConfig;
|
|
193
|
+
jest
|
|
194
|
+
.spyOn(patternConfig, "loadTypeScriptPatternConfig")
|
|
195
|
+
.mockImplementation(() => {
|
|
196
|
+
const base = originalLoader();
|
|
197
|
+
return {
|
|
198
|
+
...base,
|
|
199
|
+
configKeys: {
|
|
200
|
+
keys: [
|
|
201
|
+
...base.configKeys.keys,
|
|
202
|
+
{
|
|
203
|
+
name: "customKey",
|
|
204
|
+
patternId: "config_file",
|
|
205
|
+
confidence: 0.9,
|
|
206
|
+
},
|
|
207
|
+
],
|
|
208
|
+
},
|
|
209
|
+
};
|
|
210
|
+
});
|
|
211
|
+
const file = {
|
|
212
|
+
path: "src/config.ts",
|
|
213
|
+
name: "config.ts",
|
|
214
|
+
content: `
|
|
215
|
+
const value = config.customKey;
|
|
216
|
+
`,
|
|
217
|
+
language: "typescript",
|
|
218
|
+
size: 0,
|
|
219
|
+
};
|
|
220
|
+
const findings = (0, detector_1.detectPatterns)(file);
|
|
221
|
+
const configFindings = findings.filter((f) => f.pattern === "config_file" && f.name === "config.customKey");
|
|
222
|
+
expect(configFindings.length).toBeGreaterThan(0);
|
|
223
|
+
patternConfig.loadTypeScriptPatternConfig.mockRestore();
|
|
224
|
+
});
|
|
225
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const third_party_detection_1 = require("../../../../src/analyzers/typescript/third-party-detection");
|
|
4
|
+
const parser_1 = require("../../../../src/analyzers/typescript/parser");
|
|
5
|
+
describe("TS external API detection - URL host patterns", () => {
|
|
6
|
+
it("infers serviceName 'auth0' from axios calls to Auth0 URLs", () => {
|
|
7
|
+
const content = `
|
|
8
|
+
import axios from "axios";
|
|
9
|
+
|
|
10
|
+
async function exchangeCode(code: string) {
|
|
11
|
+
return axios.post("https://example-tenant.auth0.com/oauth/token", { code });
|
|
12
|
+
}
|
|
13
|
+
`;
|
|
14
|
+
const file = {
|
|
15
|
+
path: "src/auth/auth0-example.ts",
|
|
16
|
+
name: "auth0-example.ts",
|
|
17
|
+
language: "typescript",
|
|
18
|
+
size: content.length,
|
|
19
|
+
content,
|
|
20
|
+
};
|
|
21
|
+
const model = (0, parser_1.buildCodeModel)(file);
|
|
22
|
+
const findings = (0, third_party_detection_1.detectExternalApiCalls)(file, model);
|
|
23
|
+
const auth0Finding = findings.find((f) => f.pattern === "external_api_call" && f.properties?.serviceName === "auth0");
|
|
24
|
+
expect(auth0Finding).toBeDefined();
|
|
25
|
+
expect(auth0Finding?.properties?.url).toBe("https://example-tenant.auth0.com/oauth/token");
|
|
26
|
+
});
|
|
27
|
+
it("infers serviceName 'sendgrid' from fetch calls to SendGrid API URLs", () => {
|
|
28
|
+
const content = `
|
|
29
|
+
fetch("https://api.sendgrid.com/v3/mail/send", {
|
|
30
|
+
method: "POST",
|
|
31
|
+
headers: { "Authorization": "Bearer " + process.env.SENDGRID_API_KEY },
|
|
32
|
+
body: JSON.stringify({ personalizations: [], from: {}, content: [] }),
|
|
33
|
+
});
|
|
34
|
+
`;
|
|
35
|
+
const file = {
|
|
36
|
+
path: "src/notify/send-email.mjs",
|
|
37
|
+
name: "send-email.mjs",
|
|
38
|
+
language: "javascript",
|
|
39
|
+
size: content.length,
|
|
40
|
+
content,
|
|
41
|
+
};
|
|
42
|
+
const model = (0, parser_1.buildCodeModel)(file);
|
|
43
|
+
const findings = (0, third_party_detection_1.detectExternalApiCalls)(file, model);
|
|
44
|
+
const sendgridFinding = findings.find((f) => f.pattern === "external_api_call" &&
|
|
45
|
+
f.properties?.serviceName === "sendgrid");
|
|
46
|
+
expect(sendgridFinding).toBeDefined();
|
|
47
|
+
expect(sendgridFinding?.properties?.url).toBe("https://api.sendgrid.com/v3/mail/send");
|
|
48
|
+
});
|
|
49
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const third_party_detection_1 = require("../../../../src/analyzers/typescript/third-party-detection");
|
|
4
|
+
const parser_1 = require("../../../../src/analyzers/typescript/parser");
|
|
5
|
+
describe("TS external API detection - Sentry", () => {
|
|
6
|
+
it("infers serviceName 'sentry' from fetch calls to Sentry ingestion URLs", () => {
|
|
7
|
+
const content = `
|
|
8
|
+
fetch("https://o123456.ingest.sentry.io/api/123/envelope/", {
|
|
9
|
+
method: "POST",
|
|
10
|
+
body: "{}",
|
|
11
|
+
});
|
|
12
|
+
`;
|
|
13
|
+
const file = {
|
|
14
|
+
path: "src/monitoring/sentry-example.ts",
|
|
15
|
+
name: "sentry-example.ts",
|
|
16
|
+
language: "typescript",
|
|
17
|
+
size: content.length,
|
|
18
|
+
content,
|
|
19
|
+
};
|
|
20
|
+
const model = (0, parser_1.buildCodeModel)(file);
|
|
21
|
+
const findings = (0, third_party_detection_1.detectExternalApiCalls)(file, model);
|
|
22
|
+
const sentryFinding = findings.find((f) => f.pattern === "external_api_call" &&
|
|
23
|
+
f.properties?.serviceName === "sentry");
|
|
24
|
+
expect(sentryFinding).toBeDefined();
|
|
25
|
+
expect(sentryFinding?.properties?.url).toBe("https://o123456.ingest.sentry.io/api/123/envelope/");
|
|
26
|
+
});
|
|
27
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || (function () {
|
|
19
|
+
var ownKeys = function(o) {
|
|
20
|
+
ownKeys = Object.getOwnPropertyNames || function (o) {
|
|
21
|
+
var ar = [];
|
|
22
|
+
for (var k in o) if (Object.prototype.hasOwnProperty.call(o, k)) ar[ar.length] = k;
|
|
23
|
+
return ar;
|
|
24
|
+
};
|
|
25
|
+
return ownKeys(o);
|
|
26
|
+
};
|
|
27
|
+
return function (mod) {
|
|
28
|
+
if (mod && mod.__esModule) return mod;
|
|
29
|
+
var result = {};
|
|
30
|
+
if (mod != null) for (var k = ownKeys(mod), i = 0; i < k.length; i++) if (k[i] !== "default") __createBinding(result, mod, k[i]);
|
|
31
|
+
__setModuleDefault(result, mod);
|
|
32
|
+
return result;
|
|
33
|
+
};
|
|
34
|
+
})();
|
|
35
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
36
|
+
const path = __importStar(require("path"));
|
|
37
|
+
const file_system_1 = require("../../../../src/ingest/file-system");
|
|
38
|
+
const registry_1 = require("../../../../src/analyzers/registry");
|
|
39
|
+
const typescript_1 = require("../../../../src/analyzers/typescript");
|
|
40
|
+
describe("TS analyzer + ingest integration - DP-P0-CLI-105", () => {
|
|
41
|
+
const FIXTURE_ROOT = path.join(__dirname, "../../../fixtures/typescript-basic");
|
|
42
|
+
beforeEach(() => {
|
|
43
|
+
(0, registry_1.__clearAnalyzersForTest)();
|
|
44
|
+
});
|
|
45
|
+
afterAll(() => {
|
|
46
|
+
(0, registry_1.__clearAnalyzersForTest)();
|
|
47
|
+
});
|
|
48
|
+
it("detects external API calls and env variable usage via ingest + analyzer", async () => {
|
|
49
|
+
const files = await (0, file_system_1.ingestFileSystem)(FIXTURE_ROOT);
|
|
50
|
+
const tsAnalyzer = (0, typescript_1.createTypeScriptAnalyzer)();
|
|
51
|
+
(0, registry_1.registerAnalyzer)("typescript", tsAnalyzer);
|
|
52
|
+
(0, registry_1.registerAnalyzer)("javascript", tsAnalyzer);
|
|
53
|
+
const findings = (0, registry_1.runAnalyzers)(files);
|
|
54
|
+
const byPattern = (pattern) => findings.filter((f) => f.pattern === pattern);
|
|
55
|
+
const externalApis = byPattern("external_api_call");
|
|
56
|
+
const envVars = byPattern("env_variable");
|
|
57
|
+
expect(externalApis.length).toBeGreaterThan(0);
|
|
58
|
+
expect(envVars.length).toBeGreaterThan(0);
|
|
59
|
+
const externalFinding = externalApis[0];
|
|
60
|
+
expect(typeof externalFinding.properties.url).toBe("string");
|
|
61
|
+
const envKeys = envVars.map((f) => f.properties.key);
|
|
62
|
+
expect(envKeys).toContain("API_KEY");
|
|
63
|
+
});
|
|
64
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,99 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const parser_1 = require("../../../../src/analyzers/typescript/parser");
|
|
4
|
+
describe("analyzers/typescript/parser - DP-P0-CLI-103", () => {
|
|
5
|
+
it("normalizes paths to POSIX style", () => {
|
|
6
|
+
expect((0, parser_1.normalizePath)("already/posix/path.ts")).toBe("already/posix/path.ts");
|
|
7
|
+
const windowsLike = "some\\windows\\path.ts";
|
|
8
|
+
expect((0, parser_1.normalizePath)(windowsLike)).toBe("some/windows/path.ts");
|
|
9
|
+
});
|
|
10
|
+
it("builds a basic code model for a TypeScript file", () => {
|
|
11
|
+
const file = {
|
|
12
|
+
path: "src/example.ts",
|
|
13
|
+
name: "example.ts",
|
|
14
|
+
content: `
|
|
15
|
+
import fs from "fs";
|
|
16
|
+
import { join } from "path";
|
|
17
|
+
|
|
18
|
+
export function foo() {
|
|
19
|
+
return join("a", "b");
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
const bar = () => {
|
|
23
|
+
return fs.readFileSync("file.txt", "utf-8");
|
|
24
|
+
};
|
|
25
|
+
`,
|
|
26
|
+
language: "typescript",
|
|
27
|
+
size: 0,
|
|
28
|
+
};
|
|
29
|
+
const result = (0, parser_1.buildCodeModel)(file);
|
|
30
|
+
expect(result.language).toBe("typescript");
|
|
31
|
+
expect(result.normalizedPath).toBe("src/example.ts");
|
|
32
|
+
expect(result.warnings.length).toBe(0);
|
|
33
|
+
const moduleSpecifiers = result.imports.map((i) => i.moduleSpecifier);
|
|
34
|
+
expect(moduleSpecifiers).toContain("fs");
|
|
35
|
+
expect(moduleSpecifiers).toContain("path");
|
|
36
|
+
const importNames = result.imports.flatMap((i) => i.importedNames);
|
|
37
|
+
expect(importNames).toContain("fs");
|
|
38
|
+
expect(importNames).toContain("join");
|
|
39
|
+
const functionNames = result.functions.map((fn) => fn.name);
|
|
40
|
+
expect(functionNames).toContain("foo");
|
|
41
|
+
expect(functionNames).toContain("bar");
|
|
42
|
+
const exportedFunctions = result.functions.filter((fn) => fn.isExported);
|
|
43
|
+
const exportedNames = exportedFunctions.map((fn) => fn.name);
|
|
44
|
+
expect(exportedNames).toContain("foo");
|
|
45
|
+
});
|
|
46
|
+
it("builds a basic code model for a JavaScript file with require()", () => {
|
|
47
|
+
const file = {
|
|
48
|
+
path: "src/example.js",
|
|
49
|
+
name: "example.js",
|
|
50
|
+
content: `
|
|
51
|
+
const http = require("http");
|
|
52
|
+
|
|
53
|
+
function handler() {
|
|
54
|
+
return http.createServer();
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
module.exports = { handler };
|
|
58
|
+
`,
|
|
59
|
+
language: "javascript",
|
|
60
|
+
size: 0,
|
|
61
|
+
};
|
|
62
|
+
const result = (0, parser_1.buildCodeModel)(file);
|
|
63
|
+
expect(result.language).toBe("javascript");
|
|
64
|
+
expect(result.warnings.length).toBe(0);
|
|
65
|
+
const moduleSpecifiers = result.imports.map((i) => i.moduleSpecifier);
|
|
66
|
+
expect(moduleSpecifiers).toContain("http");
|
|
67
|
+
const importNames = result.imports.flatMap((i) => i.importedNames);
|
|
68
|
+
expect(importNames).toContain("http");
|
|
69
|
+
const functionNames = result.functions.map((fn) => fn.name);
|
|
70
|
+
expect(functionNames).toContain("handler");
|
|
71
|
+
});
|
|
72
|
+
it("surfaces parser diagnostics as warnings for syntactically invalid files", () => {
|
|
73
|
+
const file = {
|
|
74
|
+
path: "src/broken.ts",
|
|
75
|
+
name: "broken.ts",
|
|
76
|
+
content: `
|
|
77
|
+
import from;
|
|
78
|
+
export function oops( {
|
|
79
|
+
`,
|
|
80
|
+
language: "typescript",
|
|
81
|
+
size: 0,
|
|
82
|
+
};
|
|
83
|
+
const result = (0, parser_1.buildCodeModel)(file);
|
|
84
|
+
expect(result.warnings.length).toBeGreaterThan(0);
|
|
85
|
+
});
|
|
86
|
+
it("returns a non-fatal result with warnings for unsupported languages", () => {
|
|
87
|
+
const file = {
|
|
88
|
+
path: "config/settings.json",
|
|
89
|
+
name: "settings.json",
|
|
90
|
+
content: `{"ok": true}`,
|
|
91
|
+
language: "json",
|
|
92
|
+
size: 0,
|
|
93
|
+
};
|
|
94
|
+
const result = (0, parser_1.buildCodeModel)(file);
|
|
95
|
+
expect(result.imports).toEqual([]);
|
|
96
|
+
expect(result.functions).toEqual([]);
|
|
97
|
+
expect(result.warnings.length).toBeGreaterThan(0);
|
|
98
|
+
});
|
|
99
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|