Path: blob/develop/tests/functional/sqs/test_get_queue_attributes.py
1567 views
#!/usr/bin/env python1# Copyright 2012-2013 Amazon.com, Inc. or its affiliates. All Rights Reserved.2#3# Licensed under the Apache License, Version 2.0 (the "License"). You4# may not use this file except in compliance with the License. A copy of5# the License is located at6#7# http://aws.amazon.com/apache2.0/8#9# or in the "license" file accompanying this file. This file is10# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF11# ANY KIND, either express or implied. See the License for the specific12# language governing permissions and limitations under the License.13from awscli.testutils import BaseAWSCommandParamsTest14import awscli.clidriver151617class TestGetQueueAttributes(BaseAWSCommandParamsTest):1819prefix = 'sqs get-queue-attributes'20queue_url = 'https://queue.amazonaws.com/4444/testcli'2122def test_no_attr(self):23cmdline = self.prefix + ' --queue-url %s' % self.queue_url24result = {'QueueUrl': self.queue_url}25self.assert_params_for_cmd(cmdline, result)2627def test_all(self):28cmdline = self.prefix + ' --queue-url %s' % self.queue_url29cmdline += ' --attribute-names All'30result = {'QueueUrl': self.queue_url,31'AttributeNames': ['All']}32self.assert_params_for_cmd(cmdline, result)3334def test_one(self):35cmdline = self.prefix + ' --queue-url %s' % self.queue_url36cmdline += ' --attribute-names VisibilityTimeout'37result = {'QueueUrl': self.queue_url,38'AttributeNames': ['VisibilityTimeout']}39self.assert_params_for_cmd(cmdline, result)4041def test_two(self):42cmdline = self.prefix + ' --queue-url %s' % self.queue_url43cmdline += ' --attribute-names VisibilityTimeout QueueArn'44result = {'QueueUrl': self.queue_url,45'AttributeNames': ['VisibilityTimeout', 'QueueArn']}46self.assert_params_for_cmd(cmdline, result)474849if __name__ == "__main__":50unittest.main()515253