summary refs log tree commit diff
path: root/nixos/tests/mysql-backup.nix
blob: f5bcc460cba790a2325e4b93f8c83104ebf90894 (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
# Test whether mysqlBackup option works
import ./make-test.nix ({ pkgs, ... } : {
  name = "mysql-backup";
  meta = with pkgs.stdenv.lib.maintainers; {
    maintainers = [ rvl ];
  };

  nodes = {
    master = { config, pkgs, ... }: {
      services.mysql = {
        enable = true;
        initialDatabases = [ { name = "testdb"; schema = ./testdb.sql; } ];
        package = pkgs.mysql;
      };

      services.mysqlBackup = {
        enable = true;
        databases = [ "doesnotexist" "testdb" ];
      };
    };
  };

  testScript =
    '' startAll;

       # Need to have mysql started so that it can be populated with data.
       $master->waitForUnit("mysql.service");

       # Wait for testdb to be populated.
       $master->sleep(10);

       # Do a backup and wait for it to finish.
       $master->startJob("mysql-backup.service");
       $master->waitForJob("mysql-backup.service");

       # Check that data appears in backup
       $master->succeed("${pkgs.gzip}/bin/zcat /var/backup/mysql/testdb.gz | grep hello");

       # Check that a failed backup is logged
       $master->succeed("journalctl -u mysql-backup.service | grep 'fail.*doesnotexist' > /dev/null");
    '';
})