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 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137
|
#!/usr/bin/python3
# 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/>.
import parent
from netlib import *
from testlib import *
@skipImage("No network checkpoint support", "ubuntu-2004", "ubuntu-stable")
@skipImage("Do not test BaseOS packages", "rhel-8-3-distropkg", "rhel-8-4-distropkg")
class TestNetworkingCheckpoints(NetworkCase):
def testCheckpoint(self):
b = self.browser
m = self.machine
iface = self.get_iface(m, "52:54:00:12:34:56")
if "debian" in m.image:
self.sed_file("s/managed=false/managed=true/", "/etc/NetworkManager/NetworkManager.conf",
"systemctl restart NetworkManager")
# HACK - https://bugzilla.redhat.com/show_bug.cgi?id=1400525
wait(lambda: m.execute("nmcli dev con %s" % iface))
self.login_and_go("/network")
self.nm_checkpoints_enable()
self.wait_for_iface(iface, prefix="172.")
self.select_iface(iface)
b.wait_visible("#network-interface")
# Disconnect
self.wait_onoff(".pf-c-card__header:contains('%s')" % iface, True)
self.toggle_onoff(".pf-c-card__header:contains('%s')" % iface)
# Wait for dialog to appear and dismiss it
b.click("#confirm-breaking-change-popup button:contains('Keep connection')")
b.wait_not_visible("#confirm-breaking-change-popup")
if m.image not in ["debian-testing", "debian-stable"]:
# Change IP
self.configure_iface_setting('IPv4')
b.wait_popup("network-ip-settings-dialog")
b.select_from_dropdown("#network-ip-settings-dialog select", "manual")
b.set_val('#network-ip-settings-dialog input[placeholder="Address"]', "1.2.3.4")
b.set_val('#network-ip-settings-dialog input[placeholder*="netmask"]', "24")
b.click("#network-ip-settings-dialog button:contains('Apply')")
b.click("#confirm-breaking-change-popup button:contains('Keep connection')")
b.wait_not_visible("#confirm-breaking-change-popup")
@skipImage("Main interface settings are read-only", "debian-stable", "debian-testing")
@skipImage("not using dhclient", "fedora-coreos")
def testCheckpointSlowRollback(self):
b = self.browser
m = self.machine
# A slow rollback would normally cause the global health check
# to fail during rollback and prevent showing the
# #confirm-breaking-change-popup. We expect the global health
# check failure to be ignored.
#
# We test slow rollbacks by slowing down DHCP requests.
#
# We need at least 60 seconds of network disconnection to let
# the health check fail reliably. A rollback is started 7
# seconds after disconnection, so we need to delay the DHCP
# request by at least 53 seconds. However, NetworkManager has
# a default DHCP timeout of 45 seconds, so we need to increase
# that.
#
# Sometimes, NetworkManager extends the DHCP timeout by an
# additional 480 seconds grace period. This doesn't always
# happen, so we don't rely on it.
dhcp_delay = 60
dhcp_timeout = 120
# There are a couple of considerations for ordering the
# following actions:
#
# - Changing the main.dhcp config value requires a restart of NM.
#
# - A restart of NM might run dhclient, and we don't want it
# to be slowed down already at that point.
#
# - After restarting NM, we need to wait for it to settle
# again before messing with dhclient.
#
# - Simply setting ipv4.dhcp_timeout is not enough if it
# should be used immediately for a checkpoint rollback, see
# https://bugzilla.redhat.com/show_bug.cgi?id=1690389. A
# additional restart is enough.
#
# So we set ipv4.dhcp_timeout and main.dhcp, do a restart, log
# into the UI and wait for the expected interface to appear
# and be active, and then slow down dhclient.
iface = self.get_iface(m, "52:54:00:12:34:56")
con_id = self.iface_con_id(iface)
m.execute('nmcli con mod "%s" ipv4.dhcp-timeout %s' % (con_id, dhcp_timeout))
self.ensure_nm_uses_dhclient()
self.login_and_go("/network")
self.nm_checkpoints_enable()
self.wait_for_iface(iface, prefix="172.")
self.select_iface(iface)
b.wait_visible("#network-interface")
# checkpoints are realtime sensitive, avoid long NM operations
self.settle_cpu()
self.slow_down_dhclient(dhcp_delay)
# Disconnect and trigger a slow rollback
self.wait_onoff(".pf-c-card__header:contains('%s')" % iface, True)
self.toggle_onoff(".pf-c-card__header:contains('%s')" % iface)
with b.wait_timeout(120):
b.click("#confirm-breaking-change-popup button:contains('Keep connection')")
b.wait_not_visible("#confirm-breaking-change-popup")
if __name__ == '__main__':
test_main()
|