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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
|
# 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.
from awscli.customizations.ecs.deploy import (
TIMEOUT_BUFFER_MIN,
CodeDeployValidator,
)
from awscli.customizations.ecs.exceptions import (
InvalidPlatformError,
InvalidProperyError,
)
from awscli.testutils import unittest
class TestCodeDeployValidator(unittest.TestCase):
TEST_RESOURCES = {
'service': 'test-service',
'service_arn': 'arn:aws:ecs:::service/test-service',
'cluster': 'test-cluster',
'cluster_arn': 'arn:aws:ecs:::cluster/test-cluster',
'app_name': 'test-application',
'deployment_group_name': 'test-deployment-group',
}
TEST_APP_DETAILS = {
'application': {
'applicationId': '876uyh6-45tdfg',
'applicationName': 'test-application',
'computePlatform': 'ECS',
}
}
TEST_DEPLOYMENT_GROUP_DETAILS = {
'deploymentGroupInfo': {
'applicationName': 'test-application',
'deploymentGroupName': 'test-deployment-group',
'computePlatform': 'ECS',
'blueGreenDeploymentConfiguration': {
'deploymentReadyOption': {'waitTimeInMinutes': 5},
'terminateBlueInstancesOnDeploymentSuccess': {
'terminationWaitTimeInMinutes': 10
},
},
'ecsServices': [
{'serviceName': 'test-service', 'clusterName': 'test-cluster'}
],
}
}
def setUp(self):
self.validator = CodeDeployValidator(None, self.TEST_RESOURCES)
self.validator.app_details = self.TEST_APP_DETAILS
self.validator.deployment_group_details = (
self.TEST_DEPLOYMENT_GROUP_DETAILS
)
def test_get_deployment_wait_time(self):
expected_wait = 5 + 10 + TIMEOUT_BUFFER_MIN
actual_wait = self.validator.get_deployment_wait_time()
self.assertEqual(expected_wait, actual_wait)
def test_get_deployment_wait_time_no_dgp(self):
empty_validator = CodeDeployValidator(None, self.TEST_RESOURCES)
actual_wait = empty_validator.get_deployment_wait_time()
self.assertEqual(None, actual_wait)
def test_validations(self):
self.validator.validate_application()
self.validator.validate_deployment_group()
self.validator.validate_all()
def test_validate_application_error_compute_platform(self):
invalid_app = {
'application': {
'applicationName': 'test-application',
'computePlatform': 'Server',
}
}
bad_validator = CodeDeployValidator(None, self.TEST_RESOURCES)
bad_validator.app_details = invalid_app
with self.assertRaises(InvalidPlatformError):
bad_validator.validate_application()
def test_validate_deployment_group_error_compute_platform(self):
invalid_dgp = {'deploymentGroupInfo': {'computePlatform': 'Lambda'}}
bad_validator = CodeDeployValidator(None, self.TEST_RESOURCES)
bad_validator.deployment_group_details = invalid_dgp
with self.assertRaises(InvalidPlatformError):
bad_validator.validate_deployment_group()
def test_validate_deployment_group_error_service(self):
invalid_dgp = {
'deploymentGroupInfo': {
'computePlatform': 'ECS',
'ecsServices': [
{
'serviceName': 'the-wrong-test-service',
'clusterName': 'test-cluster',
}
],
}
}
bad_validator = CodeDeployValidator(None, self.TEST_RESOURCES)
bad_validator.deployment_group_details = invalid_dgp
with self.assertRaises(InvalidProperyError):
bad_validator.validate_deployment_group()
def test_validate_deployment_group_error_cluster(self):
invalid_dgp = {
'deploymentGroupInfo': {
'computePlatform': 'ECS',
'ecsServices': [
{
'serviceName': 'test-service',
'clusterName': 'the-wrong-test-cluster',
}
],
}
}
bad_validator = CodeDeployValidator(None, self.TEST_RESOURCES)
bad_validator.deployment_group_details = invalid_dgp
with self.assertRaises(InvalidProperyError):
bad_validator.validate_deployment_group()
|