2752e445ee
This patch adds a tempest decorator of UUID for each test in the functional tests tree. . This helps in discovering tests by their UUID using tempest CLI and the decorator format is: @decorators.idempotent_id('12345678-1234-1234-1234-123456789abc') Change-Id: Ib4a4694600b1a28be6c23c73fa078960ce4efdec
183 lines
6.9 KiB
Python
183 lines
6.9 KiB
Python
# Copyright 2014 OpenStack Foundation
|
|
# All Rights Reserved.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import time
|
|
|
|
from oslo_log import log
|
|
from tempest.lib import decorators
|
|
|
|
from ec2api.tests.functional import base
|
|
from ec2api.tests.functional import config
|
|
|
|
CONF = config.CONF
|
|
LOG = log.getLogger(__name__)
|
|
|
|
|
|
class DhcpOptionsTest(base.EC2TestCase):
|
|
|
|
@classmethod
|
|
@base.safe_setup
|
|
def setUpClass(cls):
|
|
super(DhcpOptionsTest, cls).setUpClass()
|
|
if not base.TesterStateHolder().get_vpc_enabled():
|
|
raise cls.skipException('VPC is disabled')
|
|
|
|
@decorators.idempotent_id('2331fc49-50e0-4df3-8c45-bd6f61cc86bf')
|
|
def test_create_delete_dhcp_options(self):
|
|
kwargs = {
|
|
'DhcpConfigurations': [
|
|
{'Key': 'domain-name',
|
|
'Values': ['my.com', 'it.com']},
|
|
{'Key': 'domain-name-servers',
|
|
'Values': ['8.8.8.8', '8.8.4.4']},
|
|
{'Key': 'ntp-servers',
|
|
'Values': ['1.2.3.4']},
|
|
{'Key': 'netbios-name-servers',
|
|
'Values': ['4.3.2.1']},
|
|
{'Key': 'netbios-node-type',
|
|
'Values': ['2']},
|
|
],
|
|
}
|
|
data = self.client.create_dhcp_options(*[], **kwargs)
|
|
options = data['DhcpOptions']
|
|
id = options['DhcpOptionsId']
|
|
res_clean = self.addResourceCleanUp(self.client.delete_dhcp_options,
|
|
DhcpOptionsId=id)
|
|
self.assertEqual(5, len(options['DhcpConfigurations']))
|
|
for cfg in options['DhcpConfigurations']:
|
|
self.assertEqual(2, len(cfg))
|
|
if cfg['Key'] == 'domain-name':
|
|
self.assertEqual(2, len(cfg['Values']))
|
|
values = [i['Value'] for i in cfg['Values']]
|
|
self.assertIn('my.com', values)
|
|
self.assertIn('it.com', values)
|
|
elif cfg['Key'] == 'domain-name-servers':
|
|
self.assertEqual(2, len(cfg['Values']))
|
|
values = [i['Value'] for i in cfg['Values']]
|
|
self.assertIn('8.8.8.8', values)
|
|
self.assertIn('8.8.4.4', values)
|
|
elif cfg['Key'] == 'ntp-servers':
|
|
self.assertEqual(1, len(cfg['Values']))
|
|
self.assertEqual('1.2.3.4', cfg['Values'][0]['Value'])
|
|
elif cfg['Key'] == 'netbios-name-servers':
|
|
self.assertEqual(1, len(cfg['Values']))
|
|
self.assertEqual('4.3.2.1', cfg['Values'][0]['Value'])
|
|
elif cfg['Key'] == 'netbios-node-type':
|
|
self.assertEqual(1, len(cfg['Values']))
|
|
self.assertEqual('2', cfg['Values'][0]['Value'])
|
|
else:
|
|
self.fail('Unknown key name in result - %s' % cfg['Key'])
|
|
|
|
data = self.client.delete_dhcp_options(DhcpOptionsId=id)
|
|
self.cancelResourceCleanUp(res_clean)
|
|
|
|
@decorators.idempotent_id('ff1d4f6e-97fc-4053-b98f-ff59e7e8d061')
|
|
def test_invalid_create_delete(self):
|
|
def _rollback(fn_data):
|
|
self.client.delete_dhcp_options(
|
|
DhcpOptionsId=fn_data['DhcpOptions']['DhcpOptionsId'])
|
|
|
|
kwargs = {
|
|
'DhcpConfigurations': [
|
|
],
|
|
}
|
|
self.assertRaises('MissingParameter',
|
|
self.client.create_dhcp_options,
|
|
**kwargs)
|
|
|
|
kwargs = {
|
|
'DhcpConfigurations': [{'Key': 'aaa', 'Values': []}],
|
|
}
|
|
self.assertRaises('InvalidParameterValue',
|
|
self.client.create_dhcp_options, rollback_fn=_rollback,
|
|
**kwargs)
|
|
|
|
kwargs = {
|
|
'DhcpConfigurations': [{'Key': 'domain-name', 'Values': []}],
|
|
}
|
|
self.assertRaises('InvalidParameterValue',
|
|
self.client.create_dhcp_options, rollback_fn=_rollback,
|
|
**kwargs)
|
|
|
|
@decorators.idempotent_id('1c3e8ff9-bb3b-40ba-889e-d2306a92f418')
|
|
def test_describe_dhcp_options(self):
|
|
kwargs = {
|
|
'DhcpConfigurations': [
|
|
{'Key': 'domain-name',
|
|
'Values': ['my.com']},
|
|
],
|
|
}
|
|
data = self.client.create_dhcp_options(*[], **kwargs)
|
|
options = data['DhcpOptions']
|
|
id = options['DhcpOptionsId']
|
|
res_clean = self.addResourceCleanUp(self.client.delete_dhcp_options,
|
|
DhcpOptionsId=id)
|
|
|
|
time.sleep(10)
|
|
|
|
kwargs = {
|
|
'DhcpOptionsIds': [id],
|
|
}
|
|
data = self.client.describe_dhcp_options(*[], **kwargs)
|
|
self.assertEqual(1, len(data['DhcpOptions']))
|
|
options = data['DhcpOptions'][0]
|
|
self.assertEqual(id, options['DhcpOptionsId'])
|
|
self.assertEqual(1, len(options['DhcpConfigurations']))
|
|
cfg = options['DhcpConfigurations'][0]
|
|
self.assertEqual(2, len(cfg))
|
|
self.assertEqual('domain-name', cfg['Key'])
|
|
self.assertEqual(1, len(cfg['Values']))
|
|
self.assertIn('my.com', cfg['Values'][0]['Value'])
|
|
|
|
data = self.client.delete_dhcp_options(DhcpOptionsId=id)
|
|
self.cancelResourceCleanUp(res_clean)
|
|
|
|
@decorators.idempotent_id('1b4d678a-c2a2-4c73-9e62-789fe2f6b173')
|
|
def test_associate_dhcp_options(self):
|
|
kwargs = {
|
|
'DhcpConfigurations': [
|
|
{'Key': 'domain-name',
|
|
'Values': ['my.com']},
|
|
],
|
|
}
|
|
data = self.client.create_dhcp_options(*[], **kwargs)
|
|
options = data['DhcpOptions']
|
|
id = options['DhcpOptionsId']
|
|
res_clean = self.addResourceCleanUp(self.client.delete_dhcp_options,
|
|
DhcpOptionsId=id)
|
|
|
|
cidr = '10.0.0.0/24'
|
|
data = self.client.create_vpc(CidrBlock=cidr)
|
|
vpc_id = data['Vpc']['VpcId']
|
|
dv_clean = self.addResourceCleanUp(self.client.delete_vpc,
|
|
VpcId=vpc_id)
|
|
|
|
kwargs = {
|
|
'DhcpOptionsId': id,
|
|
'VpcId': vpc_id,
|
|
}
|
|
data = self.client.associate_dhcp_options(*[], **kwargs)
|
|
|
|
self.assertRaises('DependencyViolation',
|
|
self.client.delete_dhcp_options,
|
|
DhcpOptionsId=id)
|
|
|
|
data = self.client.delete_vpc(VpcId=vpc_id)
|
|
self.cancelResourceCleanUp(dv_clean)
|
|
self.get_vpc_waiter().wait_delete(vpc_id)
|
|
|
|
data = self.client.delete_dhcp_options(DhcpOptionsId=id)
|
|
self.cancelResourceCleanUp(res_clean)
|