nixpkgs/nixos/tests/phosh.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

89 lines
2.2 KiB
Nix
Raw Normal View History

2022-08-02 19:34:37 +00:00
import ./make-test-python.nix (
{ pkgs, ... }:
let
pin = "1234";
in
{
name = "phosh";
meta = with pkgs.lib.maintainers; {
maintainers = [ zhaofengli ];
2022-08-02 19:34:37 +00:00
};
2022-08-02 19:34:37 +00:00
nodes = {
phone =
{ config, pkgs, ... }:
{
users.users.nixos = {
isNormalUser = true;
password = pin;
};
services.xserver.desktopManager.phosh = {
enable = true;
2022-08-02 19:34:37 +00:00
user = "nixos";
group = "users";
2022-08-02 19:34:37 +00:00
phocConfig = {
outputs.Virtual-1 = {
scale = 2;
};
2022-08-02 19:34:37 +00:00
};
};
environment.systemPackages = [
pkgs.phosh-mobile-settings
2022-08-02 19:34:37 +00:00
];
2022-08-02 19:34:37 +00:00
systemd.services.phosh = {
environment = {
2022-08-02 19:34:37 +00:00
# Accelerated graphics fail on phoc 0.20 (wlroots 0.15)
"WLR_RENDERER" = "pixman";
};
};
2022-08-02 19:34:37 +00:00
virtualisation.resolution = {
x = 720;
y = 1440;
};
2022-08-02 19:34:37 +00:00
virtualisation.qemu.options = [ "-vga none -device virtio-gpu-pci,xres=720,yres=1440" ];
};
2022-08-02 19:34:37 +00:00
};
enableOCR = true;
testScript = ''
import time
start_all()
phone.wait_for_unit("phosh.service")
with subtest("Check that we can see the lock screen info page"):
# Saturday, January 1
phone.succeed("timedatectl set-time '2022-01-01 07:00'")
phone.wait_for_text("Saturday")
phone.screenshot("01lockinfo")
with subtest("Check that we can unlock the screen"):
phone.send_chars("${pin}", delay=0.2)
time.sleep(1)
phone.screenshot("02unlock")
phone.send_chars("\n")
phone.wait_for_text("All Apps")
phone.screenshot("03launcher")
with subtest("Check the on-screen keyboard shows"):
phone.send_chars("mobile setting", delay=0.2)
phone.wait_for_text("123") # A button on the OSK
phone.screenshot("04osk")
with subtest("Check mobile-phosh-settings starts"):
phone.send_chars("\n")
phone.wait_for_text("Tweak advanced mobile settings");
phone.screenshot("05settings")
2022-08-02 19:34:37 +00:00
'';
}
)