2020-11-22 10:17:08 +03:00
|
|
|
import ../make-test-python.nix (
|
2020-08-26 15:58:37 +03:00
|
|
|
{
|
|
|
|
pkgs, ...
|
2020-11-22 10:17:08 +03:00
|
|
|
}:
|
2020-08-26 15:58:37 +03:00
|
|
|
# copy_from_host works only for store paths
|
|
|
|
rec {
|
|
|
|
name = "fcitx";
|
2022-03-21 02:15:30 +03:00
|
|
|
nodes.machine =
|
2020-11-22 10:17:08 +03:00
|
|
|
{
|
|
|
|
pkgs,
|
|
|
|
...
|
|
|
|
}:
|
2020-08-26 15:58:37 +03:00
|
|
|
{
|
|
|
|
|
|
|
|
imports = [
|
|
|
|
../common/user-account.nix
|
|
|
|
];
|
|
|
|
|
|
|
|
environment.systemPackages = [
|
|
|
|
# To avoid clashing with xfce4-terminal
|
2020-11-22 10:17:08 +03:00
|
|
|
pkgs.alacritty
|
2020-08-26 15:58:37 +03:00
|
|
|
];
|
|
|
|
|
|
|
|
|
2020-11-22 10:17:08 +03:00
|
|
|
services.xserver =
|
2020-08-26 15:58:37 +03:00
|
|
|
{
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
displayManager = {
|
|
|
|
lightdm.enable = true;
|
|
|
|
autoLogin = {
|
|
|
|
enable = true;
|
|
|
|
user = "alice";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
desktopManager.xfce.enable = true;
|
|
|
|
};
|
2020-11-22 10:17:08 +03:00
|
|
|
|
2020-08-26 15:58:37 +03:00
|
|
|
i18n = {
|
|
|
|
inputMethod = {
|
|
|
|
enabled = "fcitx";
|
|
|
|
fcitx.engines = [
|
|
|
|
pkgs.fcitx-engines.m17n
|
|
|
|
pkgs.fcitx-engines.table-extra
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2020-11-22 10:17:08 +03:00
|
|
|
testScript = { nodes, ... }:
|
|
|
|
let
|
2020-08-26 15:58:37 +03:00
|
|
|
user = nodes.machine.config.users.users.alice;
|
|
|
|
userName = user.name;
|
|
|
|
userHome = user.home;
|
|
|
|
xauth = "${userHome}/.Xauthority";
|
|
|
|
fcitx_confdir = "${userHome}/.config/fcitx";
|
2020-11-22 10:17:08 +03:00
|
|
|
in
|
2020-08-26 15:58:37 +03:00
|
|
|
''
|
|
|
|
# We need config files before login session
|
|
|
|
# So copy first thing
|
|
|
|
|
|
|
|
# Point and click would be expensive,
|
|
|
|
# So configure using files
|
|
|
|
machine.copy_from_host(
|
2020-08-26 19:57:26 +03:00
|
|
|
"${./profile}",
|
2020-08-26 15:58:37 +03:00
|
|
|
"${fcitx_confdir}/profile",
|
|
|
|
)
|
|
|
|
machine.copy_from_host(
|
2020-08-26 19:57:26 +03:00
|
|
|
"${./config}",
|
2020-08-26 15:58:37 +03:00
|
|
|
"${fcitx_confdir}/config",
|
|
|
|
)
|
|
|
|
|
|
|
|
start_all()
|
|
|
|
|
|
|
|
machine.wait_for_file("${xauth}")
|
|
|
|
machine.succeed("xauth merge ${xauth}")
|
|
|
|
|
|
|
|
machine.sleep(5)
|
|
|
|
|
|
|
|
machine.succeed("su - ${userName} -c 'alacritty&'")
|
|
|
|
machine.succeed("su - ${userName} -c 'fcitx&'")
|
|
|
|
machine.sleep(10)
|
|
|
|
|
|
|
|
### Type on terminal
|
|
|
|
machine.send_chars("echo ")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Start fcitx Unicode input
|
|
|
|
machine.send_key("ctrl-alt-shift-u")
|
|
|
|
machine.sleep(5)
|
|
|
|
machine.sleep(1)
|
2020-11-22 10:17:08 +03:00
|
|
|
|
2020-08-26 15:58:37 +03:00
|
|
|
### Search for smiling face
|
|
|
|
machine.send_chars("smil")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Navigate to the second one
|
|
|
|
machine.send_key("tab")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Choose it
|
|
|
|
machine.send_key("\n")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Start fcitx language input
|
|
|
|
machine.send_key("ctrl-spc")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Default zhengma, enter 一下
|
|
|
|
machine.send_chars("a2")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Switch to Harvard Kyoto
|
|
|
|
machine.send_key("alt-shift")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Enter क
|
|
|
|
machine.send_chars("ka ")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
machine.send_key("alt-shift")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Turn off Fcitx
|
|
|
|
machine.send_key("ctrl-spc")
|
|
|
|
machine.sleep(1)
|
|
|
|
|
|
|
|
### Redirect typed characters to a file
|
|
|
|
machine.send_chars(" > fcitx_test.out\n")
|
|
|
|
machine.sleep(1)
|
|
|
|
machine.screenshot("terminal_chars")
|
|
|
|
|
|
|
|
### Verify that file contents are as expected
|
|
|
|
file_content = machine.succeed("cat ${userHome}/fcitx_test.out")
|
|
|
|
assert file_content == "☺一下क\n"
|
|
|
|
''
|
|
|
|
;
|
|
|
|
}
|
|
|
|
)
|