aboutsummaryrefslogtreecommitdiffstats
path: root/test/mocks/netconf-pnp-simulator/engine/tests/test_basic_operations.py
blob: 62d41c2595eebf5b91118ab5832dfeb69669a5eb (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
51
52
import unittest
import nctest

class TestBasicOperations(nctest.NCTestCase):
    """ Tests basic NETCONF operations with no prerequisites on datastore content. """

    def test_capabilities(self):
        self.assertTrue(":startup" in self.nc.server_capabilities)
        self.assertTrue(":candidate" in self.nc.server_capabilities)
        self.assertTrue(":validate" in self.nc.server_capabilities)
        self.assertTrue(":xpath" in self.nc.server_capabilities)

    def test_get(self):
        reply = self.nc.get()
        self.check_reply_data(reply)

    def test_get_config_startup(self):
        reply = self.nc.get_config(source='startup')
        self.check_reply_data(reply)

    def test_get_config_running(self):
        reply = self.nc.get_config(source='running')
        self.check_reply_data(reply)

    def test_copy_config(self):
        reply = self.nc.copy_config(source='startup', target='candidate')
        self.check_reply_ok(reply)

    def test_neg_filter(self):
        reply = self.nc.get(filter=("xpath", "/non-existing-module:non-existing-data"))
        self.check_reply_err(reply)

    def test_lock(self):
        reply = self.nc.lock("startup")
        self.check_reply_ok(reply)
        reply = self.nc.lock("running")
        self.check_reply_ok(reply)
        reply = self.nc.lock("candidate")
        self.check_reply_ok(reply)

        reply = self.nc.lock("startup")
        self.check_reply_err(reply)

        reply = self.nc.unlock("startup")
        self.check_reply_ok(reply)
        reply = self.nc.unlock("running")
        self.check_reply_ok(reply)
        reply = self.nc.unlock("candidate")
        self.check_reply_ok(reply)

if __name__ == '__main__':
    unittest.main()