about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/atuin.nix
blob: 3164c83c683dc7fb2b3a335a8689a01ffdaf8187 (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
import ./make-test-python.nix ({ pkgs, lib, ... }:

let
  testPort = 8888;
  testUser = "testerman";
  testPass = "password";
  testEmail = "test.testerman@test.com";
in
{
  name = "atuin";
  meta.maintainers = with lib.maintainers; [ devusb ];

  nodes = {
    server =
      { ... }:
      {
        services.postgresql.enable = true;

        services.atuin = {
          enable = true;
          port = testPort;
          host = "0.0.0.0";
          openFirewall = true;
          openRegistration = true;
        };
      };

    client =
      { ... }:
      { };

  };

  testScript = with pkgs; ''
    start_all()

    # wait for atuin server startup
    server.wait_for_unit("atuin.service")
    server.wait_for_open_port(${toString testPort})

    # configure atuin client on server node
    server.execute("mkdir -p ~/.config/atuin")
    server.execute("echo 'sync_address = \"http://localhost:${toString testPort}\"' > ~/.config/atuin/config.toml")

    # register with atuin server on server node
    server.succeed("${atuin}/bin/atuin register -u ${testUser} -p ${testPass} -e ${testEmail}")
    _, key = server.execute("${atuin}/bin/atuin key")

    # store test record in atuin server and sync
    server.succeed("ATUIN_SESSION=$(${atuin}/bin/atuin uuid) ${atuin}/bin/atuin history start 'shazbot'")
    server.succeed("${atuin}/bin/atuin sync")

    # configure atuin client on client node
    client.execute("mkdir -p ~/.config/atuin")
    client.execute("echo 'sync_address = \"http://server:${toString testPort}\"' > ~/.config/atuin/config.toml")

    # log in to atuin server on client node
    client.succeed(f"${atuin}/bin/atuin login -u ${testUser} -p ${testPass} -k \"{key}\"")

    # pull records from atuin server
    client.succeed("${atuin}/bin/atuin sync -f")

    # check for test record
    client.succeed("ATUIN_SESSION=$(${atuin}/bin/atuin uuid) ${atuin}/bin/atuin history list | grep shazbot")
  '';
})