Files
python-designateclient/designateclient/functionaltests/datagen.py
Erik Olof Gunnar Andersson b6e78fefdd pyupgrade changes for Python3.8+
Result of running

$ pyupgrade --py38-plus $(git ls-files | grep ".py$")

This was inspired by Nova [1] and Octavia [2]

Fixed PEP8 errors introduced by pyupgrade by running:

$ autopep8 --select=E127,E128,E501 --max-line-length 79 -r \
  --in-place designate

and manual updates.

[1]: https://review.opendev.org/c/openstack/nova/+/896986
[2]: https://review.opendev.org/c/openstack/octavia/+/899263

Change-Id: I27d09edb7e75081379002615f4ecdb1aa007dbcf
2023-11-17 09:42:13 -08:00

61 lines
1.7 KiB
Python

"""
Copyright 2015 Rackspace
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 random
import string
def random_digits(n=8):
return ''.join([random.choice(string.digits) for _ in range(n)])
def random_tld(name='testtld'):
return f'{name}{random_digits()}'
def random_tsigkey_name(name='testtsig'):
return f'{name}{random_digits()}'
def random_tsigkey_secret(name='test-secret'):
return f'{name}-{random_digits(254 - len(name))}'
def random_zone_name(name='testdomain', tld='com'):
return f'{name}{random_digits()}.{tld}.'
def random_a_recordset_name(zone_name, recordset_name='testrecord'):
return f'{recordset_name}{random_digits()}.{zone_name}'
def random_blacklist(name='testblacklist'):
return f'{name}{random_digits()}'
def random_zone_file(name='testzoneimport'):
return (
'$ORIGIN {0}{1}.com.\n'
'$TTL 300\n'
'{0}{1}.com. 300 IN SOA ns.{0}{1}.com. '
'nsadmin.{0}{1}.com. 42 42 42 42 42\n'
'{0}{1}.com. 300 IN NS ns.{0}{1}.com.\n'
'{0}{1}.com. 300 IN MX 10 mail.{0}{1}.com.\n'
'ns.{0}{1}.com. 300 IN A 10.0.0.1\n'
'mail.{0}{1}.com. 300 IN A 10.0.0.2\n'.format(
name, random_digits()
)
)