2016-12-21 16:41:00 +00:00
|
|
|
use base "installedtest";
|
|
|
|
use strict;
|
|
|
|
use testapi;
|
2017-01-18 07:15:44 +00:00
|
|
|
use utils;
|
2016-12-21 16:41:00 +00:00
|
|
|
|
|
|
|
sub run {
|
2017-07-10 21:41:57 +00:00
|
|
|
# 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";
|
2016-12-21 16:41:00 +00:00
|
|
|
# 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') {
|
2017-03-20 18:32:50 +00:00
|
|
|
# wait a bit for input switch to complete
|
|
|
|
sleep 3;
|
2017-07-10 21:41:57 +00:00
|
|
|
# assume we can test input from whatever 'alt-f1' opened
|
2016-12-21 16:41:00 +00:00
|
|
|
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";
|
2017-07-10 18:41:02 +00:00
|
|
|
check_desktop_clean;
|
2016-12-21 16:41:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
sub test_flags {
|
|
|
|
return { fatal => 1 };
|
|
|
|
}
|
|
|
|
|
|
|
|
1;
|
|
|
|
|
|
|
|
# vim: set sw=4 et:
|