ECS: list_services() now throws correct error when providing unknown cluster (#5865)

This commit is contained in:
Bert Blommers 2023-01-22 15:07:52 -01:00 committed by GitHub
parent 90e63c1cb5
commit 3a023f0fe1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 3 deletions

View File

@ -808,7 +808,7 @@ class EC2ContainerServiceBackend(BaseBackend):
service_region, zones, "ecs"
)
def _get_cluster(self, name):
def _get_cluster(self, name: str) -> Cluster:
# short name or full ARN of the cluster
cluster_name = name.split("/")[-1]
@ -1333,10 +1333,10 @@ class EC2ContainerServiceBackend(BaseBackend):
return service
def list_services(self, cluster_str, scheduling_strategy=None, launch_type=None):
cluster_name = cluster_str.split("/")[-1]
cluster = self._get_cluster(cluster_str)
service_arns = []
for key, service in self.services.items():
if cluster_name + ":" not in key:
if cluster.name + ":" not in key:
continue
if (

View File

@ -701,6 +701,17 @@ def test_list_services():
cluster1_fargate_services["serviceArns"][0].should.equal(test_ecs_service2_arn)
@mock_ecs
@pytest.mark.parametrize("args", [{}, {"cluster": "foo"}], ids=["no args", "unknown"])
def test_list_unknown_service(args):
client = boto3.client("ecs", region_name="us-east-1")
with pytest.raises(ClientError) as exc:
client.list_services(**args)
err = exc.value.response["Error"]
err["Code"].should.equal("ClusterNotFoundException")
err["Message"].should.equal("Cluster not found.")
@mock_ecs
def test_describe_services():
client = boto3.client("ecs", region_name="us-east-1")