pvl/hosts/tests.py
author Tero Marttila <terom@paivola.fi>
Sun, 01 Mar 2015 19:54:20 +0200
changeset 661 15946375b154
parent 660 5461fb492345
child 663 8a9de457bb59
permissions -rw-r--r--
pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
440
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
     1
import ipaddr
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
     2
import pvl.args
440
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
     3
import unittest
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
     4
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
     5
from pvl.hosts import config, dhcp, zone
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
     6
from pvl.hosts.host import Host
440
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
     7
from StringIO import StringIO
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
     8
447
6f0357759e9b pvl.hosts: fixup and document host expansion
Tero Marttila <tero.marttila@aalto.fi>
parents: 441
diff changeset
     9
class ConfFile(StringIO):
440
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
    10
    def __init__(self, name, buffer):
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
    11
        StringIO.__init__(self, buffer)
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
    12
        self.name = name
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
    13
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
    14
class TestConfig(unittest.TestCase):
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
    15
    def setUp(self):
490
805645dbb9bb pvl.hosts.tests: cleanup use of options
Tero Marttila <tero.marttila@aalto.fi>
parents: 489
diff changeset
    16
        self.options = pvl.args.options(
805645dbb9bb pvl.hosts.tests: cleanup use of options
Tero Marttila <tero.marttila@aalto.fi>
parents: 489
diff changeset
    17
                hosts_charset   = 'utf-8',
805645dbb9bb pvl.hosts.tests: cleanup use of options
Tero Marttila <tero.marttila@aalto.fi>
parents: 489
diff changeset
    18
                hosts_domain    = None,
805645dbb9bb pvl.hosts.tests: cleanup use of options
Tero Marttila <tero.marttila@aalto.fi>
parents: 489
diff changeset
    19
                hosts_include   = None,
805645dbb9bb pvl.hosts.tests: cleanup use of options
Tero Marttila <tero.marttila@aalto.fi>
parents: 489
diff changeset
    20
        )
440
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
    21
461
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    22
    def assertHostEqual(self, host, host_str, attrs):
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    23
        self.assertEquals(str(host), host_str)
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    24
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    25
        for attr, value in attrs.iteritems():
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    26
            self.assertEquals(getattr(host, attr), value)
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    27
447
6f0357759e9b pvl.hosts: fixup and document host expansion
Tero Marttila <tero.marttila@aalto.fi>
parents: 441
diff changeset
    28
    def assertHostsEqual(self, hosts, expected):
508
a47849709cbf pvl.hosts.test: fix assertHostsEqual to also compare len's
Tero Marttila <tero.marttila@aalto.fi>
parents: 507
diff changeset
    29
        hosts = list(hosts)
a47849709cbf pvl.hosts.test: fix assertHostsEqual to also compare len's
Tero Marttila <tero.marttila@aalto.fi>
parents: 507
diff changeset
    30
447
6f0357759e9b pvl.hosts: fixup and document host expansion
Tero Marttila <tero.marttila@aalto.fi>
parents: 441
diff changeset
    31
        for host, expect in zip(hosts, expected):
6f0357759e9b pvl.hosts: fixup and document host expansion
Tero Marttila <tero.marttila@aalto.fi>
parents: 441
diff changeset
    32
            host_str, attrs = expect
441
f058fff1f272 pvl.hosts.hosts: fix sort_key()
Tero Marttila <tero.marttila@aalto.fi>
parents: 440
diff changeset
    33
461
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    34
            self.assertHostEqual(host, host_str, attrs)
508
a47849709cbf pvl.hosts.test: fix assertHostsEqual to also compare len's
Tero Marttila <tero.marttila@aalto.fi>
parents: 507
diff changeset
    35
a47849709cbf pvl.hosts.test: fix assertHostsEqual to also compare len's
Tero Marttila <tero.marttila@aalto.fi>
parents: 507
diff changeset
    36
        self.assertEqual(len(hosts), len(expected))
441
f058fff1f272 pvl.hosts.hosts: fix sort_key()
Tero Marttila <tero.marttila@aalto.fi>
parents: 440
diff changeset
    37
 
461
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    38
    def testApplyHostConfigDict(self):
504
ee0a3dcacb95 pvl.hosts.config: refactor
Tero Marttila <tero.marttila@aalto.fi>
parents: 503
diff changeset
    39
        host = config.apply_host('foo', 'test', {
461
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    40
            'ethernet.eth0': '00:11:22:33:44:55',
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    41
        })
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    42
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    43
        self.assertHostEqual(host, 'foo@test', dict(
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    44
                ethernet    = { 'eth0': '00:11:22:33:44:55' }
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    45
        ))
502
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    46
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    47
    def testApplyHostConfigDictMulti(self):
504
ee0a3dcacb95 pvl.hosts.config: refactor
Tero Marttila <tero.marttila@aalto.fi>
parents: 503
diff changeset
    48
        host = config.apply_host('foo', 'test', {
502
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    49
            'ethernet.eth0': '00:11:22:33:44:55',
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    50
            'ethernet.eth1': '00:11:22:33:44:66',
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    51
        })
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    52
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    53
        self.assertHostEqual(host, 'foo@test', dict(
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    54
                ethernet    = {
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    55
                    'eth0': '00:11:22:33:44:55',
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    56
                    'eth1': '00:11:22:33:44:66',
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    57
                }
ac4e0f2df80c pvl.hosts.tests: test multi-value dicts for host
Tero Marttila <tero.marttila@aalto.fi>
parents: 501
diff changeset
    58
        ))
461
e3bddc5eeff5 pvl.hosts: test config.apply_host()
Tero Marttila <tero.marttila@aalto.fi>
parents: 451
diff changeset
    59
   
661
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    60
    def testApplyHostsConfigErrorExtra(self):
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    61
        host = config.apply_host('foo', 'test', {
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    62
            'ethernet': '00:11:22:33:44:55',
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    63
            'ethernet.eth1': '00:11:22:33:44:66',
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    64
        })
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    65
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    66
        self.assertHostEqual(host, 'foo@test', dict(
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    67
                ethernet    = {
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    68
                    None:   '00:11:22:33:44:55',
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    69
                    'eth1': '00:11:22:33:44:66',
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    70
                }
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    71
        ))
15946375b154 pvl.hosts.config: support ethernet = ... + ethernet.ethX = ...
Tero Marttila <terom@paivola.fi>
parents: 660
diff changeset
    72
 
447
6f0357759e9b pvl.hosts: fixup and document host expansion
Tero Marttila <tero.marttila@aalto.fi>
parents: 441
diff changeset
    73
501
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    74
    def testApplyHostConfigExtensions(self):
504
ee0a3dcacb95 pvl.hosts.config: refactor
Tero Marttila <tero.marttila@aalto.fi>
parents: 503
diff changeset
    75
        host = config.apply_host('foo', 'test', {
501
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    76
            'link:50':          'foo@test',
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    77
            'link:uplink.49':   'bar@test',
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    78
        })
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    79
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    80
        self.assertHostEqual(host, 'foo@test', dict(
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    81
                extensions = {
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    82
                    'link': {
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    83
                        '50': 'foo@test',
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    84
                        'uplink': { '49': 'bar@test' },
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    85
                    },
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    86
                },
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    87
        ))
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    88
   
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    89
    def testApplyHostFqdn(self):
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    90
        self.assertHostsEqual(config.apply_hosts('test', 'asdf@foo.test', { }), [
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    91
                ('asdf@foo.test', dict()),
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    92
        ])
501
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
    93
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    94
        self.assertHostsEqual(config.apply_hosts('test', 'asdf.test2', { }), [
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    95
                ('asdf.test2@', dict()),
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    96
        ])
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    97
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    98
    def testApplyHostExpand(self):
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
    99
        self.assertHostsEqual(config.apply_hosts('test', 'asdf{1-3}', { 'ip': '10.100.100.$' }), [
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   100
                ('asdf1@test', dict(ip=ipaddr.IPAddress('10.100.100.1'))),
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   101
                ('asdf2@test', dict(ip=ipaddr.IPAddress('10.100.100.2'))),
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   102
                ('asdf3@test', dict(ip=ipaddr.IPAddress('10.100.100.3'))),
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   103
        ])
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   104
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   105
    def testApplyHostsFileError(self):
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   106
        with self.assertRaises(config.HostConfigError):
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   107
            list(config.apply_hosts_files(self.options, ['nonexistant']))
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   108
511
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   109
    def testApplyHostsConfig(self):
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   110
        conf_file = ConfFile('test', """
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   111
[foo]
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   112
    ip = 127.0.0.1
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   113
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   114
[bar]
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   115
    ip = 127.0.0.2
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   116
        """)
511
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   117
        
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   118
        self.assertHostsEqual(config.apply_hosts_config(self.options, conf_file), [
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   119
                ('foo@test', dict(ip=ipaddr.IPAddress('127.0.0.1'))),
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   120
                ('bar@test', dict(ip=ipaddr.IPAddress('127.0.0.2'))),
511
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   121
        ])
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   122
511
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   123
    def testApplyHostsConfigNested(self):
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   124
        conf_file = ConfFile('test', """
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   125
[asdf]
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   126
    [[foo]]
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   127
        ip = 127.0.0.1
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   128
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   129
[quux]
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   130
    [[bar]]
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   131
        ip = 127.0.0.2
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   132
        """)
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   133
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   134
        self.assertHostsEqual(config.apply_hosts_config(self.options, conf_file), [
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   135
                ('foo@asdf.test', dict(ip=ipaddr.IPAddress('127.0.0.1'))),
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   136
                ('bar@quux.test', dict(ip=ipaddr.IPAddress('127.0.0.2'))),
99043eab9140 pvl.hosts.config: change nested domains to be relative to parent domain, not absolute
Tero Marttila <tero.marttila@aalto.fi>
parents: 510
diff changeset
   137
        ])
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   138
507
e3a32f4dff54 pvl.hosts.config: document includes, fix include-only zone, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 505
diff changeset
   139
    def testApplyIncludes(self):
521
06792c78067e setup and document etc/zone/ structure
Tero Marttila <tero.marttila@aalto.fi>
parents: 518
diff changeset
   140
        self.assertHostsEqual(config.apply_hosts_files(self.options, ['etc/hosts/test']), [
513
3b45b4fd5102 pvl.hosts.config: revert apply_hosts_directory to treat directory contents as a flat namespace without any parent=basname(directory) magic
Tero Marttila <tero.marttila@aalto.fi>
parents: 511
diff changeset
   141
                ('foo@test', dict(
510
368a568412ed pvl.hosts.config: support direct directory hosts, using the directory name as the parent
Tero Marttila <tero.marttila@aalto.fi>
parents: 509
diff changeset
   142
                    ip          = ipaddr.IPAddress('192.0.2.1'),
368a568412ed pvl.hosts.config: support direct directory hosts, using the directory name as the parent
Tero Marttila <tero.marttila@aalto.fi>
parents: 509
diff changeset
   143
                )),
513
3b45b4fd5102 pvl.hosts.config: revert apply_hosts_directory to treat directory contents as a flat namespace without any parent=basname(directory) magic
Tero Marttila <tero.marttila@aalto.fi>
parents: 511
diff changeset
   144
                ('bar@test', dict(
510
368a568412ed pvl.hosts.config: support direct directory hosts, using the directory name as the parent
Tero Marttila <tero.marttila@aalto.fi>
parents: 509
diff changeset
   145
                    ip          = ipaddr.IPAddress('192.0.2.2'),
368a568412ed pvl.hosts.config: support direct directory hosts, using the directory name as the parent
Tero Marttila <tero.marttila@aalto.fi>
parents: 509
diff changeset
   146
                )),
368a568412ed pvl.hosts.config: support direct directory hosts, using the directory name as the parent
Tero Marttila <tero.marttila@aalto.fi>
parents: 509
diff changeset
   147
        ])
368a568412ed pvl.hosts.config: support direct directory hosts, using the directory name as the parent
Tero Marttila <tero.marttila@aalto.fi>
parents: 509
diff changeset
   148
518
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   149
    def testApplyIncludePath(self):
521
06792c78067e setup and document etc/zone/ structure
Tero Marttila <tero.marttila@aalto.fi>
parents: 518
diff changeset
   150
        self.options.hosts_include = 'etc/hosts'
518
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   151
        self.assertHostsEqual(config.apply_hosts_files(self.options, ['etc/zones/forward/test']), [
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   152
                ('foo@test', dict(
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   153
                    ip          = ipaddr.IPAddress('192.0.2.1'),
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   154
                )),
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   155
                ('bar@test', dict(
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   156
                    ip          = ipaddr.IPAddress('192.0.2.2'),
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   157
                )),
660
5461fb492345 pvl.hosts.tests: tweak etc/zones/forward/test ordering..
Tero Marttila <terom@paivola.fi>
parents: 521
diff changeset
   158
                ('quux@asdf.test', dict(
5461fb492345 pvl.hosts.tests: tweak etc/zones/forward/test ordering..
Tero Marttila <terom@paivola.fi>
parents: 521
diff changeset
   159
                    ip          = ipaddr.IPAddress('192.0.2.5'),
5461fb492345 pvl.hosts.tests: tweak etc/zones/forward/test ordering..
Tero Marttila <terom@paivola.fi>
parents: 521
diff changeset
   160
                )),
518
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   161
        ])
cd152d6bad32 pvl.hosts.config: test and fix includes path
Tero Marttila <tero.marttila@aalto.fi>
parents: 513
diff changeset
   162
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   163
    def testApply(self):
513
3b45b4fd5102 pvl.hosts.config: revert apply_hosts_directory to treat directory contents as a flat namespace without any parent=basname(directory) magic
Tero Marttila <tero.marttila@aalto.fi>
parents: 511
diff changeset
   164
        self.assertHostsEqual(config.apply(self.options, ['etc/hosts/example.com']), [
3b45b4fd5102 pvl.hosts.config: revert apply_hosts_directory to treat directory contents as a flat namespace without any parent=basname(directory) magic
Tero Marttila <tero.marttila@aalto.fi>
parents: 511
diff changeset
   165
                ('foo@example.com', dict(
3b45b4fd5102 pvl.hosts.config: revert apply_hosts_directory to treat directory contents as a flat namespace without any parent=basname(directory) magic
Tero Marttila <tero.marttila@aalto.fi>
parents: 511
diff changeset
   166
                    ip          = ipaddr.IPAddress('192.0.2.1'),
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   167
                    ethernet    = {None: '00:11:22:33:44:55'},
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   168
                )),
513
3b45b4fd5102 pvl.hosts.config: revert apply_hosts_directory to treat directory contents as a flat namespace without any parent=basname(directory) magic
Tero Marttila <tero.marttila@aalto.fi>
parents: 511
diff changeset
   169
                ('bar@example.com', dict(
3b45b4fd5102 pvl.hosts.config: revert apply_hosts_directory to treat directory contents as a flat namespace without any parent=basname(directory) magic
Tero Marttila <tero.marttila@aalto.fi>
parents: 511
diff changeset
   170
                    ip          = ipaddr.IPAddress('192.0.2.2'),
505
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   171
                    ethernet    = {None: '01:23:45:67:89:ab'},
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   172
                )),
e5a76c404679 pvl.hosts.test: rearrange TestConfig test cases
Tero Marttila <tero.marttila@aalto.fi>
parents: 504
diff changeset
   173
        ])
501
41b362e6074b pvl.hosts.config: fix and test extensions
Tero Marttila <tero.marttila@aalto.fi>
parents: 497
diff changeset
   174
469
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   175
class TestZoneMixin(object):
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   176
    def assertZoneEquals(self, rrs, expected):
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   177
        gather = { }
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   178
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   179
        for rr in rrs:
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   180
            key = (rr.name.lower(), rr.type.upper())
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   181
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   182
            self.assertNotIn(key, gather)
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   183
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   184
            gather[key] = rr.data
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   185
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   186
        self.assertDictEqual(gather, expected)
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   187
469
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   188
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   189
class TestForwardZone(TestZoneMixin, unittest.TestCase):
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   190
    def testHostOutOfOrigin(self):
504
ee0a3dcacb95 pvl.hosts.config: refactor
Tero Marttila <tero.marttila@aalto.fi>
parents: 503
diff changeset
   191
        h = Host.build('host', 'domain', 
ee0a3dcacb95 pvl.hosts.config: refactor
Tero Marttila <tero.marttila@aalto.fi>
parents: 503
diff changeset
   192
                ip  = '10.0.0.1',
ee0a3dcacb95 pvl.hosts.config: refactor
Tero Marttila <tero.marttila@aalto.fi>
parents: 503
diff changeset
   193
        )
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   194
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   195
        self.assertZoneEquals(zone.host_forward(h, 'test'), { })
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   196
464
f1d3dbf04ca3 pvl.hosts.zone: fix reverse= to be IPv4-only
Tero Marttila <tero.marttila@aalto.fi>
parents: 463
diff changeset
   197
    def testHostIP(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   198
        h = Host.build('host', 'domain',
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   199
                ip  = '192.0.2.1',
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   200
                ip6 = '2001:db8::192.0.2.1',
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   201
        )
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   202
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   203
        self.assertZoneEquals(zone.host_forward(h, 'domain'), {
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   204
            ('host', 'A'): ['192.0.2.1'],
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   205
            ('host', 'AAAA'): ['2001:db8::c000:201'],
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   206
        })
465
133f14810eb5 pvl.hosts.zone: test forward= omit
Tero Marttila <tero.marttila@aalto.fi>
parents: 464
diff changeset
   207
    
466
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   208
    def testHostAlias(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   209
        h = Host.build('host', 'domain',
466
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   210
                ip      = '192.0.2.1',
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   211
                alias   = 'test *.test',
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   212
        )
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   213
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   214
        self.assertEquals(h.alias, ['test', '*.test'])
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   215
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   216
        self.assertZoneEquals(zone.host_forward(h, 'domain'), {
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   217
            ('host', 'A'): ['192.0.2.1'],
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   218
            ('test', 'CNAME'): ['host'],
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   219
            ('*.test', 'CNAME'): ['host'],
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   220
        })
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   221
468
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   222
    def testHostAlias46(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   223
        h = Host.build('host', 'domain',
468
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   224
                ip      = '192.0.2.1',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   225
                ip6     = '2001:db8::192.0.2.1',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   226
                alias4  = 'test4',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   227
                alias6  = 'test6',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   228
        )
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   229
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   230
        self.assertZoneEquals(zone.host_forward(h, 'domain'), {
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   231
            ('host', 'A'): ['192.0.2.1'],
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   232
            ('host', 'AAAA'): ['2001:db8::c000:201'],
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   233
            ('test4', 'A'): ['192.0.2.1'],
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   234
            ('test6', 'AAAA'): ['2001:db8::c000:201'],
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   235
        })
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   236
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   237
    def testHostAlias4Missing(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   238
        h = Host.build('host', 'domain',
468
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   239
                ip6     = '2001:db8::192.0.2.1',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   240
                alias4  = 'test4',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   241
                alias6  = 'test6',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   242
        )
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   243
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   244
        with self.assertRaises(zone.HostZoneError):
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   245
            self.assertZoneEquals(zone.host_forward(h, 'domain'), { })
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   246
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   247
    def testHostAlias6Missing(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   248
        h = Host.build('host', 'domain',
468
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   249
                ip      = '192.0.2.1',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   250
                alias4  = 'test4',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   251
                alias6  = 'test6',
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   252
        )
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   253
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   254
        with self.assertRaises(zone.HostZoneError):
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   255
            self.assertZoneEquals(zone.host_forward(h, 'domain'), { })
3e7cb8dd5708 pvl.hosts.zone: raise HostZoneError on alias4/alias6 without ip/ip6
Tero Marttila <tero.marttila@aalto.fi>
parents: 467
diff changeset
   256
493
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   257
    def testHostFQDN(self):
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   258
        h = Host.build('host.example.net', None,
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   259
                ip          = '192.0.2.3',
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   260
        )
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   261
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   262
        self.assertZoneEquals(zone.host_forward(h, 'example.com'), {
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   263
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   264
        })
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   265
469
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   266
    def testHostDelegate(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   267
        h = Host.build('host', 'example.com',
469
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   268
                forward = 'host.example.net',
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   269
        )
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   270
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   271
        self.assertZoneEquals(zone.host_forward(h, 'example.com'), {
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   272
            ('host', 'CNAME'): ['host.example.net.'],
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   273
        })
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   274
467
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   275
    def testHostForwardAlias(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   276
        h = Host.build('host', 'domain',
467
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   277
                forward = 'host.example.net',
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   278
                alias   = 'test',
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   279
        )
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   280
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   281
        self.assertZoneEquals(zone.host_forward(h, 'domain'), {
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   282
            ('host', 'CNAME'): ['host.example.net.'],
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   283
            ('test', 'CNAME'): ['host'],
3bb00e5e79d3 pvl.hosts.zone: support combining forward= with alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 466
diff changeset
   284
        })
466
ad9d512ec1e7 pvl.hosts.zone: test and fix alias=
Tero Marttila <tero.marttila@aalto.fi>
parents: 465
diff changeset
   285
470
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   286
    def testHostLocation(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   287
        h = Host.build('host', 'domain',
470
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   288
                ip          = '192.0.2.1',
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   289
                location    = 'test',
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   290
        )
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   291
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   292
        self.assertEquals(h.location, ('test', 'domain'))
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   293
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   294
        self.assertZoneEquals(zone.host_forward(h, 'domain'), {
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   295
            ('host', 'A'): ['192.0.2.1'],
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   296
            ('test', 'CNAME'): ['host'],
ac334a55eebc pvl.hosts: fix location= and test forward records
Tero Marttila <tero.marttila@aalto.fi>
parents: 469
diff changeset
   297
        })
471
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   298
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   299
    def testHostLocationDomain(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   300
        h = Host.build('host', 'foo.domain',
471
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   301
                ip          = '192.0.2.1',
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   302
                location    = 'test@bar.domain',
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   303
        )
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   304
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   305
        self.assertEquals(h.location, ('test', 'bar.domain'))
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   306
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   307
        self.assertZoneEquals(zone.host_forward(h, 'domain'), {
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   308
            ('host.foo', 'A'): ['192.0.2.1'],
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   309
            ('test.bar', 'CNAME'): ['host.foo'],
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   310
        })
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   311
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   312
    def testHostLocationDomainOutOfOrigin(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   313
        h = Host.build('host', 'foo.domain',
471
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   314
                ip          = '192.0.2.1',
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   315
                location    = 'test@bar.domain',
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   316
        )
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   317
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   318
        self.assertEquals(h.location, ('test', 'bar.domain'))
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   319
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   320
        with self.assertRaises(zone.HostZoneError):
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   321
            self.assertZoneEquals(zone.host_forward(h, 'foo.domain'), {
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   322
                ('host', 'A'): ['192.0.2.1'],
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   323
            })
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   324
        
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   325
        # TODO
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   326
        #self.assertZoneEquals(zone.host_forward(h, 'bar.domain'), {
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   327
        #    ('test', 'CNAME'): ['host.foo'],
e4b4458d8061 pvl.hosts: test location domains
Tero Marttila <tero.marttila@aalto.fi>
parents: 470
diff changeset
   328
        #})
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   329
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   330
    def testHostsForward(self):
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   331
        hosts = [
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   332
                Host.build('foo', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   333
                    ip      = '192.0.2.1',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   334
                    ip6     = '2001:db8::192.0.2.1',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   335
                    alias   = 'test',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   336
                ),
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   337
                Host.build('bar', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   338
                    ip      = '192.0.2.2',
496
530f22575889 pvl.hosts.zone: label=relative() check handles FQDNs
Tero Marttila <tero.marttila@aalto.fi>
parents: 494
diff changeset
   339
                ),
530f22575889 pvl.hosts.zone: label=relative() check handles FQDNs
Tero Marttila <tero.marttila@aalto.fi>
parents: 494
diff changeset
   340
                Host.build('quux', 'example',
530f22575889 pvl.hosts.zone: label=relative() check handles FQDNs
Tero Marttila <tero.marttila@aalto.fi>
parents: 494
diff changeset
   341
                    ip      = '192.0.2.3',
530f22575889 pvl.hosts.zone: label=relative() check handles FQDNs
Tero Marttila <tero.marttila@aalto.fi>
parents: 494
diff changeset
   342
                ),
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   343
        ]
497
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   344
                
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   345
        rrs = zone.apply_hosts_forward(hosts, 'domain', add_origin=True)
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   346
    
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   347
        # handle the $ORIGIN directive
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   348
        rd = next(rrs)
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   349
497
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   350
        self.assertEquals(unicode(rd), '$ORIGIN\tdomain.')
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   351
0082d2092d1f pvl.hosts.zone: should be an fqdn
Tero Marttila <tero.marttila@aalto.fi>
parents: 496
diff changeset
   352
        self.assertZoneEquals(rrs, {
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   353
            ('foo', 'A'): ['192.0.2.1'],
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   354
            ('foo', 'AAAA'): ['2001:db8::c000:201'],
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   355
            ('test', 'CNAME'): ['foo'],
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   356
            ('bar', 'A'): ['192.0.2.2'],
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   357
        })
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   358
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   359
    def testHostsConflict(self):
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   360
        hosts = [
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   361
                Host.build('foo', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   362
                    ip      = '192.0.2.1',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   363
                ),
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   364
                Host.build('foo', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   365
                    ip      = '192.0.2.2',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   366
                )
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   367
        ]
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   368
        
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   369
        with self.assertRaises(zone.HostZoneError):
489
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   370
            self.assertZoneEquals(zone.apply_hosts_forward(hosts, 'domain'), { })
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   371
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   372
    def testHostsAliasConflict(self):
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   373
        hosts = [
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   374
                Host.build('foo', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   375
                    ip          = '192.0.2.1',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   376
                ),
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   377
                Host.build('bar', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   378
                    ip          = '192.0.2.2',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   379
                    alias       = 'foo',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   380
                )
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   381
        ]
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   382
        
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   383
        # with A first
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   384
        with self.assertRaises(zone.HostZoneError):
489
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   385
            self.assertZoneEquals(zone.apply_hosts_forward(hosts, 'domain'), { })
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   386
    
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   387
        # also with CNAME first
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   388
        with self.assertRaises(zone.HostZoneError):
489
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   389
            self.assertZoneEquals(zone.apply_hosts_forward(reversed(hosts), 'domain'), { })
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   390
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   391
    def testHostsAlias4Conflict(self):
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   392
        hosts = [
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   393
                Host.build('foo', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   394
                    ip          = '192.0.2.1',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   395
                ),
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   396
                Host.build('bar', 'domain',
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   397
                    ip          = '192.0.2.2',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   398
                    alias4      = 'foo',
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   399
                )
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   400
        ]
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   401
        
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   402
        with self.assertRaises(zone.HostZoneError):
489
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   403
            self.assertZoneEquals(zone.apply_hosts_forward(hosts, 'domain'), { })
472
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   404
    
814cc88c531b pvl.hosts.zone: stricter name/type + name/CNAME -conflict logic
Tero Marttila <tero.marttila@aalto.fi>
parents: 471
diff changeset
   405
469
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   406
class TestReverseZone(TestZoneMixin, unittest.TestCase):
473
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   407
    def testHostIP(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   408
        h = Host.build('host', 'domain',
473
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   409
                ip  = '192.0.2.1',
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   410
                ip6 = '2001:db8::192.0.2.1',
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   411
        )
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   412
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   413
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.2.1/24'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   414
            ('1', 'PTR'): ['host.domain.'],
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   415
        })
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   416
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   417
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('2001:db8::/64'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   418
            ('1.0.2.0.0.0.0.c.0.0.0.0.0.0.0.0', 'PTR'): ['host.domain.'],
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   419
        })
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   420
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   421
    def testHostIP4(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   422
        h = Host.build('host', 'domain',
473
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   423
                ip  = '192.0.2.1',
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   424
        )
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   425
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   426
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.2.1/24'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   427
            ('1', 'PTR'): ['host.domain.'],
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   428
        })
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   429
        
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   430
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.0.0/16'))), {
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   431
            ('1.2', 'PTR'): ['host.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   432
        })
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   433
        
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   434
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.0.0/12'))), {
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   435
            ('1.2.0', 'PTR'): ['host.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   436
        })
473
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   437
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   438
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('2001:db8::/64'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   439
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   440
        })
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   441
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   442
    def testHostIP6(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   443
        h = Host.build('host', 'domain',
473
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   444
                ip6 = '2001:db8::192.0.2.1',
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   445
        )
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   446
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   447
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.2.1/24'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   448
        })
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   449
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   450
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('2001:db8::/64'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   451
            ('1.0.2.0.0.0.0.c.0.0.0.0.0.0.0.0', 'PTR'): ['host.domain.'],
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   452
        })
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   453
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   454
    def testHostIPOutOfPrefix(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   455
        h = Host.build('host', 'domain',
473
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   456
                ip  = '192.0.2.1',
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   457
                ip6 = '2001:db8::192.0.2.1',
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   458
        )
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   459
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   460
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.1.0/24'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   461
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   462
        })
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   463
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   464
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('2001:db8:1::/64'))), {
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   465
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   466
        })
68fd85d850ab pvl.hosts.zone: test host_reverse() more
Tero Marttila <tero.marttila@aalto.fi>
parents: 472
diff changeset
   467
493
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   468
    def testHostFQDN(self):
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   469
        h = Host.build('host.example.net', None,
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   470
                ip          = '192.0.2.3',
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   471
                ip6         = '2001:db8::192.0.2.3',
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   472
        )
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   473
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   474
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.2.1/24'))), {
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   475
            ('3', 'PTR'): ['host.example.net.'],
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   476
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   477
        })
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   478
        
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   479
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('2001:db8::/64'))), {
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   480
            ('3.0.2.0.0.0.0.c.0.0.0.0.0.0.0.0', 'PTR'): ['host.example.net.'],
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   481
        })
c9725dd0d48c pvl.hosts: test FQDN hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 492
diff changeset
   482
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   483
    def testHostDelegate(self):
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   484
        h = Host.build('host', 'example.com',
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   485
                ip      = '192.0.2.1',
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   486
                ip6     = '2001:db8::192.0.2.1',
465
133f14810eb5 pvl.hosts.zone: test forward= omit
Tero Marttila <tero.marttila@aalto.fi>
parents: 464
diff changeset
   487
                forward = '',
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   488
                reverse = '1.0/28.2.0.192.in-addr.arpa',
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   489
        )
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   490
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   491
        self.assertZoneEquals(zone.host_forward(h, 'example.com'), {
465
133f14810eb5 pvl.hosts.zone: test forward= omit
Tero Marttila <tero.marttila@aalto.fi>
parents: 464
diff changeset
   492
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   493
        })
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   494
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   495
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('192.0.2.1/24'))), {
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   496
            ('1', 'CNAME'): ['1.0/28.2.0.192.in-addr.arpa.'],
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   497
        })
464
f1d3dbf04ca3 pvl.hosts.zone: fix reverse= to be IPv4-only
Tero Marttila <tero.marttila@aalto.fi>
parents: 463
diff changeset
   498
        
f1d3dbf04ca3 pvl.hosts.zone: fix reverse= to be IPv4-only
Tero Marttila <tero.marttila@aalto.fi>
parents: 463
diff changeset
   499
        self.assertZoneEquals((rr for ip, rr in zone.host_reverse(h, ipaddr.IPNetwork('2001:db8::/64'))), {
f1d3dbf04ca3 pvl.hosts.zone: fix reverse= to be IPv4-only
Tero Marttila <tero.marttila@aalto.fi>
parents: 463
diff changeset
   500
f1d3dbf04ca3 pvl.hosts.zone: fix reverse= to be IPv4-only
Tero Marttila <tero.marttila@aalto.fi>
parents: 463
diff changeset
   501
        })
463
2cbdb2435487 pvl.hosts.zone: fix pvl.dns.fqdn() and basic tests for host_forward/reverse
Tero Marttila <tero.marttila@aalto.fi>
parents: 462
diff changeset
   502
494
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   503
    def testHosts(self):
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   504
        hosts = [
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   505
                Host.build('foo', 'domain',
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   506
                    ip      = '192.0.2.1',
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   507
                ),
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   508
                Host.build('bar', 'domain',
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   509
                    ip      = '192.0.2.2',
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   510
                )
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   511
        ]
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   512
        
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   513
        self.assertZoneEquals(zone.apply_hosts_reverse(hosts, ipaddr.IPNetwork('192.0.2.1/24')), {
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   514
            ('1', 'PTR'): ['foo.domain.'],
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   515
            ('2', 'PTR'): ['bar.domain.'],
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   516
        })
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   517
        
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   518
        # in ip order
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   519
        self.assertZoneEquals(zone.apply_hosts_reverse(reversed(hosts), ipaddr.IPNetwork('192.0.2.1/24')), {
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   520
            ('1', 'PTR'): ['foo.domain.'],
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   521
            ('2', 'PTR'): ['bar.domain.'],
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   522
        })
6d258338b363 pvl.hosts.zone: test forward hosts
Tero Marttila <tero.marttila@aalto.fi>
parents: 493
diff changeset
   523
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   524
    def testHostsConflict(self):
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   525
        hosts = [
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   526
                Host.build('foo', 'domain',
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   527
                    ip      = '192.0.2.1',
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   528
                ),
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   529
                Host.build('bar', 'domain',
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   530
                    ip      = '192.0.2.1',
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   531
                )
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   532
        ]
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   533
        
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   534
        with self.assertRaises(zone.HostZoneError):
489
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   535
            self.assertZoneEquals(zone.apply_hosts_reverse(hosts, ipaddr.IPNetwork('192.0.2.1/24')), { })
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   536
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   537
    def testHostsGenerateUnknown(self):
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   538
        hosts = [
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   539
                Host.build('foo', 'domain',
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   540
                    ip      = '192.0.2.1',
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   541
                ),
477
6ad810c8039c pvl.hosts.test: import Host directly
Tero Marttila <tero.marttila@aalto.fi>
parents: 474
diff changeset
   542
                Host.build('bar', 'domain',
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   543
                    ip      = '192.0.2.5',
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   544
                ),
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   545
        ]
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   546
        
489
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   547
        self.assertZoneEquals(zone.apply_hosts_reverse(hosts, ipaddr.IPNetwork('192.0.2.1/29'),
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   548
                unknown_host = 'ufc',
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   549
                unknown_domain = 'domain',
7f1bd12e0d54 pvl.hosts-reverse: move options out of pvl.hosts.zone
Tero Marttila <tero.marttila@aalto.fi>
parents: 487
diff changeset
   550
        ), {
474
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   551
            ('1', 'PTR'): ['foo.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   552
            ('2', 'PTR'): ['ufc.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   553
            ('3', 'PTR'): ['ufc.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   554
            ('4', 'PTR'): ['ufc.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   555
            ('5', 'PTR'): ['bar.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   556
            ('6', 'PTR'): ['ufc.domain.'],
51983fcda6b1 pvl.hosts.zone: fix and test --unknown-host
Tero Marttila <tero.marttila@aalto.fi>
parents: 473
diff changeset
   557
        })
469
cd1f1b51f3a0 pvl.hosts.tests: split TestForwardZone/TestReverseZone using TestZoneMixin
Tero Marttila <tero.marttila@aalto.fi>
parents: 468
diff changeset
   558
479
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   559
class TestDhcp(unittest.TestCase):
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   560
    def assertBlocksEqual(self, blockdefs, expected):
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   561
        for (_block, _items, _opts), (block, items, opts) in zip(blockdefs, expected):
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   562
            self.assertEqual(_block, block)
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   563
            self.assertItemsEqual(_items, items)
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   564
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   565
            if opts is not None:
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   566
                self.assertEqual(_opts, opts)
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   567
        
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   568
        self.assertEqual(len(blockdefs), len(expected))
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   569
    
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   570
    def testHost(self):
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   571
        host = Host.build('foo', 'test',
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   572
                ip          = '192.0.2.1',
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   573
                ethernet    = '00:11:22:33:44:55',
492
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   574
                owner       = 'foo',
479
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   575
        )
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   576
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   577
        self.assertBlocksEqual(list(dhcp.dhcp_host(host)), [
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   578
            (('host', 'foo'), [
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   579
                ('option', 'host-name', "foo"),
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   580
                ('fixed-address', '192.0.2.1'),
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   581
                ('hardware', 'ethernet', '00:11:22:33:44:55'),
492
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   582
                ], dict(comment="Owner: foo"))
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   583
        ])
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   584
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   585
    def testHostStatic(self):
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   586
        host = Host.build('foo', 'test',
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   587
                ip          = '192.0.2.1',
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   588
        )
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   589
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   590
        self.assertBlocksEqual(list(dhcp.dhcp_host(host)), [
ddd13dadf6a8 pvl.hosts.dhcp: test non-dhcp hosts and owner comments
Tero Marttila <tero.marttila@aalto.fi>
parents: 491
diff changeset
   591
479
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   592
        ])
1e68e3a30b51 pvl.hosts.dhcp: split out of script, refactor using pvl.dhcp.config, and test
Tero Marttila <tero.marttila@aalto.fi>
parents: 477
diff changeset
   593
480
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   594
    def testHostDynamic(self):
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   595
        host = Host.build('foo', 'test',
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   596
                ethernet    = '00:11:22:33:44:55',
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   597
        )
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   598
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   599
        self.assertBlocksEqual(list(dhcp.dhcp_host(host)), [
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   600
            (('host', 'foo'), [
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   601
                ('option', 'host-name', "foo"),
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   602
                ('hardware', 'ethernet', '00:11:22:33:44:55'),
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   603
            ], None)
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   604
        ])
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   605
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   606
    def testHostBoot(self):
491
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   607
        hosts = [
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   608
                Host.build('foo1', 'test',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   609
                        ethernet    = '00:11:22:33:44:55',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   610
                        boot        = 'boot.lan:debian/wheezy/pxelinux.0',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   611
                ),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   612
                Host.build('foo2', 'test',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   613
                        ethernet    = '00:11:22:33:44:55',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   614
                        boot        = 'boot.lan:',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   615
                ),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   616
                Host.build('foo3', 'test',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   617
                        ethernet    = '00:11:22:33:44:55',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   618
                        boot        = '/debian/wheezy/pxelinux.0',
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   619
                ),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   620
        ]
480
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   621
491
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   622
        self.assertBlocksEqual(list(dhcp.dhcp_hosts(hosts)), [
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   623
            (('host', 'foo1'), [
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   624
                ('option', 'host-name', "foo1"),
480
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   625
                ('hardware', 'ethernet', '00:11:22:33:44:55'),
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   626
                ('next-server', 'boot.lan'),
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   627
                ('filename', 'debian/wheezy/pxelinux.0'),
491
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   628
            ], None),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   629
            (('host', 'foo2'), [
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   630
                ('option', 'host-name', "foo2"),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   631
                ('hardware', 'ethernet', '00:11:22:33:44:55'),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   632
                ('next-server', 'boot.lan'),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   633
            ], None),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   634
            (('host', 'foo3'), [
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   635
                ('option', 'host-name', "foo3"),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   636
                ('hardware', 'ethernet', '00:11:22:33:44:55'),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   637
                ('filename', 'debian/wheezy/pxelinux.0'),
cfcb47a3dc3e pvl.hosts.dhcp: fix and test boot= variations
Tero Marttila <tero.marttila@aalto.fi>
parents: 490
diff changeset
   638
            ], None),
480
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   639
        ])
7e44854e85d4 README and test host boot= and dynamic ip=
Tero Marttila <tero.marttila@aalto.fi>
parents: 479
diff changeset
   640
483
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   641
    def testHosts(self):
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   642
        hosts = [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   643
                Host.build('foo', 'test',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   644
                        ip          = '192.0.2.1',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   645
                        ethernet    = '00:11:22:33:44:55',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   646
                ),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   647
                Host.build('bar', 'test',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   648
                        ip          = '192.0.2.2',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   649
                        ethernet    = '01:23:45:67:89:ab',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   650
                ),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   651
        ]
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   652
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   653
        self.assertBlocksEqual(list(dhcp.dhcp_hosts(hosts)), [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   654
            (('host', 'foo'), [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   655
                ('option', 'host-name', "foo"),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   656
                ('fixed-address', '192.0.2.1'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   657
                ('hardware', 'ethernet', '00:11:22:33:44:55'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   658
            ], None),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   659
            (('host', 'bar'), [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   660
                ('option', 'host-name', "bar"),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   661
                ('fixed-address', '192.0.2.2'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   662
                ('hardware', 'ethernet', '01:23:45:67:89:ab'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   663
            ], None),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   664
        ])
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   665
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   666
    def testHostConflict(self):
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   667
        hosts = [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   668
                Host.build('foo', 'test1',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   669
                        ethernet    = '00:11:22:33:44:55',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   670
                ),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   671
                Host.build('foo', 'test2',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   672
                        ethernet    = '01:23:45:67:89:ab',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   673
                ),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   674
        ]
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   675
        
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   676
        with self.assertRaises(dhcp.HostDHCPError):
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   677
            list(dhcp.dhcp_hosts(hosts))
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   678
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   679
    def testHostMultinet(self):
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   680
        hosts = [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   681
                Host.build('foo', 'test1',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   682
                    ip              = '192.0.1.1',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   683
                    ethernet        = { 'eth1': '00:11:22:33:44:55' },
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   684
                ),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   685
                Host.build('foo', 'test2',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   686
                    ip              = '192.0.2.1',
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   687
                    ethernet        = { 'eth2': '01:23:45:67:89:ab' },
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   688
                ),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   689
        ]
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   690
        
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   691
        self.assertBlocksEqual(list(dhcp.dhcp_hosts(hosts)), [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   692
                (('host', 'foo-eth1'), [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   693
                    ('option', 'host-name', "foo"),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   694
                    ('fixed-address', '192.0.1.1'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   695
                    ('hardware', 'ethernet', '00:11:22:33:44:55'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   696
                ], None),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   697
                (('host', 'foo-eth2'), [
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   698
                    ('option', 'host-name', "foo"),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   699
                    ('fixed-address', '192.0.2.1'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   700
                    ('hardware', 'ethernet', '01:23:45:67:89:ab'),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   701
                ], None),
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   702
        ])
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   703
19d084bb4afd pvl.hosts.dhcp: test and document hosts on multiple networks
Tero Marttila <tero.marttila@aalto.fi>
parents: 480
diff changeset
   704
440
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
   705
if __name__ == '__main__':
1d755df7bf97 pvl.hosts: refactor as a package; cleanup pvl.hosts.config with some basic tests
Tero Marttila <tero.marttila@aalto.fi>
parents:
diff changeset
   706
    unittest.main()