File: test_alu.py

package info (click to toggle)
python-ncclient 0.6.17-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,448 kB
  • sloc: python: 9,548; xml: 476; makefile: 77; sh: 5
file content (53 lines) | stat: -rw-r--r-- 1,917 bytes parent folder | download | duplicates (2)
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
import unittest
from ncclient.devices.alu import *
from ncclient.xml_ import *
import re


xml = """<rpc-reply xmlns:junos="http://xml.alu.net/alu/12.1x46/alu">
<routing-engin>
<name>reX</name>
<commit-success/>
<!-- This is a comment -->
</routing-engin>
<ok/>
</rpc-reply>"""


class TestAluDevice(unittest.TestCase):
    
    def setUp(self):
        self.obj = AluDeviceHandler({'name': 'alu'})

    def test_remove_namespaces(self):
        xmlObj = to_ele(xml)
        expected = re.sub(r'<rpc-reply xmlns:junos="http://xml.alu.net/alu/12.1x46/alu">',
                          r'<?xml version="1.0" encoding="UTF-8"?><rpc-reply>', xml)
        self.assertEqual(expected, to_xml(remove_namespaces(xmlObj)))

    def test_get_capabilities(self):
        expected = ["urn:ietf:params:netconf:base:1.0", ]
        self.assertListEqual(expected, self.obj.get_capabilities())

    def test_get_xml_base_namespace_dict(self):
        expected = {None: BASE_NS_1_0}
        self.assertDictEqual(expected, self.obj.get_xml_base_namespace_dict())

    def test_get_xml_extra_prefix_kwargs(self):
        expected = dict()
        expected["nsmap"] = self.obj.get_xml_base_namespace_dict()
        self.assertDictEqual(expected, self.obj.get_xml_extra_prefix_kwargs())

    def test_add_additional_operations(self):
        expected=dict()
        expected["get_configuration"] = GetConfiguration
        expected["show_cli"] = ShowCLI
        expected["load_configuration"] = LoadConfiguration
        self.assertDictEqual(expected, self.obj.add_additional_operations())
    
    def test_transform_reply(self):
        expected = re.sub(r'<rpc-reply xmlns:junos="http://xml.alu.net/alu/12.1x46/alu">',
                          r'<?xml version="1.0" encoding="UTF-8"?><rpc-reply>', xml)
        actual = self.obj.transform_reply()
        xmlObj = to_ele(xml)
        self.assertEqual(expected, to_xml(actual(xmlObj)))