File: test_iosxr.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 (21 lines) | stat: -rw-r--r-- 664 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
import unittest
from ncclient.devices.iosxr import *


class TestIosxrDevice(unittest.TestCase):
    
    def setUp(self):
        self.obj = IosxrDeviceHandler({'name': 'iosxe'})

    def test_add_additional_ssh_connect_params(self):
        expected = dict()
        expected["unknown_host_cb"] = iosxr_unknown_host_cb
        actual = dict()
        self.obj.add_additional_ssh_connect_params(actual)
        self.assertDictEqual(expected, actual)

    def test_perform_qualify_check(self):
        self.assertFalse(self.obj.perform_qualify_check())

    def test_csr_unknown_host_cb(self):
        self.assertTrue(iosxr_unknown_host_cb('host', 'fingerprint'))