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
|
#!/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 testlib import *
@skipImage("Do not test BaseOS packages", "rhel-8-3-distropkg", "rhel-8-4-distropkg")
class TestSession(MachineCase):
def testBasic(self):
m = self.machine
b = self.browser
self.allow_restart_journal_messages()
# Might happen when killing the bridge.
self.allow_journal_messages("localhost: dropping message while waiting for child to exit",
"Error executing command as another user: Not authorized",
".*No session for cookie",
".*external channel failed: terminated",
)
def wait_session(should_exist):
def cond():
return should_exist == ("admin" in m.execute("loginctl list-sessions"))
# sometimes the session gets stuck forever in state 'closing' with no processes.
# https://bugs.freedesktop.org/show_bug.cgi?id=89024
wait(cond)
wait_session(False)
# Login
self.login_and_go("/system")
wait_session(True)
# Check session type
if not m.ostree_image:
id = m.execute("loginctl list-sessions | awk '/admin/ {print $1}'").strip()
self.assertEqual(m.execute("loginctl show-session -p Type %s" % id).strip(), "Type=web")
# Logout
b.logout()
b.wait_visible("#login")
wait_session(False)
# Login again
b.set_val("#login-user-input", "admin")
b.set_val("#login-password-input", "foobar")
b.click('#login-button')
b.expect_load()
b.enter_page("/system")
wait_session(True)
# Kill session from the outside
m.execute("loginctl terminate-user admin")
wait_session(False)
b.relogin("/system", "admin")
wait_session(True)
# Kill session from the inside
b.switch_to_top()
b.wait_visible("#content")
b.wait_text('#current-username', 'admin')
if __name__ == '__main__':
test_main()
|