Kiall Mac Innes | 25fb29e | 2016-04-07 08:07:04 +0100 | [diff] [blame] | 1 | # Copyright 2016 Hewlett Packard Enterprise Development Company, L.P. |
| 2 | # |
| 3 | # Licensed under the Apache License, Version 2.0 (the "License"); you may |
| 4 | # not use this file except in compliance with the License. You may obtain |
| 5 | # a copy of the License at |
| 6 | # |
| 7 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | # |
| 9 | # Unless required by applicable law or agreed to in writing, software |
| 10 | # distributed under the License is distributed on an "AS IS" BASIS, WITHOUT |
| 11 | # WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the |
| 12 | # License for the specific language governing permissions and limitations |
| 13 | # under the License. |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 14 | import random |
Arkady Shtempler | b8ea4ca | 2021-06-04 08:55:28 +0300 | [diff] [blame] | 15 | from string import ascii_lowercase |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 16 | |
| 17 | import netaddr |
Paul Glass | 89edc11 | 2016-04-21 17:06:33 +0000 | [diff] [blame] | 18 | from oslo_log import log as logging |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 19 | from tempest import config |
Kiall Mac Innes | 25fb29e | 2016-04-07 08:07:04 +0100 | [diff] [blame] | 20 | from tempest.lib.common.utils import data_utils |
| 21 | |
Paul Glass | 89edc11 | 2016-04-21 17:06:33 +0000 | [diff] [blame] | 22 | LOG = logging.getLogger(__name__) |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 23 | CONF = config.CONF |
Paul Glass | 89edc11 | 2016-04-21 17:06:33 +0000 | [diff] [blame] | 24 | |
Kiall Mac Innes | 25fb29e | 2016-04-07 08:07:04 +0100 | [diff] [blame] | 25 | |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 26 | def rand_ip(): |
| 27 | return ".".join(str(random.randrange(0, 256)) for _ in range(4)) |
| 28 | |
| 29 | |
| 30 | def rand_ipv6(): |
| 31 | def hexes(n): |
| 32 | return "".join(random.choice("1234567890abcdef") for _ in range(n)) |
| 33 | result = ":".join(hexes(4) for _ in range(8)) |
| 34 | an = netaddr.IPAddress(result, version=6) |
| 35 | return an.format(netaddr.ipv6_compact) |
| 36 | |
| 37 | |
Arkady Shtempler | b8ea4ca | 2021-06-04 08:55:28 +0300 | [diff] [blame] | 38 | def rand_zone_name(name='', prefix='rand', suffix='.com.'): |
Kiall Mac Innes | 25fb29e | 2016-04-07 08:07:04 +0100 | [diff] [blame] | 39 | """Generate a random zone name |
sonu.kumar | aec952a | 2016-04-20 10:08:46 +0900 | [diff] [blame] | 40 | :param str name: The name that you want to include |
| 41 | :param prefix: the exact text to start the string. Defaults to "rand" |
| 42 | :param suffix: the exact text to end the string |
Kiall Mac Innes | 25fb29e | 2016-04-07 08:07:04 +0100 | [diff] [blame] | 43 | :return: a random zone name e.g. example.org. |
| 44 | :rtype: string |
| 45 | """ |
sonu.kumar | aec952a | 2016-04-20 10:08:46 +0900 | [diff] [blame] | 46 | name = data_utils.rand_name(name=name, prefix=prefix) |
| 47 | return name + suffix |
Kiall Mac Innes | 25fb29e | 2016-04-07 08:07:04 +0100 | [diff] [blame] | 48 | |
| 49 | |
| 50 | def rand_email(domain=None): |
| 51 | """Generate a random zone name |
| 52 | :return: a random zone name e.g. example.org. |
| 53 | :rtype: string |
| 54 | """ |
| 55 | domain = domain or rand_zone_name() |
| 56 | return 'example@%s' % domain.rstrip('.') |
| 57 | |
| 58 | |
| 59 | def rand_ttl(start=1, end=86400): |
| 60 | """Generate a random TTL value |
| 61 | :return: a random ttl e.g. 165 |
| 62 | :rtype: string |
| 63 | """ |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 64 | start = max(start, CONF.dns.min_ttl) |
Kiall Mac Innes | 25fb29e | 2016-04-07 08:07:04 +0100 | [diff] [blame] | 65 | return data_utils.rand_int_id(start, end) |
sonu.kumar | aec952a | 2016-04-20 10:08:46 +0900 | [diff] [blame] | 66 | |
| 67 | |
| 68 | def rand_zonefile_data(name=None, ttl=None): |
| 69 | """Generate random zone data, with optional overrides |
| 70 | |
| 71 | :return: A ZoneModel |
| 72 | """ |
| 73 | zone_base = ('$ORIGIN &\n& # IN SOA ns.& nsadmin.& # # # # #\n' |
| 74 | '& # IN NS ns.&\n& # IN MX 10 mail.&\nns.& 360 IN A 1.0.0.1') |
| 75 | if name is None: |
| 76 | name = rand_zone_name() |
| 77 | if ttl is None: |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 78 | ttl = rand_ttl() |
sonu.kumar | aec952a | 2016-04-20 10:08:46 +0900 | [diff] [blame] | 79 | |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 80 | return zone_base.replace('&', name).replace('#', str(ttl)) |
Paul Glass | 89edc11 | 2016-04-21 17:06:33 +0000 | [diff] [blame] | 81 | |
| 82 | |
| 83 | def rand_quotas(zones=None, zone_records=None, zone_recordsets=None, |
| 84 | recordset_records=None, api_export_size=None): |
Graham Hayes | c811498 | 2016-07-04 17:46:08 +0100 | [diff] [blame] | 85 | quotas_dict = { |
| 86 | 'zones': |
| 87 | zones or data_utils.rand_int_id(100, 999999), |
| 88 | 'zone_records': |
| 89 | zone_records or data_utils.rand_int_id(100, 999999), |
| 90 | 'zone_recordsets': |
| 91 | zone_recordsets or data_utils.rand_int_id(100, 999999), |
| 92 | 'recordset_records': |
| 93 | recordset_records or data_utils.rand_int_id(100, 999999), |
Paul Glass | 89edc11 | 2016-04-21 17:06:33 +0000 | [diff] [blame] | 94 | } |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 95 | |
Graham Hayes | c811498 | 2016-07-04 17:46:08 +0100 | [diff] [blame] | 96 | if CONF.dns_feature_enabled.bug_1573141_fixed: |
| 97 | quotas_dict['api_export_size'] = \ |
| 98 | api_export_size or data_utils.rand_int_id(100, 999999) |
| 99 | else: |
Takashi Kajinami | 299344d | 2021-11-29 15:56:14 +0900 | [diff] [blame] | 100 | LOG.warning("Leaving `api_export_size` out of quota data due to: " |
| 101 | "https://bugs.launchpad.net/designate/+bug/1573141") |
Graham Hayes | c811498 | 2016-07-04 17:46:08 +0100 | [diff] [blame] | 102 | |
| 103 | return quotas_dict |
| 104 | |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 105 | |
| 106 | def rand_zone_data(name=None, email=None, ttl=None, description=None): |
| 107 | """Generate random zone data, with optional overrides |
| 108 | |
| 109 | :return: A ZoneModel |
| 110 | """ |
| 111 | if name is None: |
| 112 | name = rand_zone_name(prefix='testdomain', suffix='.com.') |
| 113 | if email is None: |
| 114 | email = ("admin@" + name).strip('.') |
| 115 | if description is None: |
| 116 | description = rand_zone_name(prefix='Description ', suffix='') |
| 117 | if ttl is None: |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 118 | ttl = rand_ttl() |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 119 | return { |
| 120 | 'name': name, |
| 121 | 'email': email, |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 122 | 'ttl': ttl, |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 123 | 'description': description} |
| 124 | |
| 125 | |
| 126 | def rand_recordset_data(record_type, zone_name, name=None, records=None, |
| 127 | ttl=None): |
| 128 | """Generate random recordset data, with optional overrides |
| 129 | |
| 130 | :return: A RecordsetModel |
| 131 | """ |
| 132 | if name is None: |
| 133 | name = rand_zone_name(prefix=record_type, suffix='.' + zone_name) |
| 134 | if records is None: |
| 135 | records = [rand_ip()] |
| 136 | if ttl is None: |
Paul Glass | a3ab50c | 2016-05-11 16:37:18 -0500 | [diff] [blame] | 137 | ttl = rand_ttl() |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 138 | return { |
| 139 | 'type': record_type, |
| 140 | 'name': name, |
| 141 | 'records': records, |
| 142 | 'ttl': ttl} |
| 143 | |
| 144 | |
zahlabut | 5260227 | 2021-08-04 17:07:29 +0300 | [diff] [blame] | 145 | def rand_a_recordset(zone_name, ips=None, **kwargs): |
| 146 | if ips is None: |
| 147 | return rand_recordset_data( |
| 148 | 'A', zone_name, records=[rand_ip()], **kwargs) |
| 149 | else: |
| 150 | return rand_recordset_data('A', zone_name, records=ips, **kwargs) |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 151 | |
| 152 | |
| 153 | def rand_aaaa_recordset(zone_name, ip=None, **kwargs): |
| 154 | if ip is None: |
| 155 | ip = rand_ipv6() |
| 156 | return rand_recordset_data('AAAA', zone_name, records=[ip], **kwargs) |
| 157 | |
| 158 | |
| 159 | def rand_cname_recordset(zone_name, cname=None, **kwargs): |
| 160 | if cname is None: |
| 161 | cname = zone_name |
| 162 | return rand_recordset_data('CNAME', zone_name, records=[cname], **kwargs) |
| 163 | |
| 164 | |
| 165 | def rand_mx_recordset(zone_name, pref=None, host=None, **kwargs): |
| 166 | if pref is None: |
| 167 | pref = str(random.randint(0, 65535)) |
| 168 | if host is None: |
| 169 | host = rand_zone_name(prefix='mail', suffix='.' + zone_name) |
| 170 | data = "{0} {1}".format(pref, host) |
| 171 | return rand_recordset_data('MX', zone_name, records=[data], **kwargs) |
| 172 | |
| 173 | |
| 174 | def rand_spf_recordset(zone_name, data=None, **kwargs): |
Dmitry Galkin | 9a0a360 | 2018-11-13 19:42:29 +0000 | [diff] [blame] | 175 | data = data or '"v=spf1 +all"' |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 176 | return rand_recordset_data('SPF', zone_name, records=[data], **kwargs) |
| 177 | |
| 178 | |
| 179 | def rand_srv_recordset(zone_name, data=None): |
| 180 | data = data or "10 0 8080 %s.%s" % (rand_zone_name(suffix=''), zone_name) |
| 181 | return rand_recordset_data('SRV', zone_name, |
| 182 | name="_sip._tcp.%s" % zone_name, |
| 183 | records=[data]) |
| 184 | |
| 185 | |
| 186 | def rand_sshfp_recordset(zone_name, algorithm_number=None, |
| 187 | fingerprint_type=None, fingerprint=None, |
| 188 | **kwargs): |
| 189 | algorithm_number = algorithm_number or 2 |
| 190 | fingerprint_type = fingerprint_type or 1 |
| 191 | fingerprint = fingerprint or \ |
| 192 | "123456789abcdef67890123456789abcdef67890" |
| 193 | |
| 194 | data = "%s %s %s" % (algorithm_number, fingerprint_type, fingerprint) |
| 195 | return rand_recordset_data('SSHFP', zone_name, records=[data], **kwargs) |
| 196 | |
| 197 | |
| 198 | def rand_txt_recordset(zone_name, data=None, **kwargs): |
Dmitry Galkin | 9a0a360 | 2018-11-13 19:42:29 +0000 | [diff] [blame] | 199 | data = data or '"v=spf1 +all"' |
sonu.kumar | de24d96 | 2016-05-05 00:28:00 +0900 | [diff] [blame] | 200 | return rand_recordset_data('TXT', zone_name, records=[data], **kwargs) |
| 201 | |
| 202 | |
| 203 | def wildcard_ns_recordset(zone_name): |
| 204 | name = "*.{0}".format(zone_name) |
| 205 | records = ["ns.example.com."] |
| 206 | return rand_recordset_data('NS', zone_name, name, records) |
sonu.kumar | 4beb93c | 2016-05-05 01:12:43 +0900 | [diff] [blame] | 207 | |
| 208 | |
| 209 | def rand_ns_records(): |
| 210 | ns_zone = rand_zone_name() |
| 211 | records = [] |
| 212 | for i in range(0, 2): |
| 213 | records.append("ns%s.%s" % (i, ns_zone)) |
| 214 | ns_records = [{"hostname": x, "priority": random.randint(1, 999)} |
| 215 | for x in records] |
| 216 | return ns_records |
sonu.kumar | 2de01be | 2016-05-05 10:07:28 +0900 | [diff] [blame] | 217 | |
| 218 | |
| 219 | def rand_tld(): |
| 220 | data = { |
| 221 | "name": rand_zone_name(prefix='tld', suffix='') |
| 222 | } |
| 223 | return data |
sonu.kumar | e9785c9 | 2016-05-17 10:56:47 +0900 | [diff] [blame] | 224 | |
| 225 | |
| 226 | def rand_transfer_request_data(description=None, target_project_id=None): |
| 227 | """Generate random transfer request data, with optional overrides |
| 228 | |
| 229 | :return: A TransferRequest data |
| 230 | """ |
| 231 | |
| 232 | data = {} |
| 233 | |
| 234 | if description is None: |
| 235 | data['description'] = data_utils.rand_name(prefix='Description ') |
| 236 | |
| 237 | if target_project_id: |
| 238 | data['target_project_id'] = target_project_id |
| 239 | |
| 240 | return data |
sonu.kumar | c311086 | 2016-05-27 14:48:04 +0900 | [diff] [blame] | 241 | |
| 242 | |
| 243 | def rand_tsig_algorithm(): |
| 244 | algorithm = ['hmac-md5', 'hmac-sha1', 'hmac-sha224', 'hmac-sha256', |
| 245 | 'hmac-sha384', 'hmac-sha512'] |
| 246 | return random.choice(algorithm) |
| 247 | |
| 248 | |
| 249 | def rand_tsig_scope(): |
| 250 | scope = ["ZONE", "POOL"] |
| 251 | return random.choice(scope) |
Eric Larson | dc715e1 | 2016-08-25 13:21:35 +0100 | [diff] [blame] | 252 | |
| 253 | |
| 254 | def make_rand_recordset(zone_name, record_type): |
| 255 | """Create a rand recordset by type |
| 256 | This essentially just dispatches to the relevant random recordset |
| 257 | creation functions. |
| 258 | |
| 259 | :param str zone_name: The zone name the recordset applies to |
| 260 | :param str record_type: The type of recordset (ie A, MX, NS, etc...) |
| 261 | """ |
| 262 | |
| 263 | func = globals()["rand_{}_recordset".format(record_type.lower())] |
| 264 | return func(zone_name) |
Arkady Shtempler | b8ea4ca | 2021-06-04 08:55:28 +0300 | [diff] [blame] | 265 | |
| 266 | |
| 267 | def rand_string(size): |
| 268 | """Create random string of ASCII chars by size |
| 269 | |
| 270 | :param int size - length os the string to be create |
| 271 | :return - random creates string of ASCII lover characters |
| 272 | """ |
| 273 | return ''.join(random.choice(ascii_lowercase) for _ in range(size)) |
| 274 | |
| 275 | |
| 276 | def rand_domain_name(tld=None): |
| 277 | """Create random valid domain name |
| 278 | |
| 279 | :param tld (optional) - TLD that will be used to random domain name |
| 280 | :return - valid domain name, for example: paka.zbabun.iuh |
| 281 | """ |
| 282 | domain_tld = tld or rand_string(3) |
| 283 | return rand_string(4) + '.' + rand_string(6) + '.' + domain_tld + '.' |