-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add span links system tests for nodejs (#2065)
* add span links system tests for nodejs --------- Co-authored-by: Munir Abdinur <[email protected]>
- Loading branch information
1 parent
e0fc29b
commit cfbe667
Showing
4 changed files
with
60 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -405,7 +405,7 @@ def test_otel_set_attributes_separately(self, test_agent, test_library): | |
@missing_feature(context.library == "dotnet", reason="Not implemented") | ||
@missing_feature(context.library < "[email protected]", reason="Implemented in 1.26.0") | ||
@missing_feature(context.library == "golang", reason="Not implemented") | ||
@missing_feature(context.library == "nodejs", reason="Not implemented") | ||
@missing_feature(context.library < "nodejs@5.3.0", reason="Implemented in 3.48.0, 4.27.0, and 5.3.0") | ||
@missing_feature(context.library == "ruby", reason="Not implemented") | ||
@missing_feature(context.library == "php", reason="Not implemented") | ||
def test_otel_span_started_with_link_from_another_span(self, test_agent, test_library): | ||
|
@@ -448,7 +448,7 @@ def test_otel_span_started_with_link_from_another_span(self, test_agent, test_li | |
@missing_feature(context.library == "dotnet", reason="Not implemented") | ||
@missing_feature(context.library < "[email protected]", reason="Implemented in 1.26.0") | ||
@missing_feature(context.library == "golang", reason="Not implemented") | ||
@missing_feature(context.library == "nodejs", reason="Not implemented") | ||
@missing_feature(context.library < "nodejs@5.3.0", reason="Implemented in 3.48.0, 4.27.0, and 5.3.0") | ||
@missing_feature(context.library < "[email protected]", reason="Not implemented") | ||
@missing_feature(context.library == "php", reason="Not implemented") | ||
def test_otel_span_started_with_link_from_datadog_headers(self, test_agent, test_library): | ||
|
@@ -499,7 +499,7 @@ def test_otel_span_started_with_link_from_datadog_headers(self, test_agent, test | |
@missing_feature(context.library == "dotnet", reason="Not implemented") | ||
@missing_feature(context.library < "[email protected]", reason="Implemented in 1.28.0") | ||
@missing_feature(context.library == "golang", reason="Not implemented") | ||
@missing_feature(context.library == "nodejs", reason="Not implemented") | ||
@missing_feature(context.library < "nodejs@5.3.0", reason="Implemented in 3.48.0, 4.27.0, and 5.3.0") | ||
@missing_feature(context.library < "[email protected]", reason="Not implemented") | ||
@missing_feature(context.library == "php", reason="Not implemented") | ||
def test_otel_span_started_with_link_from_w3c_headers(self, test_agent, test_library): | ||
|
@@ -547,7 +547,7 @@ def test_otel_span_started_with_link_from_w3c_headers(self, test_agent, test_lib | |
@missing_feature(context.library == "dotnet", reason="Not implemented") | ||
@missing_feature(context.library < "[email protected]", reason="Implemented in 1.26.0") | ||
@missing_feature(context.library == "golang", reason="Not implemented") | ||
@missing_feature(context.library == "nodejs", reason="Not implemented") | ||
@missing_feature(context.library < "nodejs@5.3.0", reason="Implemented in 3.48.0, 4.27.0, and 5.3.0") | ||
@missing_feature(context.library < "[email protected]", reason="Not implemented") | ||
@missing_feature(context.library == "php", reason="Not implemented") | ||
def test_otel_span_started_with_link_from_other_spans(self, test_agent, test_library): | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters