summaryrefslogtreecommitdiffhomepage
path: root/test/scenario_test/route_server_policy_test.py
blob: 42d74d9ef149bcc905e2d8e3f689943d5e1f3a63 (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
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
# Copyright (C) 2014,2015 Nippon Telegraph and Telephone Corporation.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#    http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
# implied.
# See the License for the specific language governing permissions and
# limitations under the License.

import unittest
import requests
import json
import toml
import os
import time
import sys
import nose
import quagga_access as qaccess
from peer_info import Peer
from peer_info import Destination
from peer_info import Path
from ciscoconfparse import CiscoConfParse
import docker_control as fab
from noseplugin import OptionParser
from noseplugin import parser_option
import scenario_test_util as util


class GoBGPTest(unittest.TestCase):

    gobgp_ip = "10.0.255.1"
    gobgp_port = "8080"
    rest_url_neighbor = "http://" + gobgp_ip + ":" + gobgp_port + "/v1/bgp/neighbor/"
    base_dir = "/tmp/gobgp/"
    gobgp_config_file = "/tmp/gobgp/gobgpd.conf"
    gobgp_config = None
    quagga_num = 3
    initial_wait_time = 10
    wait_per_retry = 5

    def __init__(self, *args, **kwargs):
        super(GoBGPTest, self).__init__(*args, **kwargs)

    def setUp(self):
        self.quagga_configs = []

    def initialize(self, policy_pattern=None):
        use_local = parser_option.use_local
        go_path = parser_option.go_path
        log_debug = parser_option.gobgp_log_debug
        fab.init_policy_test_env_executor(self.quagga_num, use_local, go_path, log_debug, policy=policy_pattern)
        print "please wait " + str(self.initial_wait_time) + " second"
        time.sleep(self.initial_wait_time)

        self.assertTrue(self.check_load_config())

    def check_established(self, addresses):
        for address in addresses:
            result = self.retry_until(address, target_state="BGP_FSM_ESTABLISHED",retry=10)
            self.assertEqual(result, True)


    """
      import-policy test
                                ---------------------------------------
      peer2 ->(192.168.2.0/24)->| ->  peer1-rib ->  peer1-adj-rib-out | --> peer1
                                |                                     |
                                | ->x peer3-rib                       |
                                ---------------------------------------
    """
    def test_01_import_policy_initial(self):

        # initialize test environment
        # policy_pattern:p1 attaches a policy to reject route 192.168.0.0/16 (16...24)
        # coming from peer2(10.0.0.2) to peer3(10.0.0.3)'s import-policy.
        self.initialize(policy_pattern="p1")
        self.check_established(util.get_neighbor_address(self.gobgp_config))

        peer1 = "10.0.0.1"
        peer2 = "10.0.0.2"
        peer3 = "10.0.0.3"
        base_url = self.rest_url_neighbor
        w = self.wait_per_retry

        path = util.get_paths_in_localrib(base_url, peer1, "192.168.2.0", retry=3, interval=w)
        self.assertIsNotNone(path)

        # check show ip bgp on peer1(quagga1)
        qpath = util.get_routing_table(peer1,"192.168.2.0", retry=3, interval=w)
        print qpath
        self.assertIsNotNone(qpath)

        # check adj-rib-out in peer2
        path = util.get_adj_rib_in(base_url, peer2, "192.168.2.0/24", retry=3, interval=w)
        # print path
        self.assertIsNotNone(path)

        path = util.get_paths_in_localrib(base_url, peer3, "192.168.2.0",retry=0, interval=w)
        # print path
        self.assertIsNone(path)

        # check show ip bgp on peer1(quagga3)
        qpath = util.get_routing_table(peer3,"192.168.2.0", retry=3, interval=w)
        # print qpath
        self.assertIsNone(qpath)


    """
      export-policy test
                                ---------------------------------------
      peer2 ->(192.168.2.0/24)->| ->  peer1-rib ->  peer1-adj-rib-out | --> peer1
                                |                                     |
                                | ->  peer3-rib ->x peer3-adj-rib-out |
                                ---------------------------------------
    """
    def test_02_export_policy_initial(self):

        # initialize test environment
        # policy_pattern:p1 attaches a policy to reject route 192.168.0.0/16 (16...24)
        # coming from peer2(10.0.0.2) to peer3(10.0.0.3)'s export-policy.
        self.initialize(policy_pattern="p2")
        self.check_established(util.get_neighbor_address(self.gobgp_config))

        peer1 = "10.0.0.1"
        peer2 = "10.0.0.2"
        peer3 = "10.0.0.3"
        base_url = self.rest_url_neighbor
        w = self.wait_per_retry

        paths = util.get_paths_in_localrib(base_url, peer1, "192.168.2.0", retry=3, interval=w)
        # print paths
        self.assertIsNotNone(paths)

        # check show ip bgp on peer1(quagga1)
        qpath = util.get_routing_table(peer1, "192.168.2.0", retry=3, interval=w)
        # print qpath
        self.assertIsNotNone(qpath)

        # check adj-rib-out in peer2
        path = util.get_adj_rib_in(base_url, peer2, "192.168.2.0/24", retry=1, interval=w)
        # print path
        self.assertIsNotNone(path)

        path = util.get_paths_in_localrib(base_url, peer3, "192.168.2.0")
        # print path
        self.assertIsNotNone(path)

        path = util.get_adj_rib_out(base_url, peer3, "192.168.2.0", retry=1, interval=w)
        # print path
        self.assertIsNone(path)

        # check show ip bgp on peer1(quagga3)
        qpath = util.get_routing_table(peer3,"192.168.2.0", retry=3, interval=w)
        # print qpath
        self.assertIsNone(qpath)


    """
      import-policy test
      r1:192.168.2.0
      r2:192.168.20.0
      r3:192.168.200.0
                           -------------------------------------------------
                           |peer1                                          |
      peer2 ->(r1,r2,r3)-> | ->(r1,r2,r3)-> rib ->(r1,r2,r3)-> adj-rib-out | ->(r1,r2,r3)-> peer1
                           |                                               |
                           |peer3                                          |
                           | ->(r1)->       rib ->(r1)->       adj-rib-out | ->(r1)-> peer3
                           -------------------------------------------------
                   |
           update gobgp.conf
                   |
                   V
                           -------------------------------------------------
                           |peer1                                          |
      peer2 ->(r1,r2,r3)-> | ->(r1,r2,r3)-> rib ->(r1,r2,r3)-> adj-rib-out | ->(r1,r2,r3)-> peer1
                           |                                               |
                           |peer3                                          |
                           | ->(r1,r3)->    rib ->(r1,r3)->    adj-rib-out | ->(r1,r3)-> peer3
                           -------------------------------------------------
    """
    def test_03_import_policy_update(self):
        # initialize test environment
        # policy_pattern:p3 attaches a policy to reject route
        # 192.168.2.0/24, 192.168.20.0/24, 192.168.200.0/24
        # coming from peer2(10.0.0.2) to peer3(10.0.0.3)'s import-policy.
        self.initialize(policy_pattern="p3")

        peer1 = "10.0.0.1"
        peer2 = "10.0.0.2"
        peer3 = "10.0.0.3"
        base_url = self.rest_url_neighbor
        w = self.wait_per_retry

        # add other network
        tn = qaccess.login(peer2)
        print "add network 192.168.20.0/24"
        qaccess.add_network(tn, 65002, "192.168.20.0/24")
        print "add network 192.168.200.0/24"
        qaccess.add_network(tn, 65002, "192.168.200.0/24")
        qaccess.logout(tn)

        self.check_established(util.get_neighbor_address(self.gobgp_config))

        time.sleep(self.initial_wait_time)

        def path_exists_in_localrib(peer, prefix,r=10):
            paths = util.get_paths_in_localrib(base_url, peer, prefix, retry=r, interval=w)
            return paths is not None

        def path_exists_in_routing_table(peer, prefix,r=10):
            qpath = util.get_routing_table(peer, prefix, retry=r, interval=w)
            return qpath is not None

        def path_exists_in_adj_rib_in(peer, prefix,r=10):
            path = util.get_adj_rib_in(base_url, peer, prefix, retry=r, interval=w)
            return path is not None


        self.assertTrue(path_exists_in_localrib(peer1,"192.168.2.0"))
        self.assertTrue(path_exists_in_localrib(peer1,"192.168.20.0"))
        self.assertTrue(path_exists_in_localrib(peer1,"192.168.200.0"))

        self.assertTrue(path_exists_in_localrib(peer3,"192.168.2.0"))
        self.assertFalse(path_exists_in_localrib(peer3,"192.168.20.0",r=3))
        self.assertFalse(path_exists_in_localrib(peer3,"192.168.200.0",r=0))

        # check show ip bgp on peer1(quagga1)
        self.assertTrue(path_exists_in_routing_table(peer1, "192.168.2.0"))
        self.assertTrue(path_exists_in_routing_table(peer1, "192.168.20.0"))
        self.assertTrue(path_exists_in_routing_table(peer1, "192.168.200.0"))

        # check show ip bgp on peer3(quagga3)
        self.assertTrue(path_exists_in_routing_table(peer3, "192.168.2.0"))
        self.assertFalse(path_exists_in_routing_table(peer3, "192.168.20.0",r=3))
        self.assertFalse(path_exists_in_routing_table(peer3, "192.168.200.0",r=0))

        # check adj-rib-out in peer2
        self.assertTrue(path_exists_in_adj_rib_in(peer2, "192.168.2.0/24"))
        self.assertTrue(path_exists_in_adj_rib_in(peer2, "192.168.20.0/24"))
        self.assertTrue(path_exists_in_adj_rib_in(peer2, "192.168.200.0/24"))

        # update policy
        print "update_policy_config"
        fab.update_policy_config(parser_option.go_path, policy_pattern="p3")
        time.sleep(self.initial_wait_time)

        # soft reset
        print "soft_reset"
        self.soft_reset(peer2, "ipv4")

        # check local-rib
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.2.0"))
        self.assertFalse(path_exists_in_localrib(peer3,"192.168.20.0",r=3))
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.200.0"))

        # check show ip bgp on peer3(quagga3)
        self.assertTrue(path_exists_in_routing_table(peer3, "192.168.2.0"))
        self.assertFalse(path_exists_in_routing_table(peer3, "192.168.20.0",r=0))
        self.assertTrue(path_exists_in_routing_table(peer3, "192.168.200.0"))


    """
      export-policy test
      r1:192.168.2.0
      r2:192.168.20.0
      r3:192.168.200.0
                           -------------------------------------------------
                           |peer1                                          |
      peer2 ->(r1,r2,r3)-> | ->(r1,r2,r3)-> rib ->(r1,r2,r3)-> adj-rib-out | ->(r1,r2,r3)-> peer1
                           |                                               |
                           |peer3                                          |
                           | ->(r1,r2,r3)-> rib ->(r1)->       adj-rib-out | ->(r1)-> peer3
                           -------------------------------------------------
                   |
           update gobgp.conf
                   |
                   V
                           -------------------------------------------------
                           |peer1                                          |
      peer2 ->(r1,r2,r3)-> | ->(r1,r2,r3)-> rib ->(r1,r2,r3)-> adj-rib-out | ->(r1,r2,r3)-> peer1
                           |                                               |
                           |peer3                                          |
                           | ->(r1,r2,r3)-> rib ->(r1,r3)->    adj-rib-out | ->(r1,r3)-> peer3
                           -------------------------------------------------
    """
    @nose.tools.nottest
    def test_04_export_policy_update(self):
        # initialize test environment
        # policy_pattern:p4 attaches a policy to reject route
        # 192.168.2.0/24, 192.168.20.0/24, 192.168.200.0/24
        # coming from peer2(10.0.0.2) to peer3(10.0.0.3)'s export-policy.
        self.initialize(policy_pattern="p4")

        peer1 = "10.0.0.1"
        peer2 = "10.0.0.2"
        peer3 = "10.0.0.3"
        base_url = self.rest_url_neighbor
        w = self.wait_per_retry

        # add other network
        tn = qaccess.login(peer2)
        print "add network 192.168.20.0/24"
        qaccess.add_network(tn, 65002, "192.168.20.0/24")
        print "add network 192.168.200.0/24"
        qaccess.add_network(tn, 65002, "192.168.200.0/24")
        qaccess.logout(tn)

        self.check_established(self.get_neighbor_address(self.gobgp_config))

        time.sleep(self.initial_wait_time)


        def path_exists_in_localrib(peer, prefix,r=10):
            paths = util.get_paths_in_localrib(base_url, peer, prefix, retry=r, interval=w)
            return paths is not None

        def path_exists_in_routing_table(peer, prefix,r=10):
            qpath = util.get_routing_table(peer, prefix, retry=r, interval=w)
            return qpath is not None

        def path_exists_in_adj_rib_in(peer, prefix,r=10):
            path = util.get_adj_rib_in(base_url, peer, prefix, retry=r, interval=w)
            return path is not None

        def path_exists_in_adj_rib_out(peer, prefix,r=10):
            path = util.get_adj_rib_out(base_url, peer, prefix, retry=r, interval=w)
            return path is not None


        self.assertTrue(path_exists_in_localrib(peer1,"192.168.2.0"))
        self.assertTrue(path_exists_in_localrib(peer1,"192.168.20.0"))
        self.assertTrue(path_exists_in_localrib(peer1,"192.168.200.0"))

        # check peer3 local-rib
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.2.0"))
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.20.0"))
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.200.0"))

        # check peer3 rib-out
        self.assertTrue(path_exists_in_adj_rib_out(peer3,"192.168.2.0/24"))
        self.assertFalse(path_exists_in_adj_rib_out(peer3,"192.168.20.0/24",r=3))
        self.assertFalse(path_exists_in_adj_rib_out(peer3,"192.168.200.0/24",r=3))

        # check show ip bgp on peer1(quagga1)
        self.assertTrue(path_exists_in_routing_table(peer1, "192.168.2.0"))
        self.assertTrue(path_exists_in_routing_table(peer1, "192.168.20.0"))
        self.assertTrue(path_exists_in_routing_table(peer1, "192.168.200.0"))

        # check show ip bgp on peer3(quagga3)
        self.assertTrue(path_exists_in_routing_table(peer3, "192.168.2.0"))
        self.assertFalse(path_exists_in_routing_table(peer3, "192.168.20.0",r=3))
        self.assertFalse(path_exists_in_routing_table(peer3, "192.168.200.0",r=0))

        # check adj-rib-out in peer2
        peer2 = "10.0.0.2"
        self.assertTrue(path_exists_in_adj_rib_in(peer2, "192.168.2.0/24"))
        self.assertTrue(path_exists_in_adj_rib_in(peer2, "192.168.20.0/24"))
        self.assertTrue(path_exists_in_adj_rib_in(peer2, "192.168.200.0/24"))

        # update policy
        print "update_policy_config"
        fab.update_policy_config(parser_option.go_path, policy_pattern="p4")
        time.sleep(self.initial_wait_time)

        # soft reset
        print "soft_reset"
        self.soft_reset(peer2, "ipv4")

        # check local-rib
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.2.0"))
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.20.0"))
        self.assertTrue(path_exists_in_localrib(peer3,"192.168.200.0"))

        # check local-adj-out-rib
        self.assertTrue(path_exists_in_adj_rib_out(peer3, "192.168.2.0/24"))
        self.assertFalse(path_exists_in_adj_rib_out(peer3, "192.168.20.0/24",r=3))
        self.assertTrue(path_exists_in_adj_rib_out(peer3, "192.168.200.0/24"))

        # check show ip bgp on peer3(quagga3)
        self.assertTrue(path_exists_in_routing_table(peer3, "192.168.2.0"))
        self.assertFalse(path_exists_in_routing_table(peer3, "192.168.20.0",r=3))
        self.assertTrue(path_exists_in_routing_table(peer3, "192.168.200.0"))


    def retry_until(self, neighbor_address, target_state="BGP_FSM_ESTABLISHED", retry=3):
        retry_count = 0

        while True:

            current_state = util.get_neighbor_state(self.rest_url_neighbor, neighbor_address)
            if current_state == target_state:
                print "state changed to %s : %s" % (current_state, neighbor_address)
                return True
            else:
                retry_count += 1
                if retry_count > retry:
                    break
                else:
                    print "current state is %s" % current_state
                    print "please wait more (" + str(self.wait_per_retry) + " second)"
                    time.sleep(self.wait_per_retry)

        print "exceeded retry count : %s" % neighbor_address
        return False


    def soft_reset(self, neighbor_address, route_family, type="in"):
        url = self.rest_url_neighbor + neighbor_address + "/softreset"+type+"/" + route_family
        r = requests.post(url)
        if r.status_code == requests.codes.ok:
            print "Succeed"
        else:
            print "Failed"


    def check_load_config(self):
        self.gobgp_config = util.load_gobgp_config(self.gobgp_config_file)
        self.quagga_configs = util.load_quagga_config(self.base_dir)
        if self.gobgp_config is None:
            print "Failed to read the gobgp configuration file"
            return False
        if len(self.quagga_configs) == 0:
            print "Failed to read the quagga configuration file"
            return False
        return True


if __name__ == '__main__':
    if fab.test_user_check() is False:
        print "you are not root."
        sys.exit(1)
    if fab.docker_pkg_check() is False:
        print "not install docker package."
        sys.exit(1)

    nose.main(argv=sys.argv, addplugins=[OptionParser()], defaultTest=sys.argv[0])