blob: f97625e7b20825fe53222ca62d7360bb33e115be [file] [log] [blame]
Matteo Scandolof6337eb2018-04-05 15:58:37 -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
16from mock import patch, call, Mock, PropertyMock
17from helpers import Helpers
18
19class TestHelpers(unittest.TestCase):
20
21 def setUp(self):
Luca Preteca974c82018-05-01 18:06:16 -070022 # Create a mock service instance
Matteo Scandolof6337eb2018-04-05 15:58:37 -070023 o = Mock()
24 o.voltha_url = "voltha_url"
Luca Preteca974c82018-05-01 18:06:16 -070025 o.voltha_port = 1234
Matteo Scandolof6337eb2018-04-05 15:58:37 -070026 o.voltha_user = "voltha_user"
27 o.voltha_pass = "voltha_pass"
Luca Preteca974c82018-05-01 18:06:16 -070028 o.onos_voltha_url = "onos_voltha_url"
29 o.onos_voltha_port = 4321
30 o.onos_voltha_user = "onos_voltha_user"
31 o.onos_voltha_pass = "onos_voltha_pass"
Matteo Scandolof6337eb2018-04-05 15:58:37 -070032
33 self.o = o
34
35 def test_format_url(self):
36 url = Helpers.format_url("onf.com")
37 self.assertEqual(url, "http://onf.com")
38 url = Helpers.format_url("http://onf.com")
39 self.assertEqual(url, "http://onf.com")
40
41 def test_get_voltha_info(self):
42 voltha_dict = Helpers.get_voltha_info(self.o)
43
44 self.assertEqual(voltha_dict["url"], "http://voltha_url")
Luca Preteca974c82018-05-01 18:06:16 -070045 self.assertEqual(voltha_dict["port"], 1234)
Matteo Scandolof6337eb2018-04-05 15:58:37 -070046 self.assertEqual(voltha_dict["user"], "voltha_user")
47 self.assertEqual(voltha_dict["pass"], "voltha_pass")
48
49 def test_get_onos_info(self):
Luca Preteca974c82018-05-01 18:06:16 -070050 onos_voltha_dict = Helpers.get_onos_voltha_info(self.o)
Matteo Scandolof6337eb2018-04-05 15:58:37 -070051
Luca Preteca974c82018-05-01 18:06:16 -070052 self.assertEqual(onos_voltha_dict["url"], "http://onos_voltha_url")
53 self.assertEqual(onos_voltha_dict["port"], 4321)
54 self.assertEqual(onos_voltha_dict["user"], "onos_voltha_user")
55 self.assertEqual(onos_voltha_dict["pass"], "onos_voltha_pass")
Matteo Scandolof6337eb2018-04-05 15:58:37 -070056
57 def test_datapath_id_to_hex(self):
58 hex = Helpers.datapath_id_to_hex(55334486016)
59 self.assertEqual(hex, "0000000ce2314000")
60
61 hex = Helpers.datapath_id_to_hex("55334486016")
62 self.assertEqual(hex, "0000000ce2314000")
63
64if __name__ == "__main__":
65 unittest.main()