File: check-networkmanager-unmanaged

package info (click to toggle)
cockpit 356-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 317,176 kB
  • sloc: javascript: 775,374; python: 41,133; ansic: 33,875; cpp: 11,141; sh: 3,534; makefile: 581; xml: 262
file content (32 lines) | stat: -rwxr-xr-x 907 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
#!/usr/bin/python3 -cimport os, sys; os.execv(os.path.dirname(sys.argv[1]) + "/../common/pywrap", sys.argv)

#
# Copyright (C) 2013 Red Hat, Inc.
# SPDX-License-Identifier: LGPL-2.1-or-later


import netlib
import testlib


@testlib.nondestructive
class TestNetworkingUnmanaged(netlib.NetworkCase):
    def testUnmanaged(self):
        b = self.browser
        m = self.machine

        iface = "cockpit1"
        self.add_veth(iface, dhcp_cidr="10.111.113.2/20")

        # Now mark this interface as unmanaged
        m.execute(r"printf '[keyfile]\nunmanaged-devices=%s\n' > /etc/NetworkManager/conf.d/unmanaged.conf" % iface)
        m.execute("systemctl restart NetworkManager")

        self.login_and_go("/network")

        with b.wait_timeout(60):
            b.wait_visible("#networking-unmanaged-interfaces tr[data-interface='" + iface + "']")


if __name__ == '__main__':
    testlib.test_main()