about summary refs log tree commit diff
path: root/nixos/tests/anki-sync-server.nix
blob: 7d08cc9cb878e64425c382601cf883865d298198 (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
71
import ./make-test-python.nix ({ pkgs, ... }:
  let
    ankiSyncTest = pkgs.writeScript "anki-sync-test.py" ''
      #!${pkgs.python3}/bin/python

      import sys

      # get site paths from anki itself
      from runpy import run_path
      run_path("${pkgs.anki}/bin/.anki-wrapped")
      import anki

      col = anki.collection.Collection('test_collection')
      endpoint = 'http://localhost:27701'

      # Sanity check: verify bad login fails
      try:
         col.sync_login('baduser', 'badpass', endpoint)
         print("bad user login worked?!")
         sys.exit(1)
      except anki.errors.SyncError:
          pass

      # test logging in to users
      col.sync_login('user', 'password', endpoint)
      col.sync_login('passfileuser', 'passfilepassword', endpoint)

      # Test actual sync. login apparently doesn't remember the endpoint...
      login = col.sync_login('user', 'password', endpoint)
      login.endpoint = endpoint
      sync = col.sync_collection(login, False)
      assert sync.required == sync.NO_CHANGES
      # TODO: create an archive with server content including a test card
      # and check we got it?
    '';
    testPasswordFile = pkgs.writeText "anki-password" "passfilepassword";
  in
  {
  name = "anki-sync-server";
  meta = with pkgs.lib.maintainers; {
    maintainers = [ martinetd ];
  };

  nodes.machine = { pkgs, ...}: {
    services.anki-sync-server = {
      enable = true;
      users = [
        { username = "user";
          password = "password";
        }
        { username = "passfileuser";
          passwordFile = testPasswordFile;
        }
      ];
    };
  };


  testScript =
    ''
      start_all()

      with subtest("Server starts successfully"):
          # service won't start without users
          machine.wait_for_unit("anki-sync-server.service")
          machine.wait_for_open_port(27701)

      with subtest("Can sync"):
          machine.succeed("${ankiSyncTest}")
    '';
})