mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-07-02 22:10:08 +03:00

After final improvements to the official formatter implementation,
this commit now performs the first treewide reformat of Nix files using it.
This is part of the implementation of RFC 166.
Only "inactive" files are reformatted, meaning only files that
aren't being touched by any PR with activity in the past 2 months.
This is to avoid conflicts for PRs that might soon be merged.
Later we can do a full treewide reformat to get the rest,
which should not cause as many conflicts.
A CI check has already been running for some time to ensure that new and
already-formatted files are formatted, so the files being reformatted here
should also stay formatted.
This commit was automatically created and can be verified using
nix-build https://github.com/infinisil/treewide-nixpkgs-reformat-script/archive/a08b3a4d199c6124ac5b36a889d9099b4383463f.tar.gz \
--argstr baseRev 78e9caf153
result/bin/apply-formatting $NIXPKGS_PATH
104 lines
3.7 KiB
Nix
104 lines
3.7 KiB
Nix
import ./make-test-python.nix (
|
|
{ pkgs, ... }:
|
|
{
|
|
name = "enlightenment";
|
|
|
|
meta = with pkgs.lib.maintainers; {
|
|
maintainers = [ romildo ];
|
|
timeout = 600;
|
|
# OCR tests are flaky
|
|
broken = true;
|
|
};
|
|
|
|
nodes.machine =
|
|
{ ... }:
|
|
{
|
|
imports = [ ./common/user-account.nix ];
|
|
services.xserver.enable = true;
|
|
services.xserver.desktopManager.enlightenment.enable = true;
|
|
services.xserver.displayManager = {
|
|
lightdm.enable = true;
|
|
autoLogin = {
|
|
enable = true;
|
|
user = "alice";
|
|
};
|
|
};
|
|
environment.systemPackages = [ pkgs.xdotool ];
|
|
services.acpid.enable = true;
|
|
services.connman.enable = true;
|
|
services.connman.package = pkgs.connmanMinimal;
|
|
};
|
|
|
|
enableOCR = true;
|
|
|
|
testScript =
|
|
{ nodes, ... }:
|
|
let
|
|
user = nodes.machine.config.users.users.alice;
|
|
in
|
|
''
|
|
with subtest("Ensure x starts"):
|
|
machine.wait_for_x()
|
|
machine.wait_for_file("${user.home}/.Xauthority")
|
|
machine.succeed("xauth merge ${user.home}/.Xauthority")
|
|
|
|
with subtest("Check that logging in has given the user ownership of devices"):
|
|
machine.succeed("getfacl -p /dev/snd/timer | grep -q ${user.name}")
|
|
|
|
with subtest("First time wizard"):
|
|
machine.wait_for_text("Default") # Language
|
|
machine.screenshot("wizard1")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
machine.screenshot("wizard2")
|
|
|
|
machine.wait_for_text("English") # Keyboard (default)
|
|
machine.screenshot("wizard3")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("Standard") # Profile (default)
|
|
machine.screenshot("wizard4")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("Title") # Sizing (default)
|
|
machine.screenshot("wizard5")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("clicked") # Windows Focus
|
|
machine.succeed("xdotool mousemove 512 370 click 1") # Click
|
|
machine.screenshot("wizard6")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("Connman") # Network Management (default)
|
|
machine.screenshot("wizard7")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("BlusZ") # Bluetooth Management (default)
|
|
machine.screenshot("wizard8")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("OpenGL") # Compositing (default)
|
|
machine.screenshot("wizard9")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("update") # Updates
|
|
machine.succeed("xdotool mousemove 512 495 click 1") # Disable
|
|
machine.screenshot("wizard10")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("taskbar") # Taskbar
|
|
machine.succeed("xdotool mousemove 480 410 click 1") # Enable
|
|
machine.screenshot("wizard11")
|
|
machine.succeed("xdotool mousemove 512 740 click 1") # Next
|
|
|
|
machine.wait_for_text("Home") # The desktop
|
|
machine.screenshot("wizard12")
|
|
|
|
with subtest("Run Terminology"):
|
|
machine.succeed("terminology >&2 &")
|
|
machine.sleep(5)
|
|
machine.send_chars("ls --color -alF\n")
|
|
machine.sleep(2)
|
|
machine.screenshot("terminology")
|
|
'';
|
|
}
|
|
)
|