Trevor Cooper
04c4a50c19
* add dnf_contentdir library function and implement is sample tests * Short circuit auto addition of _console_wait_login for tests without DESKTOP * support use of REPOSITORY_GRAPHICAL and ADD_REPOSITORY_GRAPHICAL test variables * deprecate addition of dnf_contentdir lib function * create and use get_version_major utility function * resolve mismatch of login type caused by incorrect template entries * add and use _staging_repos_enable post-install test * add install_package_set_* tests only to package-set flavor * fix variable re-declaration warning/error * add rocky-getting-started-tour needles * release rocky-repos content require switch from mirrorlist to baseurl * implement DNF_CONTENTDIR swap as post-install action before reboot/login * temp disable _staging_repos_enable * incomplete fix for _graphical_wait_login - get_release_number is used heavily in our openQA but makes no sense in Rocky. Multiple possible solutions but this one allows `_graphical_wait_login` to pass. NEEDS_WORK
59 lines
1.9 KiB
Perl
59 lines
1.9 KiB
Perl
use base "installedtest";
|
|
use strict;
|
|
use testapi;
|
|
use utils;
|
|
|
|
sub run {
|
|
my $relnum = get_release_number;
|
|
my $version_major = get_version_major;
|
|
if (get_var("LANGUAGE") eq 'japanese' && (($relnum > 33) || ($version_major > 8))) {
|
|
# since g-i-s new user mode was dropped and the replacement
|
|
# doesn't do input method selection, and anaconda never has,
|
|
# we have to set up the input method manually:
|
|
# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3749
|
|
menu_launch_type "keyboard";
|
|
assert_and_click "desktop_add_input_source";
|
|
assert_and_click "desktop_input_source_japanese";
|
|
assert_and_click "desktop_input_source_japanese_anthy";
|
|
send_key "ret";
|
|
wait_still_screen 3;
|
|
send_key "alt-f4";
|
|
}
|
|
# do this from the overview because the desktop uses the stupid
|
|
# transparent top bar which messes with our needles
|
|
send_key "alt-f1";
|
|
assert_screen "overview_app_grid";
|
|
# check both layouts are available at the desktop; here,
|
|
# we can expect input method switching to work too
|
|
desktop_switch_layout 'ascii';
|
|
desktop_switch_layout 'native';
|
|
# special testing for Japanese to ensure input method actually
|
|
# works. If we ever test other input-method based languages we can
|
|
# generalize this out, for now we just inline Japanese
|
|
if (get_var("LANGUAGE") eq 'japanese') {
|
|
# wait a bit for input switch to complete
|
|
sleep 3;
|
|
|
|
# assume we can test input from whatever 'alt-f1' opened
|
|
type_safely "yama";
|
|
assert_screen "desktop_yama_hiragana";
|
|
send_key "spc";
|
|
assert_screen "desktop_yama_kanji";
|
|
send_key "spc";
|
|
assert_screen "desktop_yama_chooser";
|
|
send_key "esc";
|
|
send_key "esc";
|
|
send_key "esc";
|
|
send_key "esc";
|
|
check_desktop;
|
|
}
|
|
}
|
|
|
|
sub test_flags {
|
|
return { fatal => 1 };
|
|
}
|
|
|
|
1;
|
|
|
|
# vim: set sw=4 et:
|