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
|
#!/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 time
import parent
from testlib import *
@skipImage("Do not test BaseOS packages", "rhel-8-3-distropkg", "rhel-8-4-distropkg")
class TestMenu(MachineCase):
@enableAxe
def testBasic(self):
b = self.browser
m = self.machine
# Add a link with a hash in it to test that this works
m.execute("mkdir -p /usr/local/share/cockpit/systemd && cp -rp /usr/share/cockpit/systemd/* /usr/local/share/cockpit/systemd")
m.execute(
"""sed -i '/"menu"/a "memory": { "label": "Memory", "path": "#/memory" },' /usr/local/share/cockpit/systemd/manifest.json""")
m.execute("printf '[Session]\nIdleTimeout = 1\n' >> /etc/cockpit/cockpit.conf")
self.login_and_go("/system")
b.switch_to_top()
b.click('#navbar-docs-dropdown')
b.click('a:contains("About Web Console")')
b.wait_visible('.pf-c-modal-box__body:contains("Cockpit is an interactive Linux server admin interface")')
b.click('#about-cockpit-modal .pf-c-modal-box__footer button')
b.wait_not_present('#about-cockpit-modal')
# Test session timeout
time.sleep(20)
b.wait_not_present("#session-timeout-modal")
b.wait_visible("#nav-system")
b.enter_page("/system")
b.mouse("#system_information_hardware_text", "mousemove", 24, 24)
b.switch_to_top()
time.sleep(35)
with b.wait_timeout(3):
b.wait_visible("#session-timeout-modal")
self.assertGreater(int(b.text("#session-timeout-modal .pf-c-modal-box__body").split()[-2]), 15)
b.click("#session-timeout-modal footer button")
b.wait_not_present("#session-timeout-modal")
time.sleep(30)
with b.wait_timeout(8):
b.wait_popup("session-timeout-modal")
self.assertGreater(int(b.text("#session-timeout-modal .pf-c-modal-box__body").split()[-2]), 20)
time.sleep(30)
b.wait_visible("#login")
b.wait_visible("#login-info-message")
b.wait_text("#login-info-message", "You have been logged out due to inactivity.")
m.execute("sed -i '/IdleTimeout/d' /etc/cockpit/cockpit.conf")
m.restart_cockpit()
b.reload()
self.login_and_go("/system")
b.switch_to_top()
time.sleep(75)
b.wait_not_present("#session-timeout-modal")
b.wait_visible("#nav-system")
self.check_axe("Test-navigation")
# Check that we can use a link with a hash in it
b.switch_to_top()
b.click("a[href='/system/#/memory']")
b.enter_page("/system")
# Ensure that our tests pick up unhandled JS exceptions
b.switch_to_top()
b.go("/playground/exception")
# Test that subpages are correctly shown in the navigation (twice - once that only one page is shown as active)
b.wait_visible("#host-apps .pf-m-current")
b.wait_visible("#host-apps .pf-m-current:contains('Development')")
b.enter_page("/playground/exception")
b.wait_visible("button")
with self.assertRaisesRegex(RuntimeError, "TypeError:.*undefined"):
b.click("button")
# Some round trips, one of which should update the deferred exception
for i in range(0, 5):
b.wait_visible("button")
time.sleep(2)
# UI should also show the crash
b.switch_to_top()
b.wait_visible("#navbar-oops")
if __name__ == '__main__':
test_main()
|