#!/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/>.

import netlib
import testlib
from lib.constants import TEST_OS_DEFAULT


class TestNetworkingMTU(netlib.NetworkCase):
    provision = {
        "machine1": {"memory_mb": 512},
        "machine2": {"image": TEST_OS_DEFAULT, "address": "10.111.113.2/20", "dhcp": True, "memory_mb": 256}
    }

    def testMtu(self):
        b = self.browser
        m = self.machine

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

        iface = self.add_iface()
        self.wait_for_iface(iface)

        self.select_iface(iface)
        b.wait_visible("#network-interface")

        self.configure_iface_setting('MTU')
        b.wait_visible("#network-mtu-settings-dialog")

        # wait until dialog initialized
        b.wait_visible("#network-mtu-settings-dialog button[aria-label=Close]")
        b.wait_visible("#network-mtu-settings-custom")
        b.assert_pixels("#network-mtu-settings-dialog", "networking-mtu-settings-dialog")

        b.set_checked('#network-mtu-settings-custom', val=True)
        b.set_input_text("#network-mtu-settings-input", "-1500")
        b.click("button:contains('Save')")
        b.wait_visible("#network-mtu-settings-error:contains('MTU must be a positive number')")
        b.set_input_text('#network-mtu-settings-input', "1400")
        b.click("#network-mtu-settings-save")
        b.wait_not_present("#network-mtu-settings-dialog")
        self.wait_for_iface_setting('MTU', '1400')

        # We're debugging failures here log status to journal for diagnosis
        testlib.wait(lambda: "mtu 1400" in m.execute(f"ip link show {iface} | logger -s 2>&1"))

        self.configure_iface_setting("MTU")
        b.wait_visible("#network-mtu-settings-dialog")
        b.set_checked("#network-mtu-settings-auto", val=True)
        b.click("button:contains('Save')")
        self.wait_for_iface_setting("MTU", "Automatic")


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