Skip to content

Commit

Permalink
enable config consistency system tests dotnet (#3350)
Browse files Browse the repository at this point in the history
  • Loading branch information
khanayan123 authored Oct 31, 2024
1 parent 9f21f5c commit c846718
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions manifests/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -325,8 +325,8 @@ tests/:
TestAdmisionControllerProfiling: missing_feature
parametric/:
test_config_consistency.py:
Test_Config_RateLimit: missing_feature
Test_Config_TraceAgentURL: missing_feature
Test_Config_RateLimit: v3.4.1
Test_Config_TraceAgentURL: v3.4.1
Test_Config_TraceEnabled: v3.3.0
Test_Config_TraceLogDirectory: v3.3.0
Test_Config_UnifiedServiceTagging: v3.3.0
Expand Down Expand Up @@ -388,8 +388,8 @@ tests/:
test_miscs.py:
Test_Miscs: missing_feature
test_config_consistency.py:
Test_Config_ClientIPHeader_Configured: missing_feature (Not actually passing telemetry test so disabling until I do)
Test_Config_ClientIPHeader_Precedence: missing_feature (all headers listed in the RFC are not supported)
Test_Config_ClientIPHeader_Configured: v3.4.1
Test_Config_ClientIPHeader_Precedence: v3.4.1
Test_Config_ClientTagQueryString_Configured: missing_feature (configuration DNE)
Test_Config_ClientTagQueryString_Empty: missing_feature (Not actually passing telemetry test so disabling until I do)
Test_Config_HttpClientErrorStatuses_Default: missing_feature
Expand All @@ -398,8 +398,8 @@ tests/:
Test_Config_HttpServerErrorStatuses_FeatureFlagCustom: missing_feature
Test_Config_IntegrationEnabled_False: missing_feature (Need to update the casing of the integration to Upper case)
Test_Config_IntegrationEnabled_True: missing_feature (Need to update the casing of the integration to Upper case)
Test_Config_ObfuscationQueryStringRegexp_Configured: missing_feature
Test_Config_ObfuscationQueryStringRegexp_Empty: missing_feature
Test_Config_ObfuscationQueryStringRegexp_Configured: v3.4.1
Test_Config_ObfuscationQueryStringRegexp_Empty: v3.4.1
Test_Config_UnifiedServiceTagging_CustomService: v3.3.0
Test_Config_UnifiedServiceTagging_Default: v3.3.0
test_data_integrity.py:
Expand Down
2 changes: 0 additions & 2 deletions utils/_context/_scenarios/parametric.py
Original file line number Diff line number Diff line change
Expand Up @@ -485,8 +485,6 @@ def dotnet_library_factory():
ENV DD_TRACE_Process_ENABLED=false
ENV DD_TRACE_OTEL_ENABLED=false
# "disable" rate limiting by default by setting it to a large value
ENV DD_TRACE_RATE_LIMIT=10000000
COPY --from=build /app/out /app
COPY --from=build /app/SYSTEM_TESTS_LIBRARY_VERSION /app/SYSTEM_TESTS_LIBRARY_VERSION
Expand Down
2 changes: 2 additions & 0 deletions utils/build/docker/dotnet/parametric/Endpoints/ApmTestApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ private static string GetTracerConfig(HttpRequest request)
{ "dd_trace_debug", debugEnabled ? "true" : "false" },
{ "dd_trace_otel_enabled", isOtelEnabled.ToString().ToLowerInvariant() },
{ "dd_log_level", null },
{ "dd_trace_agent_url", tracerSettings.AgentUri },
{ "dd_trace_rate_limit", tracerSettings.MaxTracesSubmittedPerSecond.ToString() },
// { "dd_trace_sample_ignore_parent", "null" }, // Not supported
};

Expand Down

0 comments on commit c846718

Please sign in to comment.