-
Notifications
You must be signed in to change notification settings - Fork 56
/
Copy pathintegration_test_utils.py
72 lines (58 loc) · 2.3 KB
/
integration_test_utils.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
# Copyright 2018 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.
"""Helper utilities for integration tests."""
import os
import pytest
from dynamodb_encryption_sdk.material_providers.aws_kms import AwsKmsCryptographicMaterialsProvider
# convenience imports
try:
from ..functional import functional_test_utils, hypothesis_strategies
except (ImportError, ValueError, SystemError):
if "AWS_ENCRYPTION_SDK_EXAMPLES_TESTING" not in os.environ:
raise
AWS_KMS_KEY_ID = "AWS_ENCRYPTION_SDK_PYTHON_INTEGRATION_TEST_AWS_KMS_KEY_ID"
DDB_TABLE_NAME = "DDB_ENCRYPTION_CLIENT_TEST_TABLE_NAME"
def cmk_arn_value():
"""Retrieve the target CMK ARN from environment variable."""
arn = os.environ.get(AWS_KMS_KEY_ID, None)
if arn is None:
raise ValueError(
'Environment variable "{}" must be set to a valid KMS CMK ARN for integration tests to run'.format(
AWS_KMS_KEY_ID
)
)
if arn.startswith("arn:") and ":alias/" not in arn:
return arn
raise ValueError("KMS CMK ARN provided for integration tests must be a key not an alias")
@pytest.fixture
def cmk_arn():
"""As of Pytest 4.0.0, fixtures cannot be called directly."""
return cmk_arn_value()
@pytest.fixture
def aws_kms_cmp():
return AwsKmsCryptographicMaterialsProvider(key_id=cmk_arn_value())
@pytest.fixture
def ddb_table_name():
"""Retrieve the target DynamoDB table from environment variable."""
try:
return os.environ[DDB_TABLE_NAME]
except KeyError:
raise ValueError(
(
"Environment variable '{}' must be set to the correct DynamoDB table name"
" for integration tests to run"
).format(DDB_TABLE_NAME)
)
@pytest.fixture
def temp_metastore():
yield next(functional_test_utils.build_metastore())