blob: 93801cb987027cf1fdb4c6b52efd3aab8bb9b05e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
|
import ./make-test-python.nix ({ lib, pkgs, ...} :
{
name = "qownnotes";
meta.maintainers = [ lib.maintainers.pbek ];
nodes.machine = { ... }:
{
imports = [
./common/user-account.nix
./common/x11.nix
];
test-support.displayManager.auto.user = "alice";
environment.systemPackages = [
pkgs.qownnotes
pkgs.xdotool
];
};
enableOCR = true;
testScript = { nodes, ... }: let
aliceDo = cmd: ''machine.succeed("su - alice -c '${cmd}' >&2 &");'';
in ''
with subtest("Ensure X starts"):
start_all()
machine.wait_for_x()
with subtest("Check QOwnNotes version on CLI"):
${aliceDo "qownnotes --version"}
machine.wait_for_console_text("QOwnNotes ${pkgs.qownnotes.version}")
with subtest("Ensure QOwnNotes starts"):
# start QOwnNotes window
${aliceDo "qownnotes"}
machine.wait_for_text("Welcome to QOwnNotes")
machine.screenshot("QOwnNotes-Welcome")
with subtest("Finish first-run wizard"):
# The wizard should show up now
machine.wait_for_text("Note folder")
machine.send_key("ret")
machine.wait_for_console_text("Note path '/home/alice/Notes' was now created.")
machine.wait_for_text("Panel layout")
machine.send_key("ret")
machine.wait_for_text("Nextcloud")
machine.send_key("ret")
machine.wait_for_text("App metric")
machine.send_key("ret")
# The main window should now show up
machine.wait_for_text("QOwnNotes - ${pkgs.qownnotes.version}")
machine.wait_for_open_port(22222)
machine.wait_for_console_text("QOwnNotes server listening on port 22222")
machine.screenshot("QOwnNotes-DemoNote")
with subtest("Create a new note"):
machine.send_key("ctrl-n")
machine.sleep(1)
machine.send_chars("This is a NixOS test!\n")
machine.wait_for_text("This is a NixOS test!")
machine.screenshot("QOwnNotes-NewNote")
'';
})
|