cockpit/test/verify/check-networkmanager-vlan

73 lines
2.9 KiB
Python
Executable File

#!/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 <http://www.gnu.org/licenses/>.
from netlib import NetworkCase
from testlib import nondestructive, skipDistroPackage, test_main
@nondestructive
@skipDistroPackage()
class TestNetworkingVLAN(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('Save')")
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__':
test_main()