forked from sysrepo/sysrepo-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_connection.py
89 lines (73 loc) · 3.31 KB
/
test_connection.py
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# Copyright (c) 2020 6WIND S.A.
# SPDX-License-Identifier: BSD-3-Clause
import grp
import logging
import os
import pwd
import unittest
import libyang
import sysrepo
YANG_FILE = os.path.join(
os.path.dirname(os.path.dirname(__file__)), "examples/sysrepo-example.yang"
)
sysrepo.configure_logging(stderr_level=logging.ERROR)
# ------------------------------------------------------------------------------
class ConnectionTest(unittest.TestCase):
def test_conn_connect(self):
conn = sysrepo.SysrepoConnection()
conn.disconnect()
def test_conn_connect_ctxmgr(self):
with sysrepo.SysrepoConnection():
pass
def test_conn_start_session(self):
with sysrepo.SysrepoConnection() as conn:
sess = conn.start_session()
self.assertEqual(sess.get_datastore(), "running")
sess.stop()
def test_conn_start_session_ctxmgr(self):
with sysrepo.SysrepoConnection() as conn:
with conn.start_session() as sess:
self.assertEqual(sess.get_datastore(), "running")
def test_conn_start_session_operational(self):
with sysrepo.SysrepoConnection() as conn:
with conn.start_session("operational") as sess:
self.assertEqual(sess.get_datastore(), "operational")
def test_conn_install_remove_modules(self):
YANG_FILE2 = os.path.join(
os.path.dirname(os.path.dirname(__file__)), "examples/sysrepo-example2.yang"
)
with sysrepo.SysrepoConnection() as conn:
filepaths = {YANG_FILE: ["turbo"], YANG_FILE2: ["turbo2"]}
# filepaths = {YANG_FILE2: ["turbo2"]}
conn.install_modules(filepaths)
with sysrepo.SysrepoConnection() as conn:
modules = ["sysrepo-example", "sysrepo-example2"]
conn.remove_modules(modules)
def test_conn_install_remove_module(self):
with sysrepo.SysrepoConnection() as conn:
conn.install_module(YANG_FILE, enabled_features=["turbo"])
with sysrepo.SysrepoConnection() as conn:
conn.remove_module("sysrepo-example")
with sysrepo.SysrepoConnection() as conn:
with conn.get_ly_ctx() as ctx:
with self.assertRaises(libyang.LibyangError):
ctx.get_module("sysrepo-example")
def test_conn_enable_module_feature(self):
with sysrepo.SysrepoConnection() as conn:
conn.install_module(YANG_FILE)
conn.enable_module_feature("sysrepo-example", "turbo")
with conn.start_session("operational") as sess:
data = sess.get_data("/ietf-yang-library:*")
data = data["yang-library"]["module-set"]
data = next(iter(data))
data = data["module"]
data = [x for x in data if x["name"] == "sysrepo-example"][0]
self.assertIn("feature", data)
conn.remove_module("sysrepo-example")
def test_conn_get_module_infos(self):
with sysrepo.SysrepoConnection() as conn:
conn.install_module(YANG_FILE)
owner, group, perm = conn.get_module_ds_access("sysrepo-example")
self.assertEqual(pwd.getpwnam(owner).pw_uid, os.geteuid())
self.assertEqual(grp.getgrnam(group).gr_gid, os.getegid())
self.assertEqual(perm, 0o600)