Files
Diego Hurtado a9247774c4 Point pylint to the package root directories (#2658)
* Point pylint to the root directories

Fixes #2657

* Use cd with instrumentations

* Do the same for the rest of the components

* Specify pylint configuration file

* Fix tox lint for sio-pika

* Fix commands for util-http and azure detector

* Fix lint for sdk-extension-aws

* Fix lint for opentelemetry-instrumentation

* Fix lint for grpc instrumentation

* Fix lint for opentelemetry-instrumentation
2024-07-03 16:22:00 -06:00

64 lines
2.3 KiB
Python

# 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
from collections import OrderedDict
from unittest.mock import patch
from opentelemetry.sdk.extension.aws.resource._lambda import ( # pylint: disable=no-name-in-module
AwsLambdaResourceDetector,
)
from opentelemetry.semconv.resource import (
CloudPlatformValues,
CloudProviderValues,
ResourceAttributes,
)
MockLambdaResourceAttributes = {
ResourceAttributes.CLOUD_PROVIDER: CloudProviderValues.AWS.value,
ResourceAttributes.CLOUD_PLATFORM: CloudPlatformValues.AWS_LAMBDA.value,
ResourceAttributes.CLOUD_REGION: "mock-west-2",
ResourceAttributes.FAAS_NAME: "mock-lambda-name",
ResourceAttributes.FAAS_VERSION: "mock-version-42",
ResourceAttributes.FAAS_INSTANCE: "mock-log-stream",
ResourceAttributes.FAAS_MAX_MEMORY: 128,
}
class AwsLambdaResourceDetectorTest(unittest.TestCase):
@patch.dict(
"os.environ",
{
"AWS_REGION": MockLambdaResourceAttributes[
ResourceAttributes.CLOUD_REGION
],
"AWS_LAMBDA_FUNCTION_NAME": MockLambdaResourceAttributes[
ResourceAttributes.FAAS_NAME
],
"AWS_LAMBDA_FUNCTION_VERSION": MockLambdaResourceAttributes[
ResourceAttributes.FAAS_VERSION
],
"AWS_LAMBDA_LOG_STREAM_NAME": MockLambdaResourceAttributes[
ResourceAttributes.FAAS_INSTANCE
],
"AWS_LAMBDA_FUNCTION_MEMORY_SIZE": f"{MockLambdaResourceAttributes[ResourceAttributes.FAAS_MAX_MEMORY]}",
},
clear=True,
)
def test_simple_create(self):
actual = AwsLambdaResourceDetector().detect()
self.assertDictEqual(
actual.attributes.copy(), OrderedDict(MockLambdaResourceAttributes)
)