@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 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const third_party_evidence_1 = require("../../../src/ai-enrichment/third-party-evidence");
|
|
4
|
+
function candidate(componentId) {
|
|
5
|
+
return {
|
|
6
|
+
id: `cand_${componentId}`,
|
|
7
|
+
candidateType: "third_party",
|
|
8
|
+
priority: 90,
|
|
9
|
+
componentId,
|
|
10
|
+
missingFields: ["vendor", "api_type", "authentication_method"],
|
|
11
|
+
rationale: "fill sparse third-party properties from evidence",
|
|
12
|
+
hints: [],
|
|
13
|
+
};
|
|
14
|
+
}
|
|
15
|
+
function component() {
|
|
16
|
+
return {
|
|
17
|
+
id: "cmp_tp_1",
|
|
18
|
+
name: "Stripe",
|
|
19
|
+
type: "third_party",
|
|
20
|
+
confidence: 0.9,
|
|
21
|
+
detectedFrom: [
|
|
22
|
+
{
|
|
23
|
+
pattern: "external_api_call",
|
|
24
|
+
sourceLocation: {
|
|
25
|
+
filePath: "backend/services/payments/index.ts",
|
|
26
|
+
startLine: 1,
|
|
27
|
+
endLine: 1,
|
|
28
|
+
},
|
|
29
|
+
},
|
|
30
|
+
],
|
|
31
|
+
sourceLocations: [
|
|
32
|
+
{ filePath: "backend/services/payments/index.ts", startLine: 1, endLine: 1 },
|
|
33
|
+
],
|
|
34
|
+
properties: {
|
|
35
|
+
section_id: "backend/services/payments",
|
|
36
|
+
vendor: null,
|
|
37
|
+
serviceName: null,
|
|
38
|
+
client: null,
|
|
39
|
+
integration_method: [],
|
|
40
|
+
api_type: null,
|
|
41
|
+
authentication_method: null,
|
|
42
|
+
documentation_url: null,
|
|
43
|
+
sdk_available: false,
|
|
44
|
+
api_endpoint: null,
|
|
45
|
+
https_enforced: null,
|
|
46
|
+
vendor_soc2_iso27001: [],
|
|
47
|
+
},
|
|
48
|
+
};
|
|
49
|
+
}
|
|
50
|
+
function files() {
|
|
51
|
+
return [
|
|
52
|
+
{
|
|
53
|
+
path: "backend/services/payments/index.ts",
|
|
54
|
+
name: "index.ts",
|
|
55
|
+
language: "typescript",
|
|
56
|
+
size: 200,
|
|
57
|
+
content: [
|
|
58
|
+
'import Stripe from "stripe";',
|
|
59
|
+
"const client = new Stripe(process.env.STRIPE_API_KEY || \"\", { apiVersion: \"2023-10-16\" });",
|
|
60
|
+
"await fetch(\"https://api.stripe.com/v1/customers\", {",
|
|
61
|
+
" headers: { Authorization: `Bearer ${process.env.STRIPE_API_KEY}` }",
|
|
62
|
+
"});",
|
|
63
|
+
].join("\n"),
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
path: "backend/services/payments/package.json",
|
|
67
|
+
name: "package.json",
|
|
68
|
+
language: "json",
|
|
69
|
+
size: 80,
|
|
70
|
+
content: JSON.stringify({
|
|
71
|
+
dependencies: {
|
|
72
|
+
stripe: "^17.0.0",
|
|
73
|
+
},
|
|
74
|
+
}),
|
|
75
|
+
},
|
|
76
|
+
];
|
|
77
|
+
}
|
|
78
|
+
describe("third-party evidence enrichment", () => {
|
|
79
|
+
it("builds an evidence-backed proposal for sparse third-party fields", () => {
|
|
80
|
+
const proposal = (0, third_party_evidence_1.buildThirdPartyHeuristicProposal)({
|
|
81
|
+
candidate: candidate("cmp_tp_1"),
|
|
82
|
+
component: component(),
|
|
83
|
+
files: files(),
|
|
84
|
+
});
|
|
85
|
+
expect(proposal).toBeDefined();
|
|
86
|
+
expect(proposal?.kind).toBe("component_patch");
|
|
87
|
+
expect(proposal?.setProperties.vendor).toBe("Stripe");
|
|
88
|
+
expect(proposal?.setProperties.authentication_method).toBe("bearer_token");
|
|
89
|
+
expect(proposal?.setProperties.api_type).toBe("rest");
|
|
90
|
+
expect(proposal?.setProperties.documentation_url).toBe("https://docs.stripe.com");
|
|
91
|
+
expect(proposal?.evidence.length).toBeGreaterThan(0);
|
|
92
|
+
expect((0, third_party_evidence_1.verifyThirdPartyProposal)(proposal)).toEqual({ ok: true });
|
|
93
|
+
});
|
|
94
|
+
it("accepts proposals for additional fields when evidence is present", () => {
|
|
95
|
+
const proposal = (0, third_party_evidence_1.buildThirdPartyHeuristicProposal)({
|
|
96
|
+
candidate: candidate("cmp_tp_1"),
|
|
97
|
+
component: {
|
|
98
|
+
...component(),
|
|
99
|
+
properties: {
|
|
100
|
+
...component().properties,
|
|
101
|
+
vendor: "Stripe",
|
|
102
|
+
vendor_soc2_iso27001: [],
|
|
103
|
+
},
|
|
104
|
+
},
|
|
105
|
+
files: files(),
|
|
106
|
+
});
|
|
107
|
+
expect(proposal).toBeDefined();
|
|
108
|
+
if (!proposal)
|
|
109
|
+
return;
|
|
110
|
+
proposal.setProperties.vendor_soc2_iso27001 = ["soc2"];
|
|
111
|
+
proposal.propertyEvidence = {
|
|
112
|
+
...(proposal.propertyEvidence ?? {}),
|
|
113
|
+
vendor_soc2_iso27001: proposal.evidence.slice(0, 1),
|
|
114
|
+
};
|
|
115
|
+
expect((0, third_party_evidence_1.verifyThirdPartyProposal)(proposal)).toEqual({ ok: true });
|
|
116
|
+
});
|
|
117
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const third_party_subtype_1 = require("../../../src/ai-enrichment/third-party-subtype");
|
|
4
|
+
function tp(partial) {
|
|
5
|
+
const { name, properties, ...rest } = partial;
|
|
6
|
+
return {
|
|
7
|
+
id: "cmp_1",
|
|
8
|
+
type: "third_party",
|
|
9
|
+
confidence: 0.8,
|
|
10
|
+
detectedFrom: [],
|
|
11
|
+
sourceLocations: [],
|
|
12
|
+
properties: properties ?? {},
|
|
13
|
+
name,
|
|
14
|
+
...rest,
|
|
15
|
+
};
|
|
16
|
+
}
|
|
17
|
+
describe("normalizeThirdPartySubType", () => {
|
|
18
|
+
it("normalizes aliases and accepts taxonomy values", () => {
|
|
19
|
+
expect((0, third_party_subtype_1.normalizeThirdPartySubType)("AI Provider")).toBe("ai_provider");
|
|
20
|
+
expect((0, third_party_subtype_1.normalizeThirdPartySubType)("saas_service")).toBe("saas_service");
|
|
21
|
+
expect((0, third_party_subtype_1.normalizeThirdPartySubType)("payment")).toBe("payment_processor");
|
|
22
|
+
});
|
|
23
|
+
});
|
|
24
|
+
describe("inferThirdPartySubType", () => {
|
|
25
|
+
it("infers ai_provider for OpenAI from name", () => {
|
|
26
|
+
expect((0, third_party_subtype_1.inferThirdPartySubType)(tp({ name: "Openai", properties: { client: "openai" } }))).toBe("ai_provider");
|
|
27
|
+
});
|
|
28
|
+
it("infers payment_processor for Stripe", () => {
|
|
29
|
+
expect((0, third_party_subtype_1.inferThirdPartySubType)(tp({ name: "Stripe" }))).toBe("payment_processor");
|
|
30
|
+
});
|
|
31
|
+
it("keeps existing normalized subType", () => {
|
|
32
|
+
expect((0, third_party_subtype_1.inferThirdPartySubType)(tp({ name: "X", subType: "cloud_provider" }))).toBe("cloud_provider");
|
|
33
|
+
});
|
|
34
|
+
});
|
|
35
|
+
describe("ensureThirdPartySubTypes", () => {
|
|
36
|
+
it("fills missing subType on third_party components", () => {
|
|
37
|
+
const components = [
|
|
38
|
+
tp({ id: "cmp_a", name: "Auth0", subType: undefined }),
|
|
39
|
+
tp({ id: "cmp_b", name: "Internal API", type: "asset", subType: "api" }),
|
|
40
|
+
];
|
|
41
|
+
const filled = (0, third_party_subtype_1.ensureThirdPartySubTypes)(components);
|
|
42
|
+
expect(filled).toBe(1);
|
|
43
|
+
expect(components[0].subType).toBe("saas_service");
|
|
44
|
+
});
|
|
45
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const tools_1 = require("../../../src/ai-enrichment/tools");
|
|
4
|
+
function ctx(files) {
|
|
5
|
+
return {
|
|
6
|
+
components: [],
|
|
7
|
+
dataFlows: [],
|
|
8
|
+
findings: [],
|
|
9
|
+
files,
|
|
10
|
+
sections: [],
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
function openAiPatch(filePath) {
|
|
14
|
+
return {
|
|
15
|
+
kind: "component_patch",
|
|
16
|
+
targetComponentId: "c1",
|
|
17
|
+
candidateType: "third_party",
|
|
18
|
+
setProperties: { vendor: "Acme" },
|
|
19
|
+
confidence: { score: 0.85, band: "high" },
|
|
20
|
+
evidence: [
|
|
21
|
+
{
|
|
22
|
+
filePath,
|
|
23
|
+
startLine: 1,
|
|
24
|
+
endLine: 2,
|
|
25
|
+
reason: "import acme sdk",
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
provider: "openai",
|
|
29
|
+
model: "gpt-4o-mini",
|
|
30
|
+
agent: "tpAgent",
|
|
31
|
+
};
|
|
32
|
+
}
|
|
33
|
+
describe("createAgentTooling validateProposal", () => {
|
|
34
|
+
const scanned = [
|
|
35
|
+
{
|
|
36
|
+
path: "lib/x.ts",
|
|
37
|
+
name: "x.ts",
|
|
38
|
+
content: "export {}",
|
|
39
|
+
language: "typescript",
|
|
40
|
+
size: 10,
|
|
41
|
+
},
|
|
42
|
+
];
|
|
43
|
+
it("allows mock proposals with unknown evidence path", () => {
|
|
44
|
+
const tools = (0, tools_1.createAgentTooling)(ctx(scanned), [], []);
|
|
45
|
+
const mockPatch = {
|
|
46
|
+
...openAiPatch("unknown"),
|
|
47
|
+
provider: "mock",
|
|
48
|
+
model: "heuristic",
|
|
49
|
+
agent: "propertyAgent",
|
|
50
|
+
};
|
|
51
|
+
expect(tools.validateProposal(mockPatch)).toEqual({ ok: true });
|
|
52
|
+
});
|
|
53
|
+
it("rejects non-mock proposal when evidence path is not in scan", () => {
|
|
54
|
+
const tools = (0, tools_1.createAgentTooling)(ctx(scanned), [], []);
|
|
55
|
+
const r = tools.validateProposal(openAiPatch("nowhere.ts"));
|
|
56
|
+
expect(r).toEqual({ ok: false, reason: "evidence_path_not_in_scan" });
|
|
57
|
+
});
|
|
58
|
+
it("accepts non-mock proposal when evidence path matches a scanned file", () => {
|
|
59
|
+
const tools = (0, tools_1.createAgentTooling)(ctx(scanned), [], []);
|
|
60
|
+
expect(tools.validateProposal(openAiPatch("lib/x.ts"))).toEqual({ ok: true });
|
|
61
|
+
});
|
|
62
|
+
it("skips path check when scan has no files", () => {
|
|
63
|
+
const tools = (0, tools_1.createAgentTooling)(ctx([]), [], []);
|
|
64
|
+
expect(tools.validateProposal(openAiPatch("any.ts"))).toEqual({ ok: true });
|
|
65
|
+
});
|
|
66
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const parser_1 = require("../../../../src/analyzers/python/parser");
|
|
4
|
+
function createPythonFile(content, path = "app.py") {
|
|
5
|
+
return {
|
|
6
|
+
path,
|
|
7
|
+
name: path,
|
|
8
|
+
content,
|
|
9
|
+
language: "python",
|
|
10
|
+
size: content.length,
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
describe("Python parser - parsePythonModule", () => {
|
|
14
|
+
it("indexes imports, functions, and module-level calls from a basic module", () => {
|
|
15
|
+
const content = [
|
|
16
|
+
"import requests",
|
|
17
|
+
"from fastapi import FastAPI",
|
|
18
|
+
"",
|
|
19
|
+
"app = FastAPI()",
|
|
20
|
+
"",
|
|
21
|
+
"def ping():",
|
|
22
|
+
" return 'pong'",
|
|
23
|
+
"",
|
|
24
|
+
"@app.get('/items/{item_id}')",
|
|
25
|
+
"async def read_item(item_id: int):",
|
|
26
|
+
" response = requests.get('https://example.com/items')",
|
|
27
|
+
" return {'item_id': item_id, 'status': response.status_code}",
|
|
28
|
+
"",
|
|
29
|
+
].join("\n");
|
|
30
|
+
const file = createPythonFile(content);
|
|
31
|
+
const result = (0, parser_1.parsePythonModule)(file);
|
|
32
|
+
expect(result.warnings).toEqual([]);
|
|
33
|
+
expect(result.imports.length).toBe(2);
|
|
34
|
+
expect(result.functions.length).toBe(2);
|
|
35
|
+
expect(result.moduleLevelCalls.length).toBeGreaterThanOrEqual(1);
|
|
36
|
+
const pingFn = result.functions.find((fn) => fn.name === "ping");
|
|
37
|
+
const readItemFn = result.functions.find((fn) => fn.name === "read_item");
|
|
38
|
+
expect(pingFn).toBeDefined();
|
|
39
|
+
expect(pingFn?.isAsync).toBe(false);
|
|
40
|
+
expect(pingFn?.decorators).toEqual([]);
|
|
41
|
+
expect(readItemFn).toBeDefined();
|
|
42
|
+
expect(readItemFn?.isAsync).toBe(true);
|
|
43
|
+
expect(readItemFn?.decorators).toEqual(["app.get"]);
|
|
44
|
+
});
|
|
45
|
+
it("treats non-python languages as a non-fatal warning", () => {
|
|
46
|
+
const file = {
|
|
47
|
+
path: "app.ts",
|
|
48
|
+
name: "app.ts",
|
|
49
|
+
content: "console.log('hello');",
|
|
50
|
+
language: "typescript",
|
|
51
|
+
size: 25,
|
|
52
|
+
};
|
|
53
|
+
const result = (0, parser_1.parsePythonModule)(file);
|
|
54
|
+
expect(result.imports).toEqual([]);
|
|
55
|
+
expect(result.functions).toEqual([]);
|
|
56
|
+
expect(result.moduleLevelCalls).toEqual([]);
|
|
57
|
+
expect(result.warnings.length).toBeGreaterThan(0);
|
|
58
|
+
});
|
|
59
|
+
it("returns warnings-only behavior for malformed python function signatures", () => {
|
|
60
|
+
const content = [
|
|
61
|
+
"def broken_function:",
|
|
62
|
+
" return 1",
|
|
63
|
+
"",
|
|
64
|
+
"async def also_broken",
|
|
65
|
+
" return 2",
|
|
66
|
+
"",
|
|
67
|
+
].join("\n");
|
|
68
|
+
const result = (0, parser_1.parsePythonModule)(createPythonFile(content, "malformed.py"));
|
|
69
|
+
expect(result.imports).toEqual([]);
|
|
70
|
+
expect(result.functions).toEqual([]);
|
|
71
|
+
expect(result.moduleLevelCalls).toEqual([]);
|
|
72
|
+
expect(result.warnings.length).toBeGreaterThanOrEqual(1);
|
|
73
|
+
expect(result.warnings.join(" ")).toContain("Potentially malformed function signature");
|
|
74
|
+
});
|
|
75
|
+
it("treats unreadable-like python content as non-fatal warning", () => {
|
|
76
|
+
const content = "\u0000\u0000import requests\u0000";
|
|
77
|
+
const result = (0, parser_1.parsePythonModule)(createPythonFile(content, "unreadable.py"));
|
|
78
|
+
expect(result.imports).toEqual([]);
|
|
79
|
+
expect(result.functions).toEqual([]);
|
|
80
|
+
expect(result.moduleLevelCalls).toEqual([]);
|
|
81
|
+
expect(result.warnings.length).toBeGreaterThanOrEqual(1);
|
|
82
|
+
expect(result.warnings.join(" ")).toContain("appears unreadable");
|
|
83
|
+
});
|
|
84
|
+
it("extracts valid constructs while warning on malformed signatures", () => {
|
|
85
|
+
const content = [
|
|
86
|
+
"import requests",
|
|
87
|
+
"",
|
|
88
|
+
"def ok_function():",
|
|
89
|
+
" return requests.get('https://example.com/health').status_code",
|
|
90
|
+
"",
|
|
91
|
+
"def broken_function:",
|
|
92
|
+
" return 1",
|
|
93
|
+
"",
|
|
94
|
+
"bootstrap()",
|
|
95
|
+
"",
|
|
96
|
+
].join("\n");
|
|
97
|
+
const result = (0, parser_1.parsePythonModule)(createPythonFile(content, "mixed.py"));
|
|
98
|
+
expect(result.imports).toHaveLength(1);
|
|
99
|
+
expect(result.functions).toHaveLength(1);
|
|
100
|
+
expect(result.functions[0].name).toBe("ok_function");
|
|
101
|
+
expect(result.moduleLevelCalls.map((call) => call.callee)).toContain("bootstrap");
|
|
102
|
+
expect(result.warnings.join(" ")).toContain("Potentially malformed function signature");
|
|
103
|
+
});
|
|
104
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,289 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const detector_1 = require("../../../../src/analyzers/python/detector");
|
|
4
|
+
function makePythonFile(content, path = "app.py") {
|
|
5
|
+
return {
|
|
6
|
+
path,
|
|
7
|
+
name: path,
|
|
8
|
+
content,
|
|
9
|
+
language: "python",
|
|
10
|
+
size: content.length,
|
|
11
|
+
};
|
|
12
|
+
}
|
|
13
|
+
describe("Python analyzer patterns - DP-P0-CLI-703", () => {
|
|
14
|
+
it("detects FastAPI route handlers as express_route findings", () => {
|
|
15
|
+
const content = [
|
|
16
|
+
"from fastapi import FastAPI",
|
|
17
|
+
"",
|
|
18
|
+
"app = FastAPI()",
|
|
19
|
+
"",
|
|
20
|
+
"@app.get('/items/{item_id}')",
|
|
21
|
+
"async def read_item(item_id: int):",
|
|
22
|
+
" return {'item_id': item_id}",
|
|
23
|
+
"",
|
|
24
|
+
].join("\n");
|
|
25
|
+
const file = makePythonFile(content, "fastapi_app.py");
|
|
26
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
27
|
+
const routeFindings = findings.filter((f) => f.pattern === "express_route");
|
|
28
|
+
expect(routeFindings.length).toBeGreaterThan(0);
|
|
29
|
+
const first = routeFindings[0];
|
|
30
|
+
expect(first.name).toContain("GET");
|
|
31
|
+
expect(first.properties.framework).toBe("fastapi");
|
|
32
|
+
// FastAPI detection should capture the route path when available.
|
|
33
|
+
expect(first.properties.path).toBe("/items/{item_id}");
|
|
34
|
+
});
|
|
35
|
+
it("detects psycopg2 connections as database_connection findings", () => {
|
|
36
|
+
const content = [
|
|
37
|
+
"import psycopg2",
|
|
38
|
+
"",
|
|
39
|
+
"conn = psycopg2.connect(dsn='postgres://example')",
|
|
40
|
+
"",
|
|
41
|
+
].join("\n");
|
|
42
|
+
const file = makePythonFile(content, "db_psycopg.py");
|
|
43
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
44
|
+
const dbFindings = findings.filter((f) => f.pattern === "database_connection");
|
|
45
|
+
expect(dbFindings.length).toBeGreaterThan(0);
|
|
46
|
+
const first = dbFindings[0];
|
|
47
|
+
expect(first.properties.client).toBe("psycopg2");
|
|
48
|
+
expect(first.properties.databaseType).toBe("postgres");
|
|
49
|
+
});
|
|
50
|
+
it("detects requests-based external HTTP calls as external_api_call findings", () => {
|
|
51
|
+
const content = [
|
|
52
|
+
"import requests",
|
|
53
|
+
"",
|
|
54
|
+
"def call_api():",
|
|
55
|
+
" response = requests.get('https://example.com/items')",
|
|
56
|
+
" return response.json()",
|
|
57
|
+
"",
|
|
58
|
+
].join("\n");
|
|
59
|
+
const file = makePythonFile(content, "external_requests.py");
|
|
60
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
61
|
+
const apiFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
62
|
+
expect(apiFindings.length).toBeGreaterThan(0);
|
|
63
|
+
const first = apiFindings[0];
|
|
64
|
+
expect(first.name).toBe("requests_call");
|
|
65
|
+
expect(first.properties.url).toBe("https://example.com/items");
|
|
66
|
+
});
|
|
67
|
+
it("detects jwt usage as auth_middleware findings", () => {
|
|
68
|
+
const content = [
|
|
69
|
+
"import jwt",
|
|
70
|
+
"",
|
|
71
|
+
"def make_token(payload):",
|
|
72
|
+
" return jwt.encode(payload, 'secret', algorithm='HS256')",
|
|
73
|
+
"",
|
|
74
|
+
].join("\n");
|
|
75
|
+
const file = makePythonFile(content, "auth_jwt.py");
|
|
76
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
77
|
+
const authFindings = findings.filter((f) => f.pattern === "auth_middleware");
|
|
78
|
+
expect(authFindings.length).toBeGreaterThan(0);
|
|
79
|
+
const first = authFindings[0];
|
|
80
|
+
expect(first.name).toBe("jwt_auth");
|
|
81
|
+
expect(first.properties.strategy).toBe("jwt");
|
|
82
|
+
});
|
|
83
|
+
it("detects os.environ usage as env_variable findings", () => {
|
|
84
|
+
const content = [
|
|
85
|
+
"import os",
|
|
86
|
+
"",
|
|
87
|
+
"DB_URL = os.environ['DATABASE_URL']",
|
|
88
|
+
"API_KEY = os.getenv('API_KEY')",
|
|
89
|
+
"",
|
|
90
|
+
].join("\n");
|
|
91
|
+
const file = makePythonFile(content, "config_env.py");
|
|
92
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
93
|
+
const envFindings = findings.filter((f) => f.pattern === "env_variable");
|
|
94
|
+
expect(envFindings.length).toBeGreaterThanOrEqual(2);
|
|
95
|
+
const keys = envFindings.map((f) => f.properties.key);
|
|
96
|
+
expect(keys).toContain("DATABASE_URL");
|
|
97
|
+
expect(keys).toContain("API_KEY");
|
|
98
|
+
});
|
|
99
|
+
it("detects sentry_sdk usage as external_api_call findings with serviceName 'sentry'", () => {
|
|
100
|
+
const content = [
|
|
101
|
+
"import sentry_sdk",
|
|
102
|
+
"",
|
|
103
|
+
"sentry_sdk.init(dsn='https://examplePublicKey@o0.ingest.sentry.io/0')",
|
|
104
|
+
"",
|
|
105
|
+
].join("\n");
|
|
106
|
+
const file = makePythonFile(content, "sentry_sdk_example.py");
|
|
107
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
108
|
+
const sentryFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
109
|
+
expect(sentryFindings.length).toBeGreaterThan(0);
|
|
110
|
+
const first = sentryFindings[0];
|
|
111
|
+
expect(first.name).toBe("sentry");
|
|
112
|
+
expect(first.properties.serviceName).toBe("sentry");
|
|
113
|
+
});
|
|
114
|
+
it("detects Flask route handlers as express_route findings", () => {
|
|
115
|
+
const content = [
|
|
116
|
+
"from flask import Flask",
|
|
117
|
+
"",
|
|
118
|
+
"app = Flask(__name__)",
|
|
119
|
+
"",
|
|
120
|
+
"@app.route('/items/{item_id}')",
|
|
121
|
+
"def read_item(item_id):",
|
|
122
|
+
" return {'item_id': item_id}",
|
|
123
|
+
"",
|
|
124
|
+
].join("\n");
|
|
125
|
+
const file = makePythonFile(content, "flask_app.py");
|
|
126
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
127
|
+
const routeFindings = findings.filter((f) => f.pattern === "express_route");
|
|
128
|
+
expect(routeFindings.length).toBeGreaterThan(0);
|
|
129
|
+
const first = routeFindings[0];
|
|
130
|
+
expect(first.properties.framework).toBe("flask");
|
|
131
|
+
expect(first.properties.path).toBe("/items/{item_id}");
|
|
132
|
+
expect(first.name).toContain("GET");
|
|
133
|
+
});
|
|
134
|
+
it("detects Django class-based views from urls.py route bindings", () => {
|
|
135
|
+
const content = [
|
|
136
|
+
"from django.urls import path",
|
|
137
|
+
"from .views import UserListView",
|
|
138
|
+
"",
|
|
139
|
+
"urlpatterns = [",
|
|
140
|
+
" path('users/', UserListView.as_view(), name='user-list'),",
|
|
141
|
+
"]",
|
|
142
|
+
"",
|
|
143
|
+
].join("\n");
|
|
144
|
+
const file = makePythonFile(content, "project/urls.py");
|
|
145
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
146
|
+
const routeFindings = findings.filter((f) => f.pattern === "express_route");
|
|
147
|
+
expect(routeFindings.length).toBeGreaterThan(0);
|
|
148
|
+
const classBased = routeFindings.find((f) => f.properties.framework === "django" &&
|
|
149
|
+
f.properties.path === "users/" &&
|
|
150
|
+
f.properties.handlerType === "class_based_view");
|
|
151
|
+
expect(classBased).toBeDefined();
|
|
152
|
+
});
|
|
153
|
+
it("detects DRF function-based views using @api_view", () => {
|
|
154
|
+
const content = [
|
|
155
|
+
"from rest_framework.decorators import api_view",
|
|
156
|
+
"",
|
|
157
|
+
"@api_view(['GET', 'POST'])",
|
|
158
|
+
"def users(request):",
|
|
159
|
+
" return None",
|
|
160
|
+
"",
|
|
161
|
+
].join("\n");
|
|
162
|
+
const file = makePythonFile(content, "api/views.py");
|
|
163
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
164
|
+
const routeFindings = findings.filter((f) => f.pattern === "express_route");
|
|
165
|
+
expect(routeFindings.length).toBeGreaterThan(0);
|
|
166
|
+
const drfFinding = routeFindings.find((f) => f.properties.framework === "drf" &&
|
|
167
|
+
f.properties.handlerType === "function_based_view");
|
|
168
|
+
expect(drfFinding).toBeDefined();
|
|
169
|
+
expect(drfFinding?.properties.httpMethods).toEqual(["GET", "POST"]);
|
|
170
|
+
});
|
|
171
|
+
it("detects DRF router.register(...) viewset routes in urls.py", () => {
|
|
172
|
+
const content = [
|
|
173
|
+
"from rest_framework.routers import DefaultRouter",
|
|
174
|
+
"from .views import UserViewSet",
|
|
175
|
+
"",
|
|
176
|
+
"router = DefaultRouter()",
|
|
177
|
+
"router.register('users', UserViewSet, basename='user')",
|
|
178
|
+
"",
|
|
179
|
+
"urlpatterns = router.urls",
|
|
180
|
+
"",
|
|
181
|
+
].join("\n");
|
|
182
|
+
const file = makePythonFile(content, "api/urls.py");
|
|
183
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
184
|
+
const routeFindings = findings.filter((f) => f.pattern === "express_route");
|
|
185
|
+
expect(routeFindings.length).toBeGreaterThan(0);
|
|
186
|
+
const drfRoute = routeFindings.find((f) => f.name === "DRF_ROUTE users" &&
|
|
187
|
+
f.properties.framework === "drf" &&
|
|
188
|
+
f.properties.handlerType === "viewset_route");
|
|
189
|
+
expect(drfRoute).toBeDefined();
|
|
190
|
+
expect(drfRoute?.properties.handler).toBe("UserViewSet");
|
|
191
|
+
});
|
|
192
|
+
it("detects login_required decorator usage as auth_middleware findings", () => {
|
|
193
|
+
const content = [
|
|
194
|
+
"from somewhere import login_required",
|
|
195
|
+
"",
|
|
196
|
+
"@login_required",
|
|
197
|
+
"def dashboard():",
|
|
198
|
+
" return 'ok'",
|
|
199
|
+
"",
|
|
200
|
+
].join("\n");
|
|
201
|
+
const file = makePythonFile(content, "auth_login_required.py");
|
|
202
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
203
|
+
const authFindings = findings.filter((f) => f.pattern === "auth_middleware");
|
|
204
|
+
expect(authFindings.length).toBeGreaterThan(0);
|
|
205
|
+
expect(authFindings[0].name).toBe("auth_decorator");
|
|
206
|
+
});
|
|
207
|
+
it("detects dotenv usage as config_file findings (dotenv_config)", () => {
|
|
208
|
+
const content = [
|
|
209
|
+
"import os",
|
|
210
|
+
"from dotenv import load_dotenv",
|
|
211
|
+
"",
|
|
212
|
+
"load_dotenv('.env')",
|
|
213
|
+
"",
|
|
214
|
+
].join("\n");
|
|
215
|
+
const file = makePythonFile(content, "dotenv_example.py");
|
|
216
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
217
|
+
const dotenvFindings = findings.filter((f) => f.pattern === "config_file" && f.name === "dotenv_config");
|
|
218
|
+
expect(dotenvFindings.length).toBeGreaterThan(0);
|
|
219
|
+
});
|
|
220
|
+
it("detects SQLAlchemy connections as database_connection findings", () => {
|
|
221
|
+
const content = [
|
|
222
|
+
"from sqlalchemy import create_engine",
|
|
223
|
+
"",
|
|
224
|
+
"engine = create_engine('postgresql://user:pass@localhost/db')",
|
|
225
|
+
"",
|
|
226
|
+
].join("\n");
|
|
227
|
+
const file = makePythonFile(content, "db_sqlalchemy.py");
|
|
228
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
229
|
+
const dbFindings = findings.filter((f) => f.pattern === "database_connection");
|
|
230
|
+
expect(dbFindings.length).toBeGreaterThan(0);
|
|
231
|
+
const first = dbFindings[0];
|
|
232
|
+
expect(first.properties.client).toBe("sqlalchemy");
|
|
233
|
+
expect(first.properties.databaseType).toBe("sql");
|
|
234
|
+
});
|
|
235
|
+
it("detects Django ORM usage (.objects.) as database_connection findings", () => {
|
|
236
|
+
const content = [
|
|
237
|
+
"from django.db import models",
|
|
238
|
+
"",
|
|
239
|
+
"def list_users():",
|
|
240
|
+
" return models.User.objects.all()",
|
|
241
|
+
"",
|
|
242
|
+
].join("\n");
|
|
243
|
+
const file = makePythonFile(content, "db_django_orm.py");
|
|
244
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
245
|
+
const dbFindings = findings.filter((f) => f.pattern === "database_connection");
|
|
246
|
+
expect(dbFindings.length).toBeGreaterThan(0);
|
|
247
|
+
const first = dbFindings[0];
|
|
248
|
+
expect(first.properties.client).toBe("django_orm");
|
|
249
|
+
expect(first.properties.databaseType).toBe("sql");
|
|
250
|
+
});
|
|
251
|
+
it("infers serviceName from external API URLs (e.g. requests to api.openai.com)", () => {
|
|
252
|
+
const content = [
|
|
253
|
+
"import requests",
|
|
254
|
+
"",
|
|
255
|
+
"response = requests.get('https://api.openai.com/v1/chat/completions')",
|
|
256
|
+
"",
|
|
257
|
+
].join("\n");
|
|
258
|
+
const file = makePythonFile(content, "external_requests_openai.py");
|
|
259
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
260
|
+
const apiFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
261
|
+
expect(apiFindings.length).toBeGreaterThan(0);
|
|
262
|
+
const first = apiFindings[0];
|
|
263
|
+
expect(first.name).toBe("requests_call");
|
|
264
|
+
expect(first.properties.url).toBe("https://api.openai.com/v1/chat/completions");
|
|
265
|
+
expect(first.properties.serviceName).toBe("openai");
|
|
266
|
+
});
|
|
267
|
+
it.each([
|
|
268
|
+
{ moduleName: "boto3", expectedServiceName: "aws" },
|
|
269
|
+
{ moduleName: "stripe", expectedServiceName: "stripe" },
|
|
270
|
+
{ moduleName: "sendgrid", expectedServiceName: "sendgrid" },
|
|
271
|
+
{ moduleName: "twilio.rest", expectedServiceName: "twilio" },
|
|
272
|
+
{ moduleName: "openai", expectedServiceName: "openai" },
|
|
273
|
+
])("detects common Python SDK imports as external_api_call findings (%s)", ({ moduleName, expectedServiceName }) => {
|
|
274
|
+
const content = [
|
|
275
|
+
`import ${moduleName}`,
|
|
276
|
+
"",
|
|
277
|
+
"def run():",
|
|
278
|
+
" return True",
|
|
279
|
+
"",
|
|
280
|
+
].join("\n");
|
|
281
|
+
const file = makePythonFile(content, `${expectedServiceName}_sdk.py`);
|
|
282
|
+
const findings = (0, detector_1.detectPythonPatterns)(file);
|
|
283
|
+
const apiFindings = findings.filter((f) => f.pattern === "external_api_call");
|
|
284
|
+
expect(apiFindings.length).toBeGreaterThan(0);
|
|
285
|
+
const serviceFinding = apiFindings.find((f) => f.name === expectedServiceName &&
|
|
286
|
+
f.properties.serviceName === expectedServiceName);
|
|
287
|
+
expect(serviceFinding).toBeDefined();
|
|
288
|
+
});
|
|
289
|
+
});
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|