Path: blob/develop/tests/functional/sqs/test_add_permission.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 TestAddPermission(BaseAWSCommandParamsTest):1819prefix = 'sqs add-permission'20queue_url = 'https://queue.amazonaws.com/4444/testcli'2122def test_all_param(self):23cmdline = self.prefix24cmdline += ' --queue-url %s' % self.queue_url25cmdline += ' --aws-account-ids 888888888888'26cmdline += ' --actions SendMessage'27cmdline += ' --label FooBarLabel'28result = {'QueueUrl': self.queue_url,29'Actions': ['SendMessage'],30'AWSAccountIds': ['888888888888'],31'Label': 'FooBarLabel'}32self.assert_params_for_cmd(cmdline, result)3334def test_multiple_accounts(self):35cmdline = self.prefix36cmdline += ' --queue-url %s' % self.queue_url37cmdline += ' --aws-account-ids 888888888888 999999999999'38cmdline += ' --actions SendMessage'39cmdline += ' --label FooBarLabel'40result = {'QueueUrl': self.queue_url,41'Actions': ['SendMessage'],42'AWSAccountIds': ['888888888888', '999999999999'],43'Label': 'FooBarLabel'}44self.assert_params_for_cmd(cmdline, result)4546def test_multiple_actions(self):47cmdline = self.prefix48cmdline += ' --queue-url %s' % self.queue_url49cmdline += ' --aws-account-ids 888888888888'50cmdline += ' --actions SendMessage ReceiveMessage'51cmdline += ' --label FooBarLabel'52result = {'QueueUrl': self.queue_url,53'Actions': ['SendMessage', 'ReceiveMessage'],54'AWSAccountIds': ['888888888888'],55'Label': 'FooBarLabel'}56self.assert_params_for_cmd(cmdline, result)575859if __name__ == "__main__":60unittest.main()616263