2011-09-06 15:51:30 -04:00
|
|
|
Shindo.tests('AWS::Elasticache | cache cluster requests', ['aws', 'elasticache']) do
|
|
|
|
|
|
|
|
tests('success') do
|
|
|
|
pending if Fog.mocking?
|
|
|
|
|
2011-09-08 12:04:46 -04:00
|
|
|
# Randomize the cluster ID so tests can be fequently re-run
|
|
|
|
cluster_id = "fog-test-cluster-#{rand(999).to_s}" # 20 chars max!
|
2011-09-06 15:51:30 -04:00
|
|
|
|
|
|
|
tests(
|
|
|
|
'#create_cache_cluster'
|
|
|
|
).formats(AWS::Elasticache::Formats::SINGLE_CACHE_CLUSTER) do
|
|
|
|
body = AWS[:elasticache].create_cache_cluster(
|
|
|
|
:cluster_id => cluster_id
|
|
|
|
).body
|
|
|
|
cluster = body['CacheCluster']
|
|
|
|
returns(cluster_id) { cluster['CacheClusterId'] }
|
|
|
|
returns('creating') { cluster['CacheClusterStatus'] }
|
|
|
|
body
|
|
|
|
end
|
|
|
|
|
|
|
|
tests(
|
|
|
|
'#describe_cache_clusters without options'
|
|
|
|
).formats(AWS::Elasticache::Formats::DESCRIBE_CACHE_CLUSTERS) do
|
|
|
|
body = AWS[:elasticache].describe_cache_clusters.body
|
|
|
|
returns(true, "has #{cluster_id}") do
|
|
|
|
body['CacheClusters'].any? do |cluster|
|
|
|
|
cluster['CacheClusterId'] == cluster_id
|
|
|
|
end
|
|
|
|
end
|
2011-09-07 16:22:31 -04:00
|
|
|
# The DESCRIBE_CACHE_CLUSTERS format must include only one cluster
|
|
|
|
# So remove all but the relevant cluster from the response body
|
|
|
|
test_cluster = body['CacheClusters'].delete_if do |cluster|
|
|
|
|
cluster['CacheClusterId'] != cluster_id
|
|
|
|
end
|
2011-09-06 15:51:30 -04:00
|
|
|
body
|
|
|
|
end
|
|
|
|
|
|
|
|
tests(
|
|
|
|
'#describe_cache_clusters with cluster ID'
|
|
|
|
).formats(AWS::Elasticache::Formats::DESCRIBE_CACHE_CLUSTERS) do
|
|
|
|
body = AWS[:elasticache].describe_cache_clusters(
|
|
|
|
'CacheClusterId' => cluster_id
|
|
|
|
).body
|
|
|
|
returns(1, "size of 1") { body['CacheClusters'].size }
|
|
|
|
returns(cluster_id, "has #{cluster_id}") do
|
|
|
|
body['CacheClusters'].first['CacheClusterId']
|
|
|
|
end
|
|
|
|
body
|
|
|
|
end
|
|
|
|
|
2011-09-08 13:04:46 -04:00
|
|
|
Formatador.display_line "Waiting for cluster #{cluster_id}..."
|
|
|
|
AWS[:elasticache].clusters.get(cluster_id).wait_for {ready?}
|
2011-09-06 16:46:12 -04:00
|
|
|
|
|
|
|
tests(
|
2011-09-08 13:04:46 -04:00
|
|
|
'#delete_cache_clusters'
|
2011-09-06 16:46:12 -04:00
|
|
|
).formats(AWS::Elasticache::Formats::CACHE_CLUSTER_RUNNING) do
|
|
|
|
body = AWS[:elasticache].delete_cache_cluster(cluster_id).body
|
|
|
|
# make sure this particular cluster is in the returned list
|
|
|
|
returns(true, "has #{cluster_id}") do
|
|
|
|
body['CacheClusters'].any? do |cluster|
|
|
|
|
cluster['CacheClusterId'] == cluster_id
|
|
|
|
end
|
|
|
|
end
|
|
|
|
# now check that it reports itself as 'deleting'
|
|
|
|
cluster = body['CacheClusters'].find do |cluster|
|
|
|
|
cluster['CacheClusterId'] == cluster_id
|
|
|
|
end
|
|
|
|
returns('deleting') { cluster['CacheClusterStatus'] }
|
|
|
|
cluster
|
|
|
|
end
|
2011-09-06 15:51:30 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
tests('failure') do
|
|
|
|
# TODO:
|
|
|
|
# Create a duplicate cluster ID
|
|
|
|
# List a missing cache cluster
|
|
|
|
# Delete a missing cache cluster
|
|
|
|
end
|
|
|
|
end
|