Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 1 | # 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 | |
| 15 | import unittest |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 16 | |
| 17 | from mock import Mock |
| 18 | |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 19 | from helpers import Helpers |
| 20 | |
Matteo Scandolo | d44ca99 | 2018-05-17 15:02:10 -0700 | [diff] [blame] | 21 | |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 22 | class TestHelpers(unittest.TestCase): |
| 23 | |
| 24 | def setUp(self): |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 25 | # Create a mock service instance |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 26 | o = Mock() |
| 27 | o.voltha_url = "voltha_url" |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 28 | o.voltha_port = 1234 |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 29 | o.voltha_user = "voltha_user" |
| 30 | o.voltha_pass = "voltha_pass" |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 31 | o.onos_voltha_url = "onos_voltha_url" |
| 32 | o.onos_voltha_port = 4321 |
| 33 | o.onos_voltha_user = "onos_voltha_user" |
| 34 | o.onos_voltha_pass = "onos_voltha_pass" |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 35 | |
| 36 | self.o = o |
| 37 | |
| 38 | def test_format_url(self): |
| 39 | url = Helpers.format_url("onf.com") |
| 40 | self.assertEqual(url, "http://onf.com") |
| 41 | url = Helpers.format_url("http://onf.com") |
| 42 | self.assertEqual(url, "http://onf.com") |
| 43 | |
| 44 | def test_get_voltha_info(self): |
| 45 | voltha_dict = Helpers.get_voltha_info(self.o) |
| 46 | |
| 47 | self.assertEqual(voltha_dict["url"], "http://voltha_url") |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 48 | self.assertEqual(voltha_dict["port"], 1234) |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 49 | self.assertEqual(voltha_dict["user"], "voltha_user") |
| 50 | self.assertEqual(voltha_dict["pass"], "voltha_pass") |
| 51 | |
| 52 | def test_get_onos_info(self): |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 53 | onos_voltha_dict = Helpers.get_onos_voltha_info(self.o) |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 54 | |
Luca Prete | ca974c8 | 2018-05-01 18:06:16 -0700 | [diff] [blame] | 55 | self.assertEqual(onos_voltha_dict["url"], "http://onos_voltha_url") |
| 56 | self.assertEqual(onos_voltha_dict["port"], 4321) |
| 57 | self.assertEqual(onos_voltha_dict["user"], "onos_voltha_user") |
| 58 | self.assertEqual(onos_voltha_dict["pass"], "onos_voltha_pass") |
Matteo Scandolo | f6337eb | 2018-04-05 15:58:37 -0700 | [diff] [blame] | 59 | |
| 60 | def test_datapath_id_to_hex(self): |
| 61 | hex = Helpers.datapath_id_to_hex(55334486016) |
| 62 | self.assertEqual(hex, "0000000ce2314000") |
| 63 | |
| 64 | hex = Helpers.datapath_id_to_hex("55334486016") |
| 65 | self.assertEqual(hex, "0000000ce2314000") |
| 66 | |
| 67 | if __name__ == "__main__": |
| 68 | unittest.main() |