cockpit/test/verify/check-session

71 lines
2.1 KiB
Python
Executable File

#!/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/>.
from testlib import MachineCase, nondestructive, skipDistroPackage, test_main, wait
@skipDistroPackage()
@nondestructive
class TestSession(MachineCase):
def testBasic(self):
m = self.machine
b = self.browser
def wait_session(should_exist):
wait(lambda: (should_exist == ("admin" in m.execute("loginctl list-sessions"))))
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(f"loginctl show-session -p Type {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.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.logout()
wait_session(False)
if __name__ == '__main__':
test_main()