Skip to content

Commit

Permalink
update manifest files to use test_inconsistency
Browse files Browse the repository at this point in the history
  • Loading branch information
mabdinur committed Nov 25, 2024
1 parent 6a62392 commit cc9258d
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 deletions manifests/cpp.yml
Original file line number Diff line number Diff line change
Expand Up @@ -172,16 +172,16 @@ tests/:
test_otel_span_with_baggage.py:
Test_Otel_Span_With_Baggage: missing_feature
test_parametric_endpoints.py:
Test_Parametric_DDSpan_Add_Link: missing_feature (add_link endpoint is not implemented)
Test_Parametric_DDSpan_Add_Link: missing_feature (add_link is not supported)
Test_Parametric_DDSpan_Set_Error: bug (APMAPI-778) # The expected error status is not set
Test_Parametric_DDSpan_Set_Metric: missing_feature (Tracer does not provide a public method for directly setting a span metric)
Test_Parametric_DDSpan_Set_Resource: missing_feature (set_resource endpoint is not implemented)
Test_Parametric_DDSpan_Set_Resource: test_inconsistency (set_resource endpoint is not implemented)
Test_Parametric_DDSpan_Start: bug (APMAPI-778) # Cpp parametric app does not support creating a child span from a finished span
Test_Parametric_DDTrace_Baggage: missing_feature (baggage is not supported)
Test_Parametric_DDTrace_Config: missing_feature (config endpoint is not implemented)
Test_Parametric_DDTrace_Crash: missing_feature (crash endpoint is not implemented)
Test_Parametric_DDTrace_Current_Span: missing_feature (current_span endpoint is not implemented)
Test_Parametric_DDTrace_Extract_Headers: missing_feature (extract_headers endpoint is not implemented)
Test_Parametric_DDTrace_Config: test_inconsistency (config endpoint is not implemented)
Test_Parametric_DDTrace_Crash: test_inconsistency (crash endpoint is not implemented)
Test_Parametric_DDTrace_Current_Span: test_inconsistency (current_span endpoint is not implemented)
Test_Parametric_DDTrace_Extract_Headers: test_inconsistency (extract_headers endpoint is not implemented)
# cpp tracer does not support the OpenTelemetry API, otel parametric endpoints are not implemented
Test_Parametric_OtelSpan_End: missing_feature (otel api is not supported)
Test_Parametric_OtelSpan_Events: missing_feature (otel api is not supported)
Expand Down
12 changes: 6 additions & 6 deletions manifests/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -393,15 +393,15 @@ tests/:
test_otel_tracer.py:
Test_Otel_Tracer: v2.8.0
test_parametric_endpoints.py:
Test_Parametric_DDSpan_Add_Link: missing_feature (add_link parametric endpoint is not implemented)
Test_Parametric_DDSpan_Add_Link: test_inconsistency (add_link parametric endpoint is not implemented)
Test_Parametric_DDSpan_Set_Error: bug (APMAPI-778) # Set error endpoint does not set the error.type tag on spans
Test_Parametric_DDSpan_Set_Resource: missing_feature (set_resource parametric endpoint is not implemented)
Test_Parametric_DDTrace_Baggage: missing_feature (baggage endpoints are not implemented)
Test_Parametric_DDTrace_Current_Span: missing_feature (otel current span endpoint is not implemented)
Test_Parametric_DDSpan_Set_Resource: test_inconsistency (set_resource parametric endpoint is not implemented)
Test_Parametric_DDTrace_Baggage: test_inconsistency (baggage endpoints are not implemented)
Test_Parametric_DDTrace_Current_Span: test_inconsistency (current span endpoint is not implemented)
Test_Parametric_OtelSpan_Is_Recording: bug (APMAPI-778) # parametric endpoint attempts to retrieve spans by the `id` instead of `span_id`
Test_Parametric_OtelSpan_Set_Name: bug (APMAPI-778) # updates the operation name of the span not the resource name
Test_Parametric_Otel_Baggage: missing_feature (otel baggage endpoints are not implemented)
Test_Parametric_Otel_Current_Span: missing_feature (otel current span endpoint are not implemented)
Test_Parametric_Otel_Baggage: test_inconsistency (otel baggage endpoints are not implemented)
Test_Parametric_Otel_Current_Span: test_inconsistency (otel current span endpoint are not implemented)
test_span_links.py: missing_feature
test_telemetry.py:
Test_Consistent_Configs: missing_feature
Expand Down
2 changes: 1 addition & 1 deletion manifests/golang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -509,7 +509,7 @@ tests/:
test_otel_span_with_baggage.py:
Test_Otel_Span_With_Baggage: missing_feature
test_parametric_endpoints.py:
Test_Parametric_DDSpan_Add_Link: missing_feature (add_link endpoint is not implemented)
Test_Parametric_DDSpan_Add_Link: missing_feature (add_link is not supported in ddtrace-go<2.0)
Test_Parametric_DDSpan_Set_Resource: missing_feature (does not support setting a resource name after span creation)
Test_Parametric_DDTrace_Baggage: missing_feature (baggage endpoints are not implemented)
Test_Parametric_DDTrace_Crash: missing_feature (crash endpoint is not implemented)
Expand Down
10 changes: 5 additions & 5 deletions manifests/nodejs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -664,15 +664,15 @@ tests/:
test_otel_span_with_baggage.py:
Test_Otel_Span_With_Baggage: missing_feature
test_parametric_endpoints.py:
Test_Parametric_DDSpan_Set_Resource: missing_feature (set_resource endpoint is not implemented)
Test_Parametric_DDSpan_Set_Resource: test_inconsistency (set_resource endpoint is not implemented)
Test_Parametric_DDSpan_Start: bug (APMAPI-778) # The resource name of the child span is overidden by the parent span.
Test_Parametric_DDTrace_Baggage: missing_feature (baggage endpoints are not implemented)
Test_Parametric_DDTrace_Crash: missing_feature (crash endpoint is not implemented)
Test_Parametric_DDTrace_Current_Span: missing_feature (otel current_span endpoint is not supported)
Test_Parametric_DDTrace_Baggage: test_inconsistency (baggage endpoints are not implemented)
Test_Parametric_DDTrace_Crash: test_inconsistency (crash endpoint is not implemented)
Test_Parametric_DDTrace_Current_Span: test_inconsistency (current_span endpoint is not supported)
Test_Parametric_OtelSpan_Set_Name: bug (APMAPI-778) # set_name endpoint should set the resource name on a span (not the operation name)
Test_Parametric_OtelSpan_Start: bug (APMAPI-778) # The expected span.kind tag is not set
Test_Parametric_Otel_Baggage: missing_feature (baggage is not supported)
Test_Parametric_Otel_Current_Span: missing_feature (otel baggage endpoints are not implemented)
Test_Parametric_Otel_Current_Span: test_inconsistency (otel current_span endpoint is not supported)
test_partial_flushing.py:
Test_Partial_Flushing: bug (APMLP-270)
test_span_links.py:
Expand Down
6 changes: 3 additions & 3 deletions manifests/ruby.yml
Original file line number Diff line number Diff line change
Expand Up @@ -397,12 +397,12 @@ tests/:
test_otel_span_with_baggage.py:
Test_Otel_Span_With_Baggage: missing_feature
test_parametric_endpoints.py:
Test_Parametric_DDSpan_Set_Resource: missing_feature (set_resource endpoint is not supported)
Test_Parametric_DDSpan_Set_Resource: test_inconsistency (set_resource endpoint is not supported)
Test_Parametric_DDTrace_Baggage: missing_feature (baggage is not supported)
Test_Parametric_DDTrace_Current_Span: missing_feature (current span endpoint is not supported)
Test_Parametric_DDTrace_Current_Span: test_inconsistency (current span endpoint is not supported)
Test_Parametric_OtelSpan_Set_Name: bug (APMAPI-778) # set_name endpoint should set the resource name on a span (not the operation name)
Test_Parametric_Otel_Baggage: missing_feature (otel baggage is not supported)
Test_Parametric_Otel_Current_Span: missing_feature (current span endpoint is not supported)
Test_Parametric_Otel_Current_Span: test_inconsistency (otel current span endpoint is not supported)
test_otel_api_interoperability.py: missing_feature
test_partial_flushing.py: # Not configurable in a standard way
Test_Partial_Flushing: missing_feature
Expand Down

0 comments on commit cc9258d

Please sign in to comment.