blob: 7176ba97cbf39ac489de04e761016e47db55c21c [file] [log] [blame]
Matteo Scandoload0c1752018-08-09 15:47:16 -07001# Copyright 2017-present Open Networking Foundation
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
15import unittest
Scott Bakerc2a633d2019-04-01 19:27:41 -070016from mock import patch, Mock
Matteo Scandoload0c1752018-08-09 15:47:16 -070017import json
18
Scott Bakerc2a633d2019-04-01 19:27:41 -070019import os
20import sys
Matteo Scandoload0c1752018-08-09 15:47:16 -070021
Scott Bakerc2a633d2019-04-01 19:27:41 -070022test_path = os.path.abspath(os.path.dirname(os.path.realpath(__file__)))
23
Matteo Scandoload0c1752018-08-09 15:47:16 -070024
25class TestSubscriberAuthEvent(unittest.TestCase):
26
27 def setUp(self):
28
29 self.sys_path_save = sys.path
Matteo Scandoload0c1752018-08-09 15:47:16 -070030
31 # Setting up the config module
32 from xosconfig import Config
33 config = os.path.join(test_path, "../test_config.yaml")
34 Config.clear()
35 Config.init(config, "synchronizer-config-schema.yaml")
36 from multistructlog import create_logger
37 log = create_logger(Config().get('logging'))
38 # END Setting up the config module
39
Scott Baker71d20472019-02-01 12:05:35 -080040 from xossynchronizer.mock_modelaccessor_build import mock_modelaccessor_config
41 mock_modelaccessor_config(test_path, [("att-workflow-driver", "att-workflow-driver.xproto"),
42 ("olt-service", "volt.xproto"),
Matteo Scandoload6c8942019-02-14 13:02:08 -080043 ("rcord", "rcord.xproto")])
Matteo Scandoload0c1752018-08-09 15:47:16 -070044
Scott Baker71d20472019-02-01 12:05:35 -080045 import xossynchronizer.modelaccessor
46 import mock_modelaccessor
Scott Bakerc2a633d2019-04-01 19:27:41 -070047 reload(mock_modelaccessor) # in case nose2 loaded it in a previous test
Scott Baker71d20472019-02-01 12:05:35 -080048 reload(xossynchronizer.modelaccessor) # in case nose2 loaded it in a previous test
49
50 from xossynchronizer.modelaccessor import model_accessor
51 from dhcp_event import SubscriberDhcpEventStep
Matteo Scandoload0c1752018-08-09 15:47:16 -070052
53 # import all class names to globals
54 for (k, v) in model_accessor.all_model_classes.items():
55 globals()[k] = v
56
Scott Baker71d20472019-02-01 12:05:35 -080057 self.model_accessor = model_accessor
Matteo Scandoload0c1752018-08-09 15:47:16 -070058 self.log = log
59
Scott Baker71d20472019-02-01 12:05:35 -080060 self.event_step = SubscriberDhcpEventStep(model_accessor=self.model_accessor, log=self.log)
Matteo Scandoload0c1752018-08-09 15:47:16 -070061
62 self.event = Mock()
63
64 self.volt = Mock()
65 self.volt.name = "vOLT"
66 self.volt.leaf_model = Mock()
67
Matteo Scandolode8cfa82018-10-16 13:49:05 -070068 # self.subscriber = RCORDSubscriber()
69 # self.subscriber.onu_device = "BRCM1234"
70 # self.subscriber.save = Mock()
Matteo Scandoload0c1752018-08-09 15:47:16 -070071
Matteo Scandoloccef5782018-08-13 13:25:17 -070072 self.mac_address = "00:AA:00:00:00:01"
Matteo Scandoload0c1752018-08-09 15:47:16 -070073 self.ip_address = "192.168.3.5"
74
Matteo Scandolode8cfa82018-10-16 13:49:05 -070075 self.si = AttWorkflowDriverServiceInstance()
76 self.si.serial_number = "BRCM1234"
77 self.si.save = Mock()
78
Matteo Scandoload0c1752018-08-09 15:47:16 -070079 def tearDown(self):
80 sys.path = self.sys_path_save
81
82 def test_dhcp_subscriber(self):
83
84 self.event.value = json.dumps({
Scott Bakerc2a633d2019-04-01 19:27:41 -070085 "deviceId": "of:0000000000000001",
86 "portNumber": "1",
87 "macAddress": self.mac_address,
88 "ipAddress": self.ip_address,
Matteo Scandolode8cfa82018-10-16 13:49:05 -070089 "messageType": "DHCPREQUEST"
Matteo Scandoload0c1752018-08-09 15:47:16 -070090 })
91
92 with patch.object(VOLTService.objects, "get_items") as volt_service_mock, \
Scott Bakerc2a633d2019-04-01 19:27:41 -070093 patch.object(AttWorkflowDriverServiceInstance.objects, "get_items") as si_mock, \
94 patch.object(self.volt, "get_onu_sn_from_openflow") as get_onu_sn:
Matteo Scandoload0c1752018-08-09 15:47:16 -070095
Scott Baker71d20472019-02-01 12:05:35 -080096 self.assertTrue(VOLTService.objects.first() is not None)
97
Matteo Scandoload0c1752018-08-09 15:47:16 -070098 volt_service_mock.return_value = [self.volt]
99 get_onu_sn.return_value = "BRCM1234"
Matteo Scandolode8cfa82018-10-16 13:49:05 -0700100 si_mock.return_value = [self.si]
Matteo Scandoload0c1752018-08-09 15:47:16 -0700101
102 self.event_step.process_event(self.event)
103
Matteo Scandolode8cfa82018-10-16 13:49:05 -0700104 self.si.save.assert_called()
105 self.assertEqual(self.si.dhcp_state, "DHCPREQUEST")
106 self.assertEqual(self.si.mac_address, self.mac_address)
107 self.assertEqual(self.si.ip_address, self.ip_address)
Scott Baker71d20472019-02-01 12:05:35 -0800108
Scott Bakerc2a633d2019-04-01 19:27:41 -0700109
Scott Baker71d20472019-02-01 12:05:35 -0800110if __name__ == '__main__':
Scott Bakerc2a633d2019-04-01 19:27:41 -0700111 sys.path.append("..") # for import of helpers.py
112 unittest.main()