#!/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("NetworkManager-team not installed", "fedora-coreos")
@skipImage("Changed in #14322", "rhel-8-3-distropkg")
@nondestructive
class TestTeam(NetworkCase):
    def testBasic(self):
        b = self.browser
        m = self.machine

        self.login_and_go("/network")

        b.wait_attr("#networking-add-team", "data-test-stable", "yes")

        iface1 = "cockpit1"
        self.add_veth(iface1, dhcp_cidr="10.111.113.1/24", dhcp_range=['10.111.113.2', '10.111.113.254'])
        self.nm_activate_eth(iface1)
        iface2 = "cockpit2"
        self.add_veth(iface2, dhcp_cidr="10.111.114.1/24", dhcp_range=['10.111.114.2', '10.111.114.254'])
        self.nm_activate_eth(iface2)
        self.wait_for_iface(iface1)
        self.wait_for_iface(iface2)

        # team them
        b.click("button:contains('Add Team')")
        b.wait_popup("network-team-settings-dialog")
        b.set_val("#network-team-settings-interface-name-input", "tteam")
        b.set_checked("input[data-iface='%s']" % iface1, True)
        b.set_checked("input[data-iface='%s']" % iface2, True)
        b.click("#network-team-settings-dialog button:contains('Apply')")
        b.wait_popdown("network-team-settings-dialog")
        b.wait_present("#networking-interfaces tr[data-interface='tteam']")

        # Check that the configuration file has the expected sane name
        # on systems that use "network-scripts".
        if m.image not in ["fedora-coreos"]:
            m.execute("! test -d /etc/sysconfig || test -f /etc/sysconfig/network-scripts/ifcfg-tteam")

        # Check that the members are displayed
        b.click("#networking-interfaces tr[data-interface='tteam'] td:first-child")
        b.wait_visible("#network-interface")
        b.wait_present("#network-interface-members tr[data-interface='%s']" % iface1)
        b.wait_present("#network-interface-members tr[data-interface='%s']" % iface2)

        # Deactivate the team and make sure it is still there after a
        # reload.
        b.wait_text_not("#network-interface-mac", "")
        self.wait_onoff(".panel-heading:contains('tteam')", True)
        self.toggle_onoff(".panel-heading:contains('tteam')")
        b.wait_in_text("tr:contains('Status')", "Inactive")
        b.reload()
        b.enter_page("/network")
        b.wait_text("#network-interface-name", "tteam")
        b.wait_text("#network-interface-hw", "Team")
        b.wait_present("#network-interface-members tr[data-interface='%s']" % iface1)
        b.wait_present("#network-interface-members tr[data-interface='%s']" % iface2)

        # Delete the team
        b.click("#network-interface button:contains('Delete')")
        b.wait_visible("#networking")
        b.wait_not_present("#networking-interfaces tr[data-interface='tteam']")

        # Check that the former members are displayed and both On
        self.wait_for_iface(iface1)
        self.wait_for_iface(iface2)

        # Due to above reload
        self.allow_journal_messages(".*Connection reset by peer.*",
                                    "connection unexpectedly closed by peer")

    def testActive(self):
        b = self.browser

        self.login_and_go("/network")

        iface = "cockpit1"
        self.add_veth(iface, dhcp_cidr="10.111.112.2/20")
        self.nm_activate_eth(iface)
        self.wait_for_iface(iface)

        # Put an active interface into a team. We can't select/copy the MAC, so we can't expect to
        # get the same IP as the active interface, but it should get a valid DHCP IP.

        b.click("button:contains('Add Team')")
        b.wait_popup("network-team-settings-dialog")
        b.set_val("#network-team-settings-interface-name-input", "tteam")
        b.set_checked("input[data-iface='%s']" % iface, True)
        b.click("#network-team-settings-dialog button:contains('Apply')")
        b.wait_popdown("network-team-settings-dialog")

        # Check that it has the interface and the right IP address
        b.click("#networking-interfaces tr[data-interface='tteam'] td:first-child")
        b.wait_visible("#network-interface")
        b.wait_present("#network-interface-members tr[data-interface='%s']" % iface)
        b.wait_in_text("#network-interface .panel:contains('tteam')", "10.111")


if __name__ == '__main__':
    test_main()
