summary refs log tree commit diff
path: root/nixos/tests/restic.nix
blob: dad5bdfff27dc2a1016f5c573d12d91ac6530a7a (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
import ./make-test-python.nix (
  { pkgs, ... }:

    let
      password = "some_password";
      repository = "/tmp/restic-backup";
      rcloneRepository = "rclone:local:/tmp/restic-rclone-backup";

      passwordFile = "${pkgs.writeText "password" "correcthorsebatterystaple"}";
      initialize = true;
      paths = [ "/opt" ];
      pruneOpts = [
        "--keep-daily 2"
        "--keep-weekly 1"
        "--keep-monthly 1"
        "--keep-yearly 99"
      ];
    in
      {
        name = "restic";

        meta = with pkgs.stdenv.lib.maintainers; {
          maintainers = [ bbigras i077 ];
        };

        nodes = {
          server =
            { pkgs, ... }:
              {
                services.restic.backups = {
                  remotebackup = {
                    inherit repository passwordFile initialize paths pruneOpts;
                  };
                  rclonebackup = {
                    repository = rcloneRepository;
                    rcloneConfig = {
                      type = "local";
                      one_file_system = true;
                    };

                    # This gets overridden by rcloneConfig.type
                    rcloneConfigFile = pkgs.writeText "rclone.conf" ''
                      [local]
                      type=ftp
                    '';
                    inherit passwordFile initialize paths pruneOpts;
                  };
                };

                environment.sessionVariables.RCLONE_CONFIG_LOCAL_TYPE = "local";
              };
        };

        testScript = ''
          server.start()
          server.wait_for_unit("dbus.socket")
          server.fail(
              "${pkgs.restic}/bin/restic -r ${repository} -p ${passwordFile} snapshots",
              "${pkgs.restic}/bin/restic -r ${rcloneRepository} -p ${passwordFile} snapshots",
          )
          server.succeed(
              "mkdir -p /opt",
              "touch /opt/some_file",
              "mkdir -p /tmp/restic-rclone-backup",
              "timedatectl set-time '2016-12-13 13:45'",
              "systemctl start restic-backups-remotebackup.service",
              "systemctl start restic-backups-rclonebackup.service",
              '${pkgs.restic}/bin/restic -r ${repository} -p ${passwordFile} snapshots -c | grep -e "^1 snapshot"',
              '${pkgs.restic}/bin/restic -r ${rcloneRepository} -p ${passwordFile} snapshots -c | grep -e "^1 snapshot"',
              "timedatectl set-time '2017-12-13 13:45'",
              "systemctl start restic-backups-remotebackup.service",
              "systemctl start restic-backups-rclonebackup.service",
              "timedatectl set-time '2018-12-13 13:45'",
              "systemctl start restic-backups-remotebackup.service",
              "systemctl start restic-backups-rclonebackup.service",
              "timedatectl set-time '2018-12-14 13:45'",
              "systemctl start restic-backups-remotebackup.service",
              "systemctl start restic-backups-rclonebackup.service",
              "timedatectl set-time '2018-12-15 13:45'",
              "systemctl start restic-backups-remotebackup.service",
              "systemctl start restic-backups-rclonebackup.service",
              "timedatectl set-time '2018-12-16 13:45'",
              "systemctl start restic-backups-remotebackup.service",
              "systemctl start restic-backups-rclonebackup.service",
              '${pkgs.restic}/bin/restic -r ${repository} -p ${passwordFile} snapshots -c | grep -e "^4 snapshot"',
              '${pkgs.restic}/bin/restic -r ${rcloneRepository} -p ${passwordFile} snapshots -c | grep -e "^4 snapshot"',
          )
        '';
      }
)