-
Notifications
You must be signed in to change notification settings - Fork 15
test(java): enable ot.th/ot.rv tracestate sampling scenarios [java@milan.garnier/ot.th] #7649
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -4065,7 +4065,7 @@ manifest: | |
| tests/parametric/test_otel_tracer.py::Test_Otel_Tracer::test_otel_force_flush: | ||
| - declaration: missing_feature (OTel resource naming implemented in 1.24.0) | ||
| component_version: <=1.23.0 | ||
| tests/parametric/test_otel_tracestate_sampling.py::Test_OtelTracestateSampling: missing_feature (APMAPI-2171) | ||
| tests/parametric/test_otel_tracestate_sampling.py::Test_OtelTracestateSampling: v1.67.0 | ||
| tests/parametric/test_otlp_trace_metrics.py: v1.66.0-SNAPSHOT | ||
| tests/parametric/test_otlp_trace_metrics.py::Test_FR01_Enablement_Configuration::test_fr01_6_disabled_when_apm_tracing_disabled: missing_feature (OTLP trace metrics are still emitted when DD_APM_TRACING_ENABLED=false) | ||
| tests/parametric/test_otlp_trace_metrics.py::Test_FR08_AdditionalTags::test_fr08_10_dd_tags_tracer_tags_resource_attributes: missing_feature (DD_TAGS is not yet reported as datadog.tracer_tags on the OTLP trace metrics resource) | ||
|
|
@@ -4871,16 +4871,16 @@ manifest: | |
| play: missing_feature (OTel HTTP semantics not implemented over both Agent and OTLP export paths) | ||
| uds-spring-boot: missing_feature (OTel HTTP semantics not implemented over both Agent and OTLP export paths) | ||
| spring-boot: missing_feature (OTel HTTP semantics not implemented over both Agent and OTLP export paths) | ||
| tests/test_otel_tracestate_sampling.py::Test_EmitOtOnProbabilityDecision_Rate0_5: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_ForceKeepClearsTh: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_ForwardInboundOtUnchanged: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_ForwardInboundOtUnchangedWhenDropped: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_MalformedOtHandling: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_PreserveDdAndOtherVendors: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_PreserveTracestateMemberOrder: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_SampledWithoutOtNotFabricated: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_ThOnlyDoesNotFabricateRv: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_ThOnlyDoesNotFabricateRvWhenDropped: missing_feature (APMAPI-2171) | ||
| tests/test_otel_tracestate_sampling.py::Test_EmitOtOnProbabilityDecision_Rate0_5: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_ForceKeepClearsTh: v1.67.0 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
When Useful? React with 👍 / 👎. |
||
| tests/test_otel_tracestate_sampling.py::Test_ForwardInboundOtUnchanged: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_ForwardInboundOtUnchangedWhenDropped: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_MalformedOtHandling: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_PreserveDdAndOtherVendors: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_PreserveTracestateMemberOrder: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_SampledWithoutOtNotFabricated: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_ThOnlyDoesNotFabricateRv: v1.67.0 | ||
| tests/test_otel_tracestate_sampling.py::Test_ThOnlyDoesNotFabricateRvWhenDropped: v1.67.0 | ||
| tests/test_otlp_runtime_metrics.py::Test_OtlpRuntimeMetrics::test_dd_metrics_are_absent: bug (APMAPI-1952) | ||
| tests/test_otlp_runtime_metrics.py::Test_OtlpRuntimeMetrics::test_otel_metrics_are_present_and_attributed: | ||
| - weblog_declaration: | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When CI runs these tests against the Java 1.67 development/PR build, whose version is reported as
1.67.0-SNAPSHOT~<sha>, thisv1.67.0condition does not match because the snapshot is semantically earlier than the stable1.67.0release (the Java normalization behavior is covered intests/test_the_test/test_version.py:170-173). Consequently, the parametric suite and all ten similarly changed end-to-end classes remain skipped while validating the implementation branch; use a snapshot-inclusive lower bound such asv1.67.0-SNAPSHOT. .cursor/rules/test-activation.mdcL159-L164Useful? React with 👍 / 👎.