summary refs log blame commit diff
path: root/nixos/tests/fsck.nix
blob: 5453f3bc48b5974527232a9af0ef7942426832fe (plain) (tree)
1
2
3
4
5
6
7
                               




                                           
                                  








                            
                                           
 

                                                                     
 







                                                                                           

     
import ./make-test-python.nix {
  name = "fsck";

  machine = { lib, ... }: {
    virtualisation.emptyDiskImages = [ 1 ];

    virtualisation.fileSystems = {
      "/mnt" = {
        device = "/dev/vdb";
        fsType = "ext4";
        autoFormat = true;
      };
    };
  };

  testScript = ''
    machine.wait_for_unit("default.target")

    with subtest("root fs is fsckd"):
        machine.succeed("journalctl -b | grep 'fsck.ext4.*/dev/vda'")

    with subtest("mnt fs is fsckd"):
        machine.succeed("journalctl -b | grep 'fsck.*/dev/vdb.*clean'")
        machine.succeed(
            "grep 'Requires=systemd-fsck@dev-vdb.service' /run/systemd/generator/mnt.mount"
        )
        machine.succeed(
            "grep 'After=systemd-fsck@dev-vdb.service' /run/systemd/generator/mnt.mount"
        )
  '';
}