qubes-installer-qubes-os/anaconda/tests/regex_tests/hostname_test.py
Marek Marczykowski-Górecki 3e63d1dd37 anaconda: update to 21.48.21-1
Apply diff anaconda-20.25.16-1..anaconda-21.48.21-1
2016-03-22 02:27:15 +13:00

191 lines
6.8 KiB
Python

#!/usr/bin/python
# vim:set fileencoding=utf-8
#
# Copyright (C) 2014 Red Hat, Inc.
#
# This copyrighted material is made available to anyone wishing to use,
# modify, copy, or redistribute it subject to the terms and conditions of
# the GNU General Public License v.2, or (at your option) any later version.
# This program is distributed in the hope that it will be useful, but WITHOUT
# ANY WARRANTY expressed or implied, including the implied warranties of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General
# Public License for more details. You should have received a copy of the
# GNU General Public License along with this program; if not, write to the
# Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301, USA. Any Red Hat trademarks that are incorporated in the
# source code or documentation are not subject to the GNU General Public
# License and may only be used or replicated with the express permission of
# Red Hat, Inc.
#
# Red Hat Author(s): David Shea <dshea@redhat.com>
#
import unittest
import re
from pyanaconda.regexes import HOSTNAME_PATTERN_WITHOUT_ANCHORS, IPV4_PATTERN_WITHOUT_ANCHORS,\
IPV6_PATTERN_WITHOUT_ANCHORS
def _run_tests(testcase, expression, goodlist, badlist):
got_error = False
for good in goodlist:
try:
testcase.assertIsNotNone(expression.match(good))
except AssertionError:
got_error = True
print("Good string %s did not match expression" % good)
for bad in badlist:
try:
testcase.assertIsNone(expression.match(bad))
except AssertionError:
got_error = True
print("Bad string %s matched expression" % bad)
if got_error:
testcase.fail()
class HostnameRegexTestCase(unittest.TestCase):
def hostname_test(self):
good_tests = [
'0',
'a',
'A',
'hostname',
'host-name',
'host.name',
'host.name.with.oneverylongsectionthatisexactly63characterslong-and-contains-se',
'3numberstart',
'numberend3',
'first.3numberstart',
'first.3numberend',
'dot.end.'
]
bad_tests = [
'.',
'..',
'too..many.dots',
'-hypenstart',
'hyphenend-',
'first.-hyphenstart',
'first.hyphenend-',
'bad,character',
'.dot.start',
'host.name.with.oneverylongsectionthatisexactly64characterslong-and-contains-sev',
'únicode'
]
hostname_re = re.compile('^' + HOSTNAME_PATTERN_WITHOUT_ANCHORS + '$')
_run_tests(self, hostname_re, good_tests, bad_tests)
class IPv4RegexTestCase(unittest.TestCase):
def ipv4_test(self):
good_tests = [
'1.2.3.4',
'0.0.0.0',
'10.20.30.40',
'255.255.255.255',
'249.249.249.249'
]
bad_tests = [
'1.2.3.',
'1.2.3',
'256.2.3.4',
'a.b.c.d',
'1.2.3.400'
'....',
'1..2.3'
]
ipv4_re = re.compile('^(' + IPV4_PATTERN_WITHOUT_ANCHORS + ')$')
_run_tests(self, ipv4_re, good_tests, bad_tests)
class IPv6RegexTestCase(unittest.TestCase):
def ipv6_test(self):
good_tests = [
'0000:0000:0000:0000:0000:0000:0000:0000',
'0000:0000:0000:0000:0000:0000:1.2.3.4',
'::a:b:c:d:e:f:1',
'::a:b:c:d:e:255.255.255.255',
'1::a:b:c:d:e:f',
'1::a:b:c:d:255.255.255.255',
'1:12::a:b:c:d:e',
'1:12::a:b:c:10.20.30.40',
'12::a:b:c:d:e',
'12::a:b:c:10.20.30.40',
'1:12:123::a:b:c:d',
'1:12:123::a:b:100.200.250.249',
'12:123::a:b:c:d',
'12:123::a:b:100.200.250.249',
'123::a:b:c:d',
'123::a:b:100.200.250.249',
'::a:b:c:d',
'::a:b:100.200.250.249',
'1:12:123:1234::a:b:c',
'1:12:123:1234::a:1.20.30.99',
'12:123:1234::a:b:c',
'12:123:1234::a:1.20.30.99',
'123:1234::a:b:c',
'123:1234::a:1.20.30.99',
'1234::a:b:c',
'1234::a:1.20.30.99',
'::a:b:c',
'::a:1.20.30.99',
'1:12:123:1234:abcd::a:b',
'1:12:123:1234:abcd::0.0.0.0',
'12:123:1234:abcd::a:b',
'12:123:1234:abcd::0.0.0.0',
'123:1234:abcd::a:b',
'123:1234:abcd::0.0.0.0',
'1234:abcd::a:b',
'1234:abcd::0.0.0.0',
'abcd::a:b',
'abcd::0.0.0.0',
'::a:b',
'::0.0.0.0',
'1:12:123:1234:dead:beef::aaaa',
'12:123:1234:dead:beef::aaaa',
'123:1234:dead:beef::aaaa',
'1234:dead:beef::aaaa',
'dead:beef::aaaa',
'beef::aaaa',
'::aaaa',
'::'
]
bad_tests = [
# Too many bits
'0000:0000:0000:0000:0000:0000:0000:0000:0000'
'0000:0000:0000:0000:0000:0000:0000:1.2.3.4',
'0000:0000:0000:0000:0000:0000:1.2.3.4.5',
# Not enough bits
'0000:0000:0000:0000:0000:0000:0000',
'0000:0000:0000:0000:0000:1.2.3.4',
# zero-length contractions
'0000::0000:0000:0000:0000:0000:1.2.3.4',
'0000:0000::0000:0000:0000:0000:1.2.3.4',
'0000:0000:0000::0000:0000:0000:1.2.3.4',
'0000:0000:0000:0000::0000:0000:1.2.3.4',
'0000:0000:0000:0000:0000::0000:1.2.3.4',
'0000:0000:0000:0000:0000:0000::1.2.3.4',
'123::4567:89:a:bcde:f0f0:aaaa:8',
'123:4567::89:a:bcde:f0f0:aaaa:8',
'123:4567:89::a:bcde:f0f0:aaaa:8',
'123:4567:89:a:bcde::f0f0:aaaa:8',
'123:4567:89:a:bcde:f0f0::aaaa:8',
'123:4567:89:a:bcde:f0f0:aaaa::8',
# too many contractions
'a::b::c',
'::a::b',
'a::b::',
# invalid numbers
'00000::0000',
'defg::',
'12345::abcd',
'ffff::0x1e'
]
ipv6_re = re.compile('^(' + IPV6_PATTERN_WITHOUT_ANCHORS + ')$')
_run_tests(self, ipv6_re, good_tests, bad_tests)