summaryrefslogtreecommitdiffstats
path: root/nixos/tests
diff options
context:
space:
mode:
authorgithub-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>2021-11-20 12:01:21 +0000
committerGitHub <noreply@github.com>2021-11-20 12:01:21 +0000
commit2d03d542c7c0ffbf359b9cb199bdcb9bc038f099 (patch)
tree7e1ca8a76a52b55ca3fd6b886e2ad05ad7a08598 /nixos/tests
parent0373476c4a69cf435677709fbb94328bd7885e57 (diff)
parentc247bf87da0e2262339fe6d5c79b15cd77d76b7a (diff)
Merge master into staging-next
Diffstat (limited to 'nixos/tests')
-rw-r--r--nixos/tests/all-tests.nix2
-rw-r--r--nixos/tests/common/wayland-cage.nix14
-rw-r--r--nixos/tests/vscodium.nix92
3 files changed, 72 insertions, 36 deletions
diff --git a/nixos/tests/all-tests.nix b/nixos/tests/all-tests.nix
index cd13183ed0a3..b8219416dc42 100644
--- a/nixos/tests/all-tests.nix
+++ b/nixos/tests/all-tests.nix
@@ -489,7 +489,7 @@ in
victoriametrics = handleTest ./victoriametrics.nix {};
vikunja = handleTest ./vikunja.nix {};
virtualbox = handleTestOn ["x86_64-linux"] ./virtualbox.nix {};
- vscodium = handleTest ./vscodium.nix {};
+ vscodium = discoverTests (import ./vscodium.nix);
wasabibackend = handleTest ./wasabibackend.nix {};
wiki-js = handleTest ./wiki-js.nix {};
wireguard = handleTest ./wireguard {};
diff --git a/nixos/tests/common/wayland-cage.nix b/nixos/tests/common/wayland-cage.nix
new file mode 100644
index 000000000000..55aeb858d7a4
--- /dev/null
+++ b/nixos/tests/common/wayland-cage.nix
@@ -0,0 +1,14 @@
+{ ... }:
+
+{
+ imports = [ ./user-account.nix ];
+ services.cage = {
+ enable = true;
+ user = "alice";
+ };
+
+ virtualisation = {
+ memorySize = 1024;
+ qemu.options = [ "-vga virtio" ];
+ };
+}
diff --git a/nixos/tests/vscodium.nix b/nixos/tests/vscodium.nix
index 033090aa0e3d..43a0d61c856f 100644
--- a/nixos/tests/vscodium.nix
+++ b/nixos/tests/vscodium.nix
@@ -1,47 +1,69 @@
-import ./make-test-python.nix ({ pkgs, ...} :
+let
+ tests = {
+ wayland = { pkgs, ... }: {
+ imports = [ ./common/wayland-cage.nix ];
-{
- name = "vscodium";
- meta = with pkgs.lib.maintainers; {
- maintainers = [ turion ];
+ services.cage.program = ''
+ ${pkgs.vscodium}/bin/codium \
+ --enable-features=UseOzonePlatform \
+ --ozone-platform=wayland
+ '';
+
+ fonts.fonts = with pkgs; [ dejavu_fonts ];
+ };
+ xorg = { pkgs, ... }: {
+ imports = [ ./common/user-account.nix ./common/x11.nix ];
+
+ virtualisation.memorySize = 2047;
+ services.xserver.enable = true;
+ services.xserver.displayManager.sessionCommands = ''
+ ${pkgs.vscodium}/bin/codium
+ '';
+ test-support.displayManager.auto.user = "alice";
+ };
};
- machine = { ... }:
+ mkTest = name: machine:
+ import ./make-test-python.nix ({ pkgs, ... }: {
+ inherit name;
- {
- imports = [
- ./common/user-account.nix
- ./common/x11.nix
- ];
+ nodes = { "${name}" = machine; };
- virtualisation.memorySize = 2047;
- services.xserver.enable = true;
- test-support.displayManager.auto.user = "alice";
- environment.systemPackages = with pkgs; [
- vscodium
- ];
- };
+ meta = with pkgs.lib.maintainers; {
+ maintainers = [ synthetica turion ];
+ };
+ enableOCR = true;
+ testScript = ''
+ start_all()
+
+ machine.wait_for_unit('graphical.target')
+ machine.wait_until_succeeds('pgrep -x codium')
- enableOCR = true;
+ # Wait until vscodium is visible. "File" is in the menu bar.
+ machine.wait_for_text('File')
+ machine.screenshot('start_screen')
- testScript = { nodes, ... }: ''
- # Start up X
- start_all()
- machine.wait_for_x()
+ test_string = 'testfile'
- # Start VSCodium with a file that doesn't exist yet
- machine.fail("ls /home/alice/foo.txt")
- machine.succeed("su - alice -c 'codium foo.txt' >&2 &")
+ # Create a new file
+ machine.send_key('ctrl-n')
+ machine.wait_for_text('Untitled')
+ machine.screenshot('empty_editor')
- # Wait for the window to appear
- machine.wait_for_text("VSCodium")
+ # Type a string
+ machine.send_chars(test_string)
+ machine.wait_for_text(test_string)
+ machine.screenshot('editor')
- # Save file
- machine.send_key("ctrl-s")
+ # Save the file
+ machine.send_key('ctrl-s')
+ machine.wait_for_text('Save')
+ machine.screenshot('save_window')
+ machine.send_key('ret')
- # Wait until the file has been saved
- machine.wait_for_file("/home/alice/foo.txt")
+ # (the default filename is the first line of the file)
+ machine.wait_for_file(f'/home/alice/{test_string}')
+ '';
+ });
- machine.screenshot("VSCodium")
- '';
-})
+in builtins.mapAttrs (k: v: mkTest k v { }) tests