File: check-networkmanager-vlan

package info (click to toggle)
cockpit 337-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 36,232 kB
  • sloc: javascript: 47,090; python: 38,766; ansic: 35,470; xml: 6,048; sh: 3,413; makefile: 614
file content (71 lines) | stat: -rwxr-xr-x 2,932 bytes parent folder | download | duplicates (4)
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
#!/usr/bin/python3 -cimport os, sys; os.execv(os.path.dirname(sys.argv[1]) + "/../common/pywrap", sys.argv)

# This file is part of Cockpit.
#
# Copyright (C) 2013 Red Hat, Inc.
#
# Cockpit is free software; you can redistribute it and/or modify it
# under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2.1 of the License, or
# (at your option) any later version.
#
# Cockpit is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with Cockpit; If not, see <https://www.gnu.org/licenses/>.

import netlib
import testlib


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

        self.login_and_go("/network")
        b.wait_visible("#networking")

        iface = 'cockpit1'
        self.add_veth(iface, dhcp_cidr="10.111.113.2/20")
        self.wait_for_iface(iface, active=False)

        # Make a VLAN interface
        b.click("button:contains('Add VLAN')")
        b.wait_visible("#network-vlan-settings-dialog")

        # wait until dialog initialized
        b.wait_visible("#network-vlan-settings-dialog button[aria-label=Close]")
        # Remove focus ring around the close button, which causes pixel tests retries.
        b.blur("#network-vlan-settings-dialog button[aria-label=Close]")
        b.wait_visible("#network-vlan-settings-interface-name-input")
        b.assert_pixels("#network-vlan-settings-dialog", "networking-vlan-settings-dialog")

        b.select_from_dropdown("#network-vlan-settings-parent-select", iface)
        b.set_input_text("#network-vlan-settings-interface-name-input", "tvlan")
        b.set_input_text("#network-vlan-settings-vlan-id-input", "123")
        b.click("#network-vlan-settings-dialog button:contains('Add')")
        b.wait_not_present("#network-vlan-settings-dialog")
        b.wait_visible("#networking-interfaces tr[data-interface='tvlan']")

        # It automatically activates.  It won't get an IP address, but that's okay.
        self.wait_for_iface("tvlan", state="Configuring IP")

        # Check that the actual kernel device has the REORDER_HDR flag
        # set.  NetworkManager stopped doing that for connections
        # created via D-Bus at some point.
        self.assertIn("REORDER_HDR", m.execute("ip -d link show tvlan | grep vlan"))

        # Delete it
        self.select_iface('tvlan')
        b.click("#network-interface button:contains('Delete')")
        b.wait_visible("#networking")
        b.wait_not_present("#networking-interfaces tr[data-interface='tvlan']")


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