Techdebt: SSM: Specific param may not exist on the first page (#5995)

This commit is contained in:
Bert Blommers 2023-02-27 22:06:19 -01:00 committed by GitHub
parent 88d991e306
commit c4f99f3102
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -14,11 +14,12 @@ def test_ssm_get_latest_ami_by_path():
params = client.get_parameters_by_path(Path=path)["Parameters"] params = client.get_parameters_by_path(Path=path)["Parameters"]
params.should.have.length_of(10) params.should.have.length_of(10)
ami = [p for p in params if p["Name"] == test_ami][0] assert all(
ami["Type"].should.equal("String") [p["Name"].startswith("/aws/service/ami-amazon-linux-latest") for p in params]
ami["Version"].should.equal(18) )
ami["Value"].should.equal("ami-0f4e67e32313f0d0e") assert all([p["Type"] == "String" for p in params])
ami.should.have.key("LastModifiedDate") assert all([p["DataType"] == "text" for p in params])
assert all([p["ARN"].startswith("arn:aws:ssm:us-west-1") for p in params])
@mock_ssm @mock_ssm