mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 23:24:21 +00:00
81ebcd882c
On Rawhide, X fails to start unless this is installed. Should probably be in the base-x group, I'll file a bug or add it.
31 lines
877 B
Perl
31 lines
877 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
# check cockpit appears to be enabled and running and firewall is setup
|
|
assert_script_run 'systemctl is-enabled cockpit.socket';
|
|
assert_script_run 'systemctl is-active cockpit.socket';
|
|
assert_script_run 'firewall-cmd --query-service cockpit';
|
|
# use compose repo, disable u-t, etc.
|
|
repo_setup();
|
|
# install a desktop and firefox so we can actually try it
|
|
assert_script_run 'dnf -y groupinstall "base-x"', 300;
|
|
# FIXME: this should probably be in base-x...X seems to fail without
|
|
assert_script_run 'dnf -y install libglvnd-egl', 120;
|
|
assert_script_run 'dnf -y install firefox', 120;
|
|
start_cockpit(0);
|
|
# quit firefox (return to console)
|
|
send_key "ctrl-q";
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|