mirror of
https://pagure.io/fedora-qa/os-autoinst-distri-fedora.git
synced 2024-11-04 23:24:21 +00:00
35660bb4ed
Boxes dropped VNC functionality. It's supposed to be replaced by Connections, but we can't use that until it has fullscreen: https://gitlab.gnome.org/GNOME/connections/-/issues/5 so use Vinagre for now. We do also prepare some needles for Connections in anticipation of being able to use it later (since I already did the work and don't want to waste it...) Signed-off-by: Adam Williamson <awilliam@redhat.com>
27 lines
621 B
Perl
27 lines
621 B
Perl
use base "installedtest";
|
|
use strict;
|
|
use tapnet;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $self = shift;
|
|
boot_to_login_screen(timeout => 300);
|
|
$self->root_console(tty=>3);
|
|
setup_tap_static('172.16.2.115', 'vnc002.test.openqa.fedoraproject.org');
|
|
# test test: check if we can see the server
|
|
assert_script_run "ping -c 2 172.16.2.114";
|
|
# FIXME https://pagure.io/fedora-workstation/issue/231 - Boxes
|
|
# dropped VNC functionality, no default replacement yet
|
|
assert_script_run "dnf -y install vinagre";
|
|
desktop_vt;
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|