blob: c508ca47a4be72b10685e2ce2d19b65a4fc31e33 (
plain)
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
|
import logging
from ncclient import manager, operations
import settings
LOGGER = logging.getLogger(__name__)
def check_reply_ok(reply):
assert reply is not None
_log_netconf_msg("Received", reply.xml)
assert reply.ok is True
assert reply.error is None
def check_reply_err(reply):
assert reply is not None
_log_netconf_msg("Received", reply.xml)
assert reply.ok is False
assert reply.error is not None
def check_reply_data(reply):
check_reply_ok(reply)
def _log_netconf_msg(header: str, body: str):
"""Log a message using a format inspired by NETCONF 1.1 """
LOGGER.info("%s:\n\n#%d\n%s\n##", header, len(body), body)
class NCTestCase:
""" Base class for NETCONF test cases. Provides a NETCONF connection and some helper methods. """
nc: manager.Manager
def setup(self):
self.nc = manager.connect(
host=settings.HOST,
port=settings.SSH_PORT,
username=settings.USERNAME,
key_filename=settings.SSH_KEY_FILENAME,
allow_agent=False,
look_for_keys=False,
hostkey_verify=False)
self.nc.raise_mode = operations.RaiseMode.NONE
def teardown(self):
self.nc.close_session()
|