-
Notifications
You must be signed in to change notification settings - Fork 677
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
Audit and test opentelemetry-instrumentation-boto #3376
base: main
Are you sure you want to change the base?
Changes from all commits
553384c
3bd43ab
2dd2911
2b3b0e2
dcf9e6f
7b609d0
d03783d
77a3a29
d1144c1
26639a5
2e3adf2
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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Copyright The OpenTelemetry Authors | ||
# | ||
# Licensed under the Apache License, Version 2.0 (the "License"); | ||
# you may not use this file except in compliance with the License. | ||
# You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
import unittest | ||
|
||
import boto3 | ||
|
||
from opentelemetry.instrumentation.boto import BotoInstrumentor | ||
from opentelemetry.trace import NoOpTracerProvider, get_tracer_provider | ||
|
||
|
||
class TestBotoInstrumentationNoOpTracerProvider(unittest.TestCase): | ||
def setUp(self): | ||
# Set the NoOpTracerProvider | ||
self.noop_tracer_provider = NoOpTracerProvider() | ||
BotoInstrumentor().instrument( | ||
tracer_provider=self.noop_tracer_provider | ||
) | ||
|
||
def tearDown(self): | ||
BotoInstrumentor().uninstrument() | ||
|
||
def test_boto_with_noop_tracer_provider(self): | ||
# Create a boto3 client | ||
client = boto3.client("s3") | ||
|
||
# Perform a simple operation | ||
try: | ||
client.list_buckets() | ||
except Exception: | ||
pass # Ignore any exceptions for this test | ||
|
||
# Ensure no spans are created | ||
tracer = get_tracer_provider().get_tracer("test") | ||
if isinstance(self.noop_tracer_provider, NoOpTracerProvider): | ||
# NoOpTracerProvider does not support span processing | ||
self.assertTrue(True) | ||
else: | ||
spans = tracer.get_span_processor().spans | ||
self.assertEqual(len(spans), 0) | ||
|
||
|
||
if __name__ == "__main__": | ||
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. We don't need to run tests like this 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.
Okay, I removed it in my new commit as I moved the entire function to the other file. |
||
unittest.main() |
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.
Isn't this always true?