Path: blob/develop/tests/functional/ec2/test_associate_address.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 BaseAWSCommandParamsTest141516class TestAssociateAddress(BaseAWSCommandParamsTest):1718prefix = 'ec2 associate-address'1920def test_basic(self):21cmdline = self.prefix22cmdline += ' --instance-id i-12345678'23cmdline += ' --public-ip 192.168.0.0'24result = {'InstanceId': 'i-12345678', 'PublicIp': '192.168.0.0'}25self.assert_params_for_cmd(cmdline, result)2627def test_vpc_basic(self):28cmdline = self.prefix29cmdline += ' --instance-id i-12345678'30cmdline += ' --public-ip 192.168.0.0'31cmdline += ' --allocation-id eipalloc-12345678'32cmdline += ' --allow-reassociation'33result = {'InstanceId': 'i-12345678',34'PublicIp': '192.168.0.0',35'AllowReassociation': True,36'AllocationId': 'eipalloc-12345678'}37self.assert_params_for_cmd(cmdline, result)383940if __name__ == "__main__":41unittest.main()424344