2020-07-03 13:23:17 +00:00
|
|
|
import boto3
|
2023-11-30 15:55:51 +00:00
|
|
|
import pytest
|
|
|
|
from botocore.exceptions import ClientError
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
from moto import mock_aws
|
2020-07-03 13:23:17 +00:00
|
|
|
from moto.applicationautoscaling import models
|
|
|
|
from moto.applicationautoscaling.exceptions import AWSValidationException
|
2023-11-30 15:55:51 +00:00
|
|
|
|
2020-07-03 13:23:17 +00:00
|
|
|
from .test_applicationautoscaling import register_scalable_target
|
|
|
|
|
|
|
|
DEFAULT_REGION = "us-east-1"
|
|
|
|
DEFAULT_ECS_CLUSTER = "default"
|
|
|
|
DEFAULT_ECS_TASK = "test_ecs_task"
|
|
|
|
DEFAULT_ECS_SERVICE = "sample-webapp"
|
|
|
|
DEFAULT_SERVICE_NAMESPACE = "ecs"
|
2022-11-17 22:41:08 +00:00
|
|
|
DEFAULT_RESOURCE_ID = f"service/{DEFAULT_ECS_CLUSTER}/{DEFAULT_ECS_SERVICE}"
|
2020-07-03 13:23:17 +00:00
|
|
|
DEFAULT_SCALABLE_DIMENSION = "ecs:service:DesiredCount"
|
|
|
|
DEFAULT_MIN_CAPACITY = 1
|
|
|
|
DEFAULT_MAX_CAPACITY = 1
|
|
|
|
DEFAULT_ROLE_ARN = "test:arn"
|
|
|
|
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
@mock_aws
|
2020-07-03 13:23:17 +00:00
|
|
|
def test_describe_scalable_targets_with_invalid_scalable_dimension_should_return_validation_exception():
|
|
|
|
client = boto3.client("application-autoscaling", region_name=DEFAULT_REGION)
|
|
|
|
|
2021-10-18 19:44:29 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.describe_scalable_targets(
|
2020-11-11 15:55:37 +00:00
|
|
|
ServiceNamespace=DEFAULT_SERVICE_NAMESPACE, ScalableDimension="foo"
|
2020-07-03 13:23:17 +00:00
|
|
|
)
|
2021-10-18 19:44:29 +00:00
|
|
|
err = ex.value.response
|
2023-06-08 11:32:46 +00:00
|
|
|
assert err["Error"]["Code"] == "ValidationException"
|
|
|
|
assert "1 validation error detected" in err["Error"]["Message"]
|
|
|
|
assert err["ResponseMetadata"]["HTTPStatusCode"] == 400
|
2020-07-03 13:23:17 +00:00
|
|
|
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
@mock_aws
|
2020-07-03 13:23:17 +00:00
|
|
|
def test_describe_scalable_targets_with_invalid_service_namespace_should_return_validation_exception():
|
|
|
|
client = boto3.client("application-autoscaling", region_name=DEFAULT_REGION)
|
|
|
|
|
2021-10-18 19:44:29 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.describe_scalable_targets(
|
2020-11-11 15:55:37 +00:00
|
|
|
ServiceNamespace="foo", ScalableDimension=DEFAULT_SCALABLE_DIMENSION
|
2020-07-03 13:23:17 +00:00
|
|
|
)
|
2021-10-18 19:44:29 +00:00
|
|
|
err = ex.value.response
|
2023-06-08 11:32:46 +00:00
|
|
|
assert err["Error"]["Code"] == "ValidationException"
|
|
|
|
assert "1 validation error detected" in err["Error"]["Message"]
|
|
|
|
assert err["ResponseMetadata"]["HTTPStatusCode"] == 400
|
2020-07-03 13:23:17 +00:00
|
|
|
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
@mock_aws
|
2020-07-03 13:23:17 +00:00
|
|
|
def test_describe_scalable_targets_with_multiple_invalid_parameters_should_return_validation_exception():
|
|
|
|
client = boto3.client("application-autoscaling", region_name=DEFAULT_REGION)
|
|
|
|
|
2021-10-18 19:44:29 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
|
|
|
client.describe_scalable_targets(
|
2020-11-11 15:55:37 +00:00
|
|
|
ServiceNamespace="foo", ScalableDimension="bar"
|
2020-07-03 13:23:17 +00:00
|
|
|
)
|
2021-10-18 19:44:29 +00:00
|
|
|
err = ex.value.response
|
2023-06-08 11:32:46 +00:00
|
|
|
assert err["Error"]["Code"] == "ValidationException"
|
|
|
|
assert "2 validation errors detected" in err["Error"]["Message"]
|
|
|
|
assert err["ResponseMetadata"]["HTTPStatusCode"] == 400
|
2020-07-03 13:23:17 +00:00
|
|
|
|
|
|
|
|
2024-01-07 12:03:33 +00:00
|
|
|
@mock_aws
|
2021-10-18 19:44:29 +00:00
|
|
|
def test_register_scalable_target_ecs_with_non_existent_service_should_return_clusternotfound_exception():
|
2020-07-03 13:23:17 +00:00
|
|
|
client = boto3.client("application-autoscaling", region_name=DEFAULT_REGION)
|
2022-11-17 22:41:08 +00:00
|
|
|
resource_id = f"service/{DEFAULT_ECS_CLUSTER}/foo"
|
2020-07-03 13:23:17 +00:00
|
|
|
|
2021-10-18 19:44:29 +00:00
|
|
|
with pytest.raises(ClientError) as ex:
|
2020-07-03 13:23:17 +00:00
|
|
|
register_scalable_target(client, ServiceNamespace="ecs", ResourceId=resource_id)
|
2021-10-18 19:44:29 +00:00
|
|
|
err = ex.value.response
|
2023-06-08 11:32:46 +00:00
|
|
|
assert err["Error"]["Code"] == "ClusterNotFoundException"
|
|
|
|
assert err["Error"]["Message"] == "Cluster not found."
|
|
|
|
assert err["ResponseMetadata"]["HTTPStatusCode"] == 400
|
2020-07-03 13:23:17 +00:00
|
|
|
|
|
|
|
|
2020-11-11 15:55:37 +00:00
|
|
|
@pytest.mark.parametrize(
|
|
|
|
"namespace,r_id,dimension,expected",
|
2020-07-03 13:23:17 +00:00
|
|
|
[
|
|
|
|
("ecs", "service/default/test-svc", "ecs:service:DesiredCount", True),
|
|
|
|
("ecs", "banana/default/test-svc", "ecs:service:DesiredCount", False),
|
|
|
|
("rds", "service/default/test-svc", "ecs:service:DesiredCount", False),
|
2020-11-11 15:55:37 +00:00
|
|
|
],
|
2020-07-03 13:23:17 +00:00
|
|
|
)
|
|
|
|
def test_target_params_are_valid_success(namespace, r_id, dimension, expected):
|
|
|
|
if expected is True:
|
2023-06-08 11:32:46 +00:00
|
|
|
assert models._target_params_are_valid(namespace, r_id, dimension) == expected
|
2020-07-03 13:23:17 +00:00
|
|
|
else:
|
2020-10-06 05:54:49 +00:00
|
|
|
with pytest.raises(AWSValidationException):
|
2020-07-03 13:23:17 +00:00
|
|
|
models._target_params_are_valid(namespace, r_id, dimension)
|
|
|
|
|
|
|
|
|
|
|
|
# TODO add a test for not-supplied MinCapacity or MaxCapacity (ValidationException)
|