diff --git a/tests/aws/requests/cloud_watch/metric_tests.rb b/tests/aws/requests/cloud_watch/metric_tests.rb deleted file mode 100644 index 14c7cf646..000000000 --- a/tests/aws/requests/cloud_watch/metric_tests.rb +++ /dev/null @@ -1,64 +0,0 @@ -Shindo.tests('AWS::CloudWatch | metric requests', ['aws', 'cloudwatch']) do - - tests('success') do - @metrics_list_format = { - 'ListMetricsResult' => { - 'Metrics' => - [{ - 'Dimensions' => - [{ - 'Name' => String, - 'Value' => String - }], - "MetricName" => String, - "Namespace" => String - }], - 'NextToken' => Fog::Nullable::String, - }, - 'ResponseMetadata' => {"RequestId"=> String}, - } - @instanceId = 'i-2f3eab59' - @dimension_filtered_metrics_list_format = { - 'ListMetricsResult' => { - 'Metrics' => - [{ - 'Dimensions' => - [{ - 'Name' => 'InstanceId', - 'Value' => @instanceId - }], - "MetricName" => String, - "Namespace" => String - }], - 'NextToken' => Fog::Nullable::String, - }, - 'ResponseMetadata' => {"RequestId"=> String}, - } - - tests("#list_metrics").formats(@metrics_list_format) do - AWS[:cloud_watch].list_metrics.body - end - - tests("#dimension_filtered_list_metrics").formats(@dimension_filtered_metrics_list_format) do - AWS[:cloud_watch].list_metrics('Dimensions' => [{'Name' => 'InstanceId', 'Value' => @instanceId}]).body - end - - tests("#metric_name_filtered_list_metrics").returns(true) do - metricName = "CPUUtilization" - AWS[:cloud_watch].list_metrics('MetricName' => metricName).body['ListMetricsResult']['Metrics'].all? do |metric| - metric['MetricName'] == metricName - end - end - - tests("#namespace_filtered_list_metrics").returns(true) do - namespace = "AWS/EC2" - AWS[:cloud_watch].list_metrics('Namespace' => namespace).body['ListMetricsResult']['Metrics'].all? do |metric| - metric['Namespace'] == namespace - end - end - - # tests("#get_metric_statistics").formats(@metrics_statistic_format) do - # AWS[:cloud_watch].get_metric_statistics.body - # end - end -end \ No newline at end of file