Skip to content

Commit

Permalink
Merge pull request #2522 from DataDog/gnufede/asm-standalone-propagation
Browse files Browse the repository at this point in the history
asm standalone billing tests
  • Loading branch information
gnufede committed Jun 11, 2024
2 parents 948b745 + 83081ea commit 1c75270
Show file tree
Hide file tree
Showing 13 changed files with 367 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/run-end-to-end.yml
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,11 @@ jobs:
run: ./run.sh APPSEC_RASP
env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
- name: Run APPSEC_STANDALONE scenario
if: always() && steps.build.outcome == 'success' && contains(inputs.scenarios, '"APPSEC_STANDALONE"')
run: ./run.sh APPSEC_STANDALONE
env:
DD_API_KEY: ${{ secrets.DD_API_KEY }}
- name: Run SAMPLING scenario
if: always() && steps.build.outcome == 'success' && contains(inputs.scenarios, '"SAMPLING"')
run: ./run.sh SAMPLING
Expand Down
1 change: 1 addition & 0 deletions manifests/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ tests/:
test_telemetry.py: irrelevant (ASM is not implemented in C++)
test_PII.py: irrelevant (ASM is not implemented in C++)
test_alpha.py: irrelevant (ASM is not implemented in C++)
test_asm_standalone.py: irrelevant (ASM is not implemented in C++)
test_automated_login_events.py: irrelevant (ASM is not implemented in C++)
test_blocking_addresses.py: irrelevant (ASM is not implemented in C++)
test_client_ip.py: irrelevant (ASM is not implemented in C++)
Expand Down
2 changes: 2 additions & 0 deletions manifests/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ tests/:
Test_Scrubbing: missing_feature
test_alpha.py:
Test_Basic: v1.28.6
test_asm_standalone.py:
Test_AppSecStandalone_UpstreamPropagation: missing_feature
test_automated_login_events.py:
Test_Login_Events: v2.32.0
Test_Login_Events_Extended: v2.33.0
Expand Down
2 changes: 2 additions & 0 deletions manifests/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -241,6 +241,8 @@ tests/:
chi: v1.36.0
echo: v1.36.0
gin: v1.37.0
test_asm_standalone.py:
Test_AppSecStandalone_UpstreamPropagation: missing_feature
test_automated_login_events.py:
Test_Login_Events: missing_feature
Test_Login_Events_Extended: missing_feature
Expand Down
2 changes: 2 additions & 0 deletions manifests/java.yml
Original file line number Diff line number Diff line change
Expand Up @@ -576,6 +576,8 @@ tests/:
'*': v0.87.0
akka-http: v1.22.0
spring-boot-3-native: missing_feature (GraalVM. Tracing support only)
test_asm_standalone.py:
Test_AppSecStandalone_UpstreamPropagation: missing_feature
test_automated_login_events.py:
Test_Login_Events: missing_feature
Test_Login_Events_Extended: missing_feature
Expand Down
2 changes: 2 additions & 0 deletions manifests/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,6 +270,8 @@ tests/:
Test_Scrubbing: missing_feature
test_alpha.py:
Test_Basic: v2.0.0
test_asm_standalone.py:
Test_AppSecStandalone_UpstreamPropagation: missing_feature
test_automated_login_events.py:
Test_Login_Events:
'*': *ref_4_4_0
Expand Down
2 changes: 2 additions & 0 deletions manifests/php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,6 +160,8 @@ tests/:
Test_TelemetryMetrics: missing_feature
test_PII.py:
Test_Scrubbing: missing_feature
test_asm_standalone.py:
Test_AppSecStandalone_UpstreamPropagation: missing_feature
test_automated_login_events.py:
Test_Login_Events: v0.89.0
Test_Login_Events_Extended: v0.89.0
Expand Down
2 changes: 2 additions & 0 deletions manifests/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -343,6 +343,8 @@ tests/:
Test_Basic:
'*': v1.1.0rc2.dev
fastapi: v2.4.0.dev1
test_asm_standalone.py:
Test_AppSecStandalone_UpstreamPropagation: missing_feature
test_automated_login_events.py:
Test_Login_Events:
'*': v2.10.0.dev
Expand Down
2 changes: 2 additions & 0 deletions manifests/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ tests/:
Test_TelemetryMetrics: missing_feature
test_PII.py:
Test_Scrubbing: missing_feature
test_asm_standalone.py:
Test_AppSecStandalone_UpstreamPropagation: missing_feature
test_automated_login_events.py:
Test_Login_Events:
'*': v1.13.0
Expand Down
1 change: 1 addition & 0 deletions scenario_groups.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ APPSEC_SCENARIOS: &appsec_scenarios
- APPSEC_API_SECURITY
- APPSEC_API_SECURITY_NO_RESPONSE_BODY
- APPSEC_AUTO_EVENTS_EXTENDED
- APPSEC_STANDALONE

# Scenarios covering Remote Configuration
REMOTE_CONFIG_SCENARIOS: &remote_config_scenarios
Expand Down
Loading

0 comments on commit 1c75270

Please sign in to comment.