python-botocore/tests/integration/test_loaders.py
2022-05-25 15:10:07 -07:00

73 lines
2.6 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 os
import botocore.session
from tests import mock, unittest
# Basic sanity checks for loader functionality.
# We're not using BaseEnvVar here because we don't actually
# want to patch out all of os.environ, we just want to ensure
# AWS_DATA_PATH doesn't affect our test results.
class TestLoaderBasicFunctionality(unittest.TestCase):
def setUp(self):
self.environ = os.environ.copy()
self.patched = mock.patch('os.environ', self.environ)
self.patched.start()
self.environ.pop('AWS_DATA_PATH', None)
self.session = botocore.session.get_session()
self.loader = self.session.get_component('data_loader')
def tearDown(self):
self.patched.stop()
def test_search_path_has_at_least_one_entry(self):
self.assertTrue(len(self.loader.search_paths) > 0)
def test_can_list_available_services(self):
# We don't want an exact check, as this list changes over time.
# We just need a basic sanity check.
available_services = self.loader.list_available_services(
type_name='service-2'
)
self.assertIn('ec2', available_services)
self.assertIn('s3', available_services)
def test_can_determine_latest_version(self):
api_versions = self.loader.list_api_versions(
service_name='ec2', type_name='service-2'
)
self.assertEqual(
self.loader.determine_latest_version(
service_name='ec2', type_name='service-2'
),
max(api_versions),
)
def test_can_load_service_model(self):
waiters = self.loader.load_service_model(
service_name='ec2', type_name='waiters-2'
)
self.assertIn('waiters', waiters)
def test_can_load_data(self):
api_version = self.loader.determine_latest_version(
service_name='ec2', type_name='service-2'
)
data = self.loader.load_data(
os.path.join('ec2', api_version, 'service-2')
)
self.assertIn('metadata', data)