summaryrefslogtreecommitdiff
path: root/smoketest/scripts/cli/test_protocols_static.py
blob: 100fd338786cb15b2b5278d4653645d3f33e414a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
#!/usr/bin/env python3
#
# Copyright (C) 2021 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not, see <http://www.gnu.org/licenses/>.

import re
import os
import json
import unittest

from netifaces import interfaces

from vyos.configsession import ConfigSession
from vyos.configsession import ConfigSessionError
from vyos.ifconfig import Interface
from vyos.ifconfig import Section
from vyos.template import is_ipv6
from vyos.util import cmd
from vyos.util import read_file
from vyos.validate import is_intf_addr_assigned

dummy_if = 'dum08765'
base_path = ['protocols', 'static']

routes = {
    '10.0.0.0/8' : {
        'next_hop' : '192.0.2.2',
        'distance' : '200',
    },
    '172.16.0.0/12' : {
        'next_hop' : '192.0.2.3',
    },
    '192.168.0.0/16' : {
        'next_hop' : '192.0.2.3',
    },
    '2001:db8:1000::/48' : {
        'next_hop' : '2001:db8::1000',
    },
    '2001:db8:2000::/48' : {
        'next_hop' : '2001:db8::2000',
    },
}

interface_routes = {
    '10.0.0.0/8' : {
        'next_hop' : dummy_if,
        'distance' : '200',
    },
    '172.16.0.0/12' : {
        'next_hop' : dummy_if,
    },
    '192.168.0.0/16' : {
        'next_hop' : dummy_if,
    },
    '2001:db8:1000::/48' : {
        'next_hop' : dummy_if,
    },
    '2001:db8:2000::/48' : {
        'next_hop' : dummy_if,
    },
}


class StaticRouteTest(unittest.TestCase):
    def setUp(self):
        self.session = ConfigSession(os.getpid())
        # we need an alive next-hop interface
        self.session.set(['interfaces', 'dummy', dummy_if, 'address', '192.0.2.1/24'])
        self.session.set(['interfaces', 'dummy', dummy_if, 'address', '2001:db8::1/64'])

    def tearDown(self):
        self.session.delete(['interfaces', 'dummy', dummy_if])
        self.session.commit()

    def test_static_routes(self):
        for route, route_config in routes.items():
            route_type = 'route'
            if is_ipv6(route):
                route_type = 'route6'
            self.session.set(base_path + [route_type, route, 'next-hop', route_config['next_hop']])
            if 'distance' in route_config:
                self.session.set(base_path + [route_type, route, 'next-hop', route_config['next_hop'], 'distance', route_config['distance']])

        # commit changes
        self.session.commit()

        # Verify routes
        for route, route_config in routes.items():
            ip_ver = '-4'
            if is_ipv6(route):
                ip_ver = '-6'
            tmp = json.loads(cmd(f'ip {ip_ver} -d -j route show {route}'))

            found = False
            for result in tmp:
                # unfortunately iproute2 does not return the distance
                if 'dst' in result and result['dst'] == route:
                    if 'gateway' in result and result['gateway'] == route_config['next_hop']:
                        found = True

            self.assertTrue(found)

            route_type = 'route'
            if is_ipv6(route):
                route_type = 'route6'
            self.session.delete(base_path + [route_type, route])

    def test_interface_routes(self):
        for route, route_config in interface_routes.items():
            route_type = 'interface-route'
            if is_ipv6(route):
                route_type = 'interface-route6'
            self.session.set(base_path + [route_type, route, 'next-hop-interface', route_config['next_hop']])
            if 'distance' in route_config:
                self.session.set(base_path + [route_type, route, 'next-hop-interface', route_config['next_hop'], 'distance', route_config['distance']])

        # commit changes
        self.session.commit()

        # Verify routes
        for route, route_config in interface_routes.items():
            ip_ver = '-4'
            if is_ipv6(route):
                ip_ver = '-6'
            tmp = json.loads(cmd(f'ip {ip_ver} -d -j route show {route}'))

            found = False
            for result in tmp:
                # unfortunately iproute2 does not return the distance
                if 'dst' in result and result['dst'] == route:
                    if 'dev' in result and result['dev'] == route_config['next_hop']:
                        found = True
                        break

            self.assertTrue(found)

            route_type = 'interface-route'
            if is_ipv6(route):
                route_type = 'interface-route6'
            self.session.delete(base_path + [route_type, route])

if __name__ == '__main__':
    unittest.main(verbosity=2, failfast=True)