python-botocore/tests/functional/test_client_class_names.py
2022-05-25 15:10:07 -07:00

76 lines
2.3 KiB
Python

# Copyright 2015 Amazon.com, Inc. or its affiliates. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License"). You
# may not use this file except in compliance with the License. A copy of
# the License is located at
#
# http://aws.amazon.com/apache2.0/
#
# or in the "license" file accompanying this file. This file 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 pytest
import botocore.session
REGION = 'us-east-1'
SERVICE_TO_CLASS_NAME = {
'autoscaling': 'AutoScaling',
'cloudformation': 'CloudFormation',
'cloudfront': 'CloudFront',
'cloudhsm': 'CloudHSM',
'cloudsearch': 'CloudSearch',
'cloudsearchdomain': 'CloudSearchDomain',
'cloudtrail': 'CloudTrail',
'cloudwatch': 'CloudWatch',
'codedeploy': 'CodeDeploy',
'cognito-identity': 'CognitoIdentity',
'cognito-sync': 'CognitoSync',
'config': 'ConfigService',
'datapipeline': 'DataPipeline',
'directconnect': 'DirectConnect',
'ds': 'DirectoryService',
'dynamodb': 'DynamoDB',
'ec2': 'EC2',
'ecs': 'ECS',
'efs': 'EFS',
'elasticache': 'ElastiCache',
'elasticbeanstalk': 'ElasticBeanstalk',
'elastictranscoder': 'ElasticTranscoder',
'elb': 'ElasticLoadBalancing',
'emr': 'EMR',
'glacier': 'Glacier',
'iam': 'IAM',
'importexport': 'ImportExport',
'kinesis': 'Kinesis',
'kms': 'KMS',
'lambda': 'Lambda',
'logs': 'CloudWatchLogs',
'machinelearning': 'MachineLearning',
'opsworks': 'OpsWorks',
'rds': 'RDS',
'redshift': 'Redshift',
'route53': 'Route53',
'route53domains': 'Route53Domains',
's3': 'S3',
'sdb': 'SimpleDB',
'ses': 'SES',
'sns': 'SNS',
'sqs': 'SQS',
'ssm': 'SSM',
'storagegateway': 'StorageGateway',
'sts': 'STS',
'support': 'Support',
'swf': 'SWF',
'workspaces': 'WorkSpaces',
}
@pytest.mark.parametrize("service_name", SERVICE_TO_CLASS_NAME)
def test_client_has_correct_class_name(service_name):
session = botocore.session.get_session()
client = session.create_client(service_name, REGION)
assert client.__class__.__name__ == SERVICE_TO_CLASS_NAME[service_name]